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
vercel/next.js
f6c2d4913233109ea49256e587db9b7ce636a1a5
9375bc3d568b4add57cbaa99e6feed5dd51c6eb6
Turbopack: add task_id_details feature (#84970) ### What? Add a bunch of feature flags that help debugging cases where it is loosing invalidations.
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -24,6 +24,8 @@ trace_aggregation_update = []\n trace_find_and_schedule = []\n trace_task_completion = []\n trace_task_dirty = []\n+trace_task_output_dependencies = []\n+trace_task_details = []\n lmdb = [\"dep:lmdb-rkv\"]\n \n [depende...
2025-11-14T11:14:19
facebook/react
a4964987dc140526702e996223fe7ee293def8ac
92b62f500c3fca44a9dc9ead936ef3bf19481f02
Make enableOwnerStacks dynamic (#31661) following up on https://github.com/facebook/react/pull/31287, fixing tests --------- Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
[ { "path": "packages/react/index.fb.js", "patch": "@@ -7,6 +7,8 @@\n * @flow\n */\n \n+import {enableOwnerStacks} from 'shared/ReactFeatureFlags';\n+import {captureOwnerStack as captureOwnerStackImpl} from './src/ReactClient';\n export {\n __CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\...
2024-12-11T17:00:25
golang/go
0e64ee1286c092eca95b3ffcc5917d34f43d4c0f
6bcd97d9f4386528aa85eb3cc27da0ed902de870
encoding/json/v2: report EOF for top-level values in UnmarshalDecode The fully streaming UnmarshalJSONFrom method and UnmarshalFromFunc introduce an edge case where they can encounter EOF in the stream, where it should be reported upstream as EOF rather than ErrUnexpectedEOF or be wrapped within a SemanticError. This...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -792,6 +792,12 @@ func (d *decoderState) CheckNextValue(last bool) error {\n \treturn nil\n }\n \n+// AtEOF reports whether the decoder is at EOF.\n+func (d *decoderState) AtEOF() bool {\n+\t_, err := d.consumeWhitespace(d.prevEnd)\n+\treturn er...
2025-10-11T00:56:04
nodejs/node
8ccfcb5adc08befcf69969c2a9ccca83ec79ede1
e38ce27f3ca0a65f68a31cedd984cddb927d4002
lib: fix sourcemaps with ts module mocking PR-URL: https://github.com/nodejs/node/pull/58193 Fixes: https://github.com/nodejs/node/issues/58119 Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Chemi Atlow <ch...
[ { "path": "lib/internal/test_runner/coverage.js", "patch": "@@ -408,6 +408,10 @@ class TestCoverage {\n }\n const mappedStartOffset = this.entryToOffset(startEntry, mappedLines);\n const mappedEndOffset = this.entryToOffset(endEntry, mappedLines) + 1;\n+ if (mappedStar...
2025-05-08T15:14:22
electron/electron
58dc990f7a725537b447c22862956ac6d711291d
36e1a0bf001d72f725297f43827d255b08c2e9b7
chore: fix multi-version parsing in issue assignment (#44679) * chore: fix multi-version parsing * chore: tweak for review
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -57,34 +57,40 @@ jobs:\n \n const electronVersion = select('heading:has(> text[value=\"Electron Version\"]) + paragraph > text', tree)?.value.trim();\n if (electronVersion !== undefined) {\n- const major = semv...
2024-11-18T20:25:20
facebook/react
92b62f500c3fca44a9dc9ead936ef3bf19481f02
79ddf5b574db085104d917c24a964cbd5b824e09
Remove comment syntax from ReactNativeTypes (#31457) # Summary I'm working to get the main `react-native` package parsable by modern Flow tooling (both `flow-bundler`, `flow-api-translator`). This diff trivially removes some redundant Flow comment syntax in `ReactNativeTypes.js`, which fixes parsing under thes...
[ { "path": "packages/react-native-renderer/src/ReactNativeTypes.js", "patch": "@@ -132,9 +132,10 @@ declare const ensureNativeMethodsAreSynced: NativeMethods;\n (ensureNativeMethodsAreSynced: INativeMethods);\n \n export type HostInstance = NativeMethods;\n-/*::\n-export type HostComponent<Config: {...}> = c...
2024-12-11T16:55:11
vercel/next.js
6863a2bb913b53e0623852eee474f3db5795d8d3
4050a8a3f745ce10f60bfcf33530d163fa20f1bb
Add build-time validation to detect ambiguous app routes (#85834) ## What This PR introduces build-time validation to detect ambiguous app routes that were previously going undetected until runtime. ## Why Route conflicts could occur when different dynamic segment names (e.g., `[slug]` vs `[modalSlug]`) normalize t...
[ { "path": "packages/next/errors.json", "patch": "@@ -907,5 +907,22 @@\n \"906\": \"Bindings not loaded yet, but they are being loaded, did you forget to await?\",\n \"907\": \"bindings not loaded yet. Either call `loadBindings` to wait for them to be available or ensure that `installBindings` has alrea...
2025-11-14T05:28:23
electron/electron
36e1a0bf001d72f725297f43827d255b08c2e9b7
d320840a54ec5bce9a066dad95c25ae9eb3e2780
fix: utility process exit code for graceful termination (#44698)
[ { "path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch", "patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process...
2024-11-18T14:57:06
nodejs/node
5f252a45bc4db17b1ba41a747a2dc1a63ed7dbae
0050addb1fe6c0bec13c7b2ff7c5dfe8dbea3244
test: skip test-buffer-tostring-rangeerror when low on memory This has shown up as RangeError: Array buffer allocation failed and it should be totally fine to skip this test in case the memory is low. PR-URL: https://github.com/nodejs/node/pull/58142 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaë...
[ { "path": "test/parallel/test-buffer-tostring-rangeerror.js", "patch": "@@ -1,10 +1,15 @@\n 'use strict';\n-require('../common');\n+\n+const common = require('../common');\n \n // This test ensures that Node.js throws an Error when trying to convert a\n // large buffer into a string.\n // Regression test fo...
2025-05-07T16:28:20
golang/go
6bcd97d9f4386528aa85eb3cc27da0ed902de870
1cd71689f2ed8f07031a0cc58fc3586ca501839f
all: replace calls to errors.As with errors.AsType This change replaces most occurrences (in code as well as in comments) of errors.As with errors.AsType. It leaves the errors package and vendored code untouched. Change-Id: I3bde73f318a0b408bdb8f5a251494af15a13118a GitHub-Last-Rev: 8aaaa36a5a12d2a6a90c6d51680464e1a31...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -2468,8 +2468,8 @@ func TestInstantiateErrors(t *testing.T) {\n \t\t\tt.Fatalf(\"Instantiate(%v, %v) returned nil error, want non-nil\", T, test.targs)\n \t\t}\n \n-\t\tvar argErr *ArgumentError\n-\t\tif !errors.As(err, &argErr) {\n+\t\ta...
2025-10-01T20:08:18
rust-lang/rust
d4503b017e701a61fa985d7b8dff45fb285b5295
bea3803300c5d3d4b55d26385fd8612a51afc9bb
Overhaul `ensure_ok`. `ensure_ok` provides a special, more efficient way of calling a query when its return value isn't needed. But there is a complication: if the query is marked with the `return_result_from_ensure_ok` modifier, then it will return `Result<(), ErrorGuaranteed`. This is clunky and feels tacked on. It'...
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -294,7 +294,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n \n // Avoid bogus move errors because of an incoherent `Copy` impl.\n self.infcx.type_implements_trait(copy_def_id, [ty], self.infcx.para...
2026-03-03T20:22:50
facebook/react
79ddf5b574db085104d917c24a964cbd5b824e09
7c4a7c9ddf2f1c8e223565af1256ea201ec0f303
[Flight] Track Timing Information (#31716) Stacked on #31715. This adds profiling data for Server Components to the RSC stream (but doesn't yet use it for anything). This is on behind `enableProfilerTimer` which is on for Dev and Profiling builds. However, for now there's no Profiling build of Flight so in pract...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -48,6 +48,8 @@ import {\n enableFlightReadableStream,\n enableOwnerStacks,\n enableServerComponentLogs,\n+ enableProfilerTimer,\n+ enableComponentPerformanceTrack,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -286,6 +...
2024-12-11T01:46:19
electron/electron
dd50afa8c2d82f4a448bd66675fcde2d64642031
15ff999bdcda7f93d04991b131d1ea54a634498f
fix: `utilityProcess` pid should be `undefined` after exit (#44677) fix: utilityProcess pid should be undefined after exit
[ { "path": "docs/api/utility-process.md", "patch": "@@ -92,6 +92,8 @@ the child process exits, then the value is `undefined` after the `exit` event is\n ```js\n const child = utilityProcess.fork(path.join(__dirname, 'test.js'))\n \n+console.log(child.pid) // undefined\n+\n child.on('spawn', () => {\n conso...
2024-11-18T09:06:27
nodejs/node
4bfcad1ac5da14d4d47d04ae6121455d6c8a27a1
d93cff5af33c54ef552e7dc5407bbd58aeb49172
Revert "watch: fix watch args not being properly filtered" This reverts commit 4acb85403950320773352ab127bee9fc85818153. PR-URL: https://github.com/nodejs/node/pull/58190 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Edy Silva <edigleyssonsi...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -43,26 +43,11 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch=')) {\n- continue;\n- }\n- if (arg === '--watch') ...
2025-05-06T11:39:24
golang/go
1cd71689f2ed8f07031a0cc58fc3586ca501839f
8aa1efa223d7bd39faaabdfbf85882ed3942a6f4
crypto/x509: rework fix for CVE-2025-58187 In CL 709854 we enabled strict validation for a number of properties of domain names (and their constraints). This caused significant breakage, since we didn't previously disallow the creation of certificates which contained these malformed domains. Rollback a number of the ...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1456,7 +1456,63 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\texpectedError: \"incompatible key usage\",\n \t},\n \n-\t// #77: if several EKUs are requested, satisfying any of them is sufficient.\n+\t// An invalid DNS SAN shoul...
2025-10-09T20:35:24
vercel/next.js
35d6fdf074445854c0ac883cbd089eae2c158375
4e5915d4ed1624feb9836ade449be79d24812d48
fix(nodejs-middleware): await for body cloning to be properly finalized (#85418) Fixes https://github.com/vercel/next.js/issues/85416. This is a follow up to https://github.com/vercel/next.js/pull/77662, where the Node.js middleware was fixed to also support reading (and duplicating) the body's request before being p...
[ { "path": "packages/next/src/server/next-server.ts", "patch": "@@ -1750,7 +1750,7 @@ export default class NextNodeServer extends BaseServer<\n })\n } finally {\n if (hasRequestBody) {\n- requestData.body.finalize()\n+ await requestData.body.finalize()\n }\n ...
2025-11-14T02:11:21
rust-lang/rust
1ecc9d7e04e9bb6a3bd16384d4f5e4a098d37e24
13d91b7ccecdd98449b7cc9b0572a59de1eeb0bd
Fix ICE in `match_same_arms` The wrong `TypeckResults` was used in the fallback equality function passed by the `match_same_arms` and `filter_map` lints. Previously, those fallback functions had no way of using the proper `TypeckResults`. Those (one per expression being compared) are now passed to the registered fallb...
[ { "path": "clippy_lints/src/matches/match_same_arms.rs", "patch": "@@ -12,7 +12,7 @@ use rustc_hir::def_id::DefId;\n use rustc_hir::{Arm, Expr, HirId, HirIdMap, HirIdMapEntry, HirIdSet, Pat, PatExpr, PatExprKind, PatKind, RangeEnd};\n use rustc_lint::builtin::NON_EXHAUSTIVE_OMITTED_PATTERNS;\n use rustc_lin...
2026-03-07T19:01:38
facebook/react
16367ceb02faf5673e0380dec4c4928dfa37f17b
7cb356e8622e6413671bc22ea273ea39b0b265e4
[compiler] Fix dropped ref with spread props in InlineJsxTransform (#31726) When supporting ref as prop in https://github.com/facebook/react/pull/31558, I missed fixing the optimization to pass a spread-props-only props object in without an additional object copy. In the case that we have only a ref along with a s...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InlineJsxTransform.ts", "patch": "@@ -546,16 +546,14 @@ function createPropsProperties(\n let refProperty: ObjectProperty | undefined;\n let keyProperty: ObjectProperty | undefined;\n const props: Array<ObjectProperty | SpreadPa...
2024-12-10T21:11:17
nodejs/node
d93cff5af33c54ef552e7dc5407bbd58aeb49172
a0d458e448fb3e356fd7f657e9929b1d879860e3
Revert "test: fix watch tests not including completion messages" This reverts commit 6102159fa10eb153ed5de6a2f945f120be32cebd. PR-URL: https://github.com/nodejs/node/pull/58190 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Edy Silva <edigley...
[ { "path": "test/sequential/test-watch-mode.mjs", "patch": "@@ -810,14 +810,14 @@ process.on('message', (message) => {\n assert.strictEqual(stderr, '');\n assert.deepStrictEqual(stdout, [\n 'no --watch args present',\n- `Completed running ${inspect(file)}. Waiting for file changes before r...
2025-05-06T11:39:17
electron/electron
4fb5aab2ef1e928079dbc340f942afd54920a8cc
27fe6cc97f4d40c3a74c58ed1de41c9766437192
fix: revert required portal version for file chooser dialogs (#44426) * feat: add support for configuring xdg portal version at runtime * doc: update command-line-switches.md * doc: update command-line-switches.md Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> * doc: required portal version fo...
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -241,6 +241,13 @@ Force using discrete GPU when there are multiple GPUs available.\n \n Force using integrated GPU when there are multiple GPUs available.\n \n+### --xdg-portal-required-version=`version`\n+\n+Sets the minimum required version of XD...
2024-11-15T14:31:33
golang/go
8aa1efa223d7bd39faaabdfbf85882ed3942a6f4
b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956
cmd/link: in TestFallocate, only check number of blocks on Darwin The number-of-blocks check was introduced when fixing a Darwin- specific bug. On Darwin, the file allocation syscall is a bit tricky. On Linux and BSDs, it is more straightforward and unlikely to go wrong. The test itself, on the other hand, is less re...
[ { "path": "src/cmd/link/internal/ld/fallocate_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"os\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"syscall\"\n \t\"testing\"\n )\n@@ -53,12 +54,24 @@ func TestFallocate(t *testing.T) {\n \t\tif got := stat.Size(); got != sz {\n \t\t\tt.Errorf(\...
2025-10-11T14:36:49
vercel/next.js
9dc96c89e5e828ba97a4ee13827c3fddab59f7db
ef051ff3dc6824f4b784c9dd63148a683b2c7583
Remove redundant example code for cacheLife docs (#86043) Remove redundant example code for overriding cache profiles. ## For Contributors ### Improving Documentation - Run `pnpm prettier-fix` to fix formatting issues before opening the PR. ✅ (no changes) - Read the Docs Contribution Guide to ensure your contributi...
[ { "path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx", "patch": "@@ -191,6 +191,7 @@ The example below shows how to override the default `\"days\"` cache profile:\n const nextConfig = {\n cacheComponents: true,\n cacheLife: {\n+ // Override the 'days' profile\n days: {\n stale...
2025-11-13T20:39:08
facebook/react
7cb356e8622e6413671bc22ea273ea39b0b265e4
4a8fc0f92e0f75257962522b51a938bf4dfda77a
[Flight] rename `prerender` to `unstable_prerender` and include in stable channel (#31724) We added an experimental `prerender` API to flight. This change exposes this API in stable channels prefixed as `unstable_prerender`. We have high confidence this API should exist but because we have not yet settled on how to...
[ { "path": "fixtures/flight/server/region.js", "patch": "@@ -106,7 +106,7 @@ async function renderApp(res, returnValue, formState) {\n }\n \n async function prerenderApp(res, returnValue, formState) {\n- const {prerenderToNodeStream} = await import(\n+ const {unstable_prerenderToNodeStream: prerenderToNode...
2024-12-10T19:51:39
electron/electron
27fe6cc97f4d40c3a74c58ed1de41c9766437192
b1957f52e3539d13bebff745ace7ee42f06696b2
fix: `WebContentsView` removal should compare directly (#44656) * fix: WebContentsView removal should compare directly * fixup view comparision * chore: use erase_if * Apply review suggestions --------- Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -124,15 +124,6 @@ struct Converter<views::FlexAllocationOrder> {\n }\n };\n \n-template <>\n-struct Converter<electron::api::View> {\n- static bool FromV8(v8::Isolate* isolate,\n- v8::Local<v8::Value> val,\n- ...
2024-11-15T03:11:20
vercel/next.js
ef051ff3dc6824f4b784c9dd63148a683b2c7583
3f239eea13dec92e55ab65ef641cb52e5abc111c
Update cookies.mdx (#86094) delete is reserved word <!-- 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 Contributor...
[ { "path": "docs/01-app/03-api-reference/04-functions/cookies.mdx", "patch": "@@ -229,8 +229,9 @@ Using the `delete()` method:\n \n import { cookies } from 'next/headers'\n \n-export async function delete(data) {\n- (await cookies()).delete('name')\n+export async function deleteCookie(data) {\n+ const cook...
2025-11-13T20:20:14
golang/go
b497a29d25b0f6f29bedaa92ac1d40a1ee5c0956
48bb7a61147c397d0f45c10bc21ba12fa9cec0ad
encoding/json: fix regression in quoted numbers under goexperiment.jsonv2 The legacy parsing of quoted numbers in v1 was according to the Go grammar for a number, rather than the JSON grammar for a number. The former is a superset of the latter. This is a historical mistake, but usages exist that depend on it. We alr...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -1237,6 +1237,62 @@ var unmarshalTests = []struct {\n \t\tout: (chan int)(nil),\n \t\terr: &UnmarshalTypeError{Value: \"number\", Type: reflect.TypeFor[chan int](), Offset: 1},\n \t},\n+\n+\t// #75619\n+\t{\n+\t\tCaseName: Name(\"QuotedInt...
2025-10-06T19:56:29
rust-lang/rust
c0cb69904ed34d43daa6e007849fc24e98b053cb
80282b130679a654eaa22f028a908c51be53d436
.mailmap: fix broken line with multiple emails Split binarycat's entry into multiple lines, one for each extra email
[ { "path": ".mailmap", "patch": "@@ -83,7 +83,8 @@ Ben Sago <ogham@users.noreply.github.com> <ogham@bsago.me>\n Ben Striegel <ben.striegel@gmail.com>\n Benjamin Jackman <ben@jackman.biz>\n Benoît Cortier <benoit.cortier@fried-world.eu>\n-binarycat <binarycat@envs.net> lolbinarycat <dogedoge61+github@gmail.co...
2026-03-07T00:58:19
nodejs/node
e272637d5e72b509c0f682c756c7edd92cdf1f7d
a6bc06fa06bad1e27a9c9e2c9a03fc1255f1375d
2025-05-06, Version 24.0.0 (Current) Semver-Major Commits: assert,util: * (SEMVER-MAJOR) Revert "assert,util: revert recursive breaking change (Ruben Bridgewater) https://github.com/nodejs/node/pull/57622 buffer: * (SEMVER-MAJOR) move SlowBuffer to EOL (James M Snell) https://github.com/nodejs/node/pull/58008 *...
[ { "path": "CHANGELOG.md", "patch": "@@ -2,6 +2,7 @@\n \n Select a Node.js version below to view the changelog history:\n \n+* [Node.js 24](doc/changelogs/CHANGELOG_V24.md) **Current**\n * [Node.js 23](doc/changelogs/CHANGELOG_V23.md) **Current**\n * [Node.js 22](doc/changelogs/CHANGELOG_V22.md) **Long Term ...
2025-03-24T19:29:01
facebook/react
4a8fc0f92e0f75257962522b51a938bf4dfda77a
3b597c0576977773910c77e075cc6d6308decb04
[Flight] Don't call onError/onPostpone when halting and unify error branches (#31715) We shouldn't call onError/onPostpone when we halt a stream because that node didn't error yet. Its digest would also get lost. We also have a lot of error branches now for thenables and streams. This unifies them under erroredTa...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -2870,7 +2870,7 @@ describe('ReactFlightDOM', () => {\n resolveGreeting();\n const {prelude} = await pendingResult;\n \n- expect(errors).toEqual(['boom']);\n+ expect(errors).toEqual([]);\n \n c...
2024-12-10T16:59:50
vercel/next.js
3f239eea13dec92e55ab65ef641cb52e5abc111c
5e7a207bac65f6dcc5eb4ddb79968a992ca97350
[devtool] highlight all link in error message (#86084)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/hot-linked-text/index.tsx", "patch": "@@ -5,7 +5,7 @@ const linkRegex = /https?:\\/\\/[^\\s/$.?#].[^\\s)'\"]*/i\n \n export const HotlinkedText: React.FC<{\n text: string\n- matcher?: (text: string) => boolean\n+ matcher?: (text: string) ...
2025-11-13T19:27:27
golang/go
48bb7a61147c397d0f45c10bc21ba12fa9cec0ad
e8a53538b473f1a7a92602675eda2d34f3887611
cmd/compile: repair bisection behavior for float-to-unsigned conversion My stab at a bisect-reproducer failed, but I verified that it fixed the problem described in the issue. Updates #75834 Change-Id: I9e0dfacd2bbd22cbc557e144920ee3417a48088c Reviewed-on: https://go-review.googlesource.com/c/go/+/710997 LUCI-TryBot...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -2865,7 +2865,19 @@ func (s *state) conv(n ir.Node, v *ssa.Value, ft, tt *types.Type) *ssa.Value {\n \t}\n \n \tif ft.IsFloat() || tt.IsFloat() {\n-\t\tconv, ok := fpConvOpToSSA[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]\n+\t\tcft, ct...
2025-10-10T21:08:20
nodejs/node
6102159fa10eb153ed5de6a2f945f120be32cebd
5f48fddd3a61502efc40bb218211ed71e17792e5
test: fix watch tests not including completion messages PR-URL: https://github.com/nodejs/node/pull/58183 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "test/sequential/test-watch-mode.mjs", "patch": "@@ -810,14 +810,14 @@ process.on('message', (message) => {\n assert.strictEqual(stderr, '');\n assert.deepStrictEqual(stdout, [\n 'no --watch args present',\n- `Completed running ${inspect(file)}`,\n+ `Completed running ${ins...
2025-05-06T02:59:41
electron/electron
8a67e77f03155c884f763f596c76a0681af0f70a
41b5d7e3128ee8fcaf772e1ab5ad7fce677c8232
build: fix python warnings "SyntaxWarning: invalid escape sequence '\w'" (#44650) * fix: SyntaxWarning: invalid escape sequence '\w' * chore: remove some unused imports * fix: E711 warning 'Comparison to should be '
[ { "path": "build/generate_node_defines.py", "patch": "@@ -2,7 +2,7 @@\n import re\n import sys\n \n-DEFINE_EXTRACT_REGEX = re.compile('^ *# *define (\\w*)', re.MULTILINE)\n+DEFINE_EXTRACT_REGEX = re.compile(r'^ *# *define (\\w*)', re.MULTILINE)\n \n def main(out_dir, headers):\n defines = []", "additi...
2024-11-14T11:27:20
facebook/react
372ec00c0384cd2089651154ea7c67693ee3f2a5
3d2ab01a559943b3f041f841dc0d796d92be0a87
Update ReactDebugInfo types to declare timing info separately (#31714) This clarifies a few things by ensuring that there is always at least one required field. This can be used to refine the object to one of the specific types. However, it's probably just a matter of time until we make this tagged unions instead. ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -11,7 +11,9 @@ import type {\n Thenable,\n ReactDebugInfo,\n ReactComponentInfo,\n+ ReactEnvironmentInfo,\n ReactAsyncInfo,\n+ ReactTimeInfo,\n ReactStackTrace,\n ReactCallSite,\n } from 'shared/ReactTypes';\n@@ -2460,7 +...
2024-12-10T00:47:43
golang/go
e8a53538b473f1a7a92602675eda2d34f3887611
e3be2d1b2b68d960398a343805f77052d5decb22
runtime: fail TestGoroutineLeakProfile on data race Some of the programs in testdata/testgoroutineleakprofile have data races because they were taken from a corpus that showcases general Go concurrency bugs, not just leaked goroutines. This causes some flakiness as tests might fail due to, for example, a concurrent m...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,7 +487,7 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic`)\n+\tfail...
2025-10-09T20:58:34
electron/electron
41b5d7e3128ee8fcaf772e1ab5ad7fce677c8232
946ab5f1d76a30c7e2db0504a66eb4bf0ed5c323
refactor: unfilter unresponsive events (#44629) * feat: internal -unresponsive event * Reland "refactor: JSify BrowserWindow unresponsive handling" This reverts commit ef7ae78ed4ba019bffdcc8fd7319d39602b59ec4. * fix: emit unresponsive if close not prevented --------- Co-authored-by: Keeley Hammond <vert...
[ { "path": "lib/browser/api/browser-window.ts", "patch": "@@ -37,6 +37,33 @@ 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-11-14T01:59:13
nodejs/node
f275121b72916d0c0a8b017b7677ddd6e2573e46
4acb85403950320773352ab127bee9fc85818153
doc: fix misaligned options in vm.compileFunction() Current alignment mislead doc reader into thinking `importModuleDynamically` is a separate positional param right next to `options`, which is incorrect and need to be fixed. This misalignment is introduced in a PR merged in Feb 2024. I belive this doc fix applies t...
[ { "path": "doc/api/vm.md", "patch": "@@ -1044,13 +1044,13 @@ changes:\n * `contextExtensions` {Object\\[]} An array containing a collection of context\n extensions (objects wrapping the current scope) to be applied while\n compiling. **Default:** `[]`.\n-* `importModuleDynamically`\n- {Function|v...
2025-05-05T18:50:50
facebook/react
226b85926a70a9b258583c234bd4e143e6bb42e4
7283a213dbbc31029e65005276f12202558558fc
[compiler] Support for context variable loop iterators Summary: Fixing a compiler todo ghstack-source-id: c4d9226b1745d003dc9945df1ac5c5a01712f909 Pull Request resolved: https://github.com/facebook/react/pull/31709
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -1354,20 +1354,6 @@ function codegenForInit(\n init: ReactiveValue,\n ): t.Expression | t.VariableDeclaration | null {\n if (init.kind === 'SequenceExpression') {\n- for (const instr ...
2024-12-09T18:15:20
vercel/next.js
291aefd98555879833ece638b8643cb42f195b7d
1f0322f23c5e11372e3ede029197e1635ff8cdc9
Fix 404 responses for interception routes with missing children slots (#85779) ### What? Introduces a null-rendering default component for interception routes to prevent 404 responses when children slots are missing. ### Why? When rendering interception routes like `(.)[id]`, there's a segment mismatch where the in...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -1226,17 +1226,19 @@ async fn directory_tree_to_loader_tree_internal(\n \n if let Some(subtree) = subtree {\n if let Some(key) = parallel_route_key {\n- let is_inside_catchall = app_page.is_catchall();\n-\n ...
2025-11-13T01:57:32
rust-lang/rust
901cb4cf4006888dc69d95666886960c31e2c75a
b9123ccd6fec1ebc09fce90d3f909998b1e6845d
fix: implement ir_print debug for next-solver predicate types seven IrPrint::print_debug implementations in the next-solver were placeholder stubs that returned "TODO: <typename>" instead of meaningful output. these are called via the Display impl (and Debug for PatternKind) of these types, so any solver trace log con...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/ir_print.rs", "patch": "@@ -1,7 +1,5 @@\n //! Things related to IR printing in the next-trait-solver.\n \n-use std::any::type_name_of_val;\n-\n use rustc_type_ir::{self as ty, ir_print::IrPrint};\n \n use super::SolverDefId;\n@@ -82,7 +80,10 @...
2026-03-07T16:09:48
golang/go
e3be2d1b2b68d960398a343805f77052d5decb22
aced4c79a2b2c60e464410cec1e5378d1011fa18
net/url: disallow raw IPv6 addresses in host RFC 3986 requires square brackets around IPv6 addresses. Parse's acceptance of raw IPv6 addresses is non compliant, and complicates splitting out a port. Fixes #31024 Fixes #75223 Change-Id: I477dc420a7441cb33156627dbd5e46d88c677f1e Reviewed-on: https://go-review.googleso...
[ { "path": "src/net/url/url.go", "patch": "@@ -698,7 +698,9 @@ func parseHost(host string) (string, error) {\n \t\t\treturn \"\", errors.New(\"invalid IP-literal\")\n \t\t}\n \t\treturn \"[\" + unescapedHostname + \"]\" + unescapedColonPort, nil\n-\t} else if i := strings.LastIndex(host, \":\"); i != -1 {\n+...
2025-10-09T00:56:09
nodejs/node
4acb85403950320773352ab127bee9fc85818153
c46b2b9da30628585900b53052aec509cb59036e
watch: fix watch args not being properly filtered currently when --watch is used, the argv arguments that the target script receives are filtered so that they don't include watch related arguments, however the current filtering logic is incorrect and it causes some watch values to incorrectly pass the filtering, the c...
[ { "path": "lib/internal/main/watch_mode.js", "patch": "@@ -43,11 +43,26 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch')) {\n- i++;\n- const nextArg = process.execArgv[...
2025-05-05T15:08:04
facebook/react
7283a213dbbc31029e65005276f12202558558fc
65ba3e87e49f7ea1bac04e1ed938debdbafcf30a
Fix headings in React 19 CHANGELOG (#31683) Co-authored-by: eps1lon <sebastian.silbermann@vercel.com>
[ { "path": "CHANGELOG.md", "patch": "@@ -1,12 +1,12 @@\n-## 19.0.0 (December 5, 2024\\)\n+## 19.0.0 (December 5, 2024)\n \n Below is a list of all new features, APIs, deprecations, and breaking changes. Read [React 19 release post](https://react.dev/blog/2024/04/25/react-19) and [React 19 upgrade guide](http...
2024-12-06T15:55:53
electron/electron
0fd16dc9e2a919da2a65cf890865cf4779a57404
a120d87570e4045cec6407c82222bfaa1d476f1b
fix: WCO buttons hidden on Linux in fullscreen (#44621) Closes https://github.com/electron/electron/issues/44569. Fixes an issue where the WCO buttons were hidden on Linux in fullscreen mode but not on Windows or macOS. The Windows behavior is the expected one, so this commit makes the Linux behavior consistent.
[ { "path": "shell/browser/ui/views/opaque_frame_view.cc", "patch": "@@ -255,14 +255,17 @@ void OpaqueFrameView::LayoutWindowControls() {\n buttons_not_shown.push_back(views::FrameButton::kMinimize);\n buttons_not_shown.push_back(views::FrameButton::kClose);\n \n- for (const auto& button : leading_button...
2024-11-13T14:11:58
vercel/next.js
1f0322f23c5e11372e3ede029197e1635ff8cdc9
98b3c4679aae7a4c072b3beadeb3c7e4cfdeef04
perf: revert to use the light safe stringify for is-error (#86053) `is-error` is a helper that being used accorss client and server now, in #84909 we switched the underlying safe stringify error implementation to the precompiled dependency `safe-stable-stringify`. But it increased the client bundle size a bit. The ch...
[ { "path": "packages/next/src/lib/is-error.ts", "patch": "@@ -1,5 +1,4 @@\n import { isPlainObject } from '../shared/lib/is-plain-object'\n-import safeStringify from 'next/dist/compiled/safe-stable-stringify'\n \n // We allow some additional attached properties for Next.js errors\n export interface NextError...
2025-11-13T01:14:46
nodejs/node
c46b2b9da30628585900b53052aec509cb59036e
f75a1265a8eef5c2058be1fde6eefa4ca0b5990f
tools: exclude deps/v8/tools from CodeQL scans This will remove three of the four "A parse error occurred" issues during JavaScript CodeQL scans. (The fourth occurrence is in our code base, although it might be a false positive. Someone can figure that one out sooner or later, but we certainly can bypass scanning V8 t...
[ { "path": ".github/codeql-config.yml", "patch": "@@ -3,3 +3,4 @@ name: CodeQL config\n paths-ignore:\n - test\n - deps/v8/test\n+ - deps/v8/tools", "additions": 1, "deletions": 0, "language": "YAML" } ]
2025-05-05T05:11:53
golang/go
aced4c79a2b2c60e464410cec1e5378d1011fa18
584a89fe7455470b09643b30bdc3cc55bb75a552
net/http: strip request body headers on POST to GET redirects According to WHATWG Fetch, when the body is dropped in a redirect, headers that describe the body should also be dropped. https://fetch.spec.whatwg.org/#http-redirect-fetch Fixes #57273 Change-Id: I84598f69608e95c1b556ea0ce5953ed43bf2d824 Reviewed-on: htt...
[ { "path": "src/net/http/client.go", "patch": "@@ -690,8 +690,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tstripSensitiveHeaders = true\n \t\t\t\t}\n \t\t\t}\n-\t\t\tcopyHeaders(req, stripSensitiveHeaders)\n-\n+\t\t\tcopyHeaders(req, stripSensitiveHeaders, !includeBod...
2025-10-09T01:26:02
facebook/react
65ba3e87e49f7ea1bac04e1ed938debdbafcf30a
c56c6234328a29930487295afe61597db48f058c
docs: use diff codeblock for `useReducer` typings change (#31685) ## Summary This PR updates the 19.0.0 changelog to use diff-styled code blocks for illustrating changes to `useReducer` typings. Also removes the incorrect square brackets in the second diff, it should be `Action` instead of `[Action]`. ## Ho...
[ { "path": "CHANGELOG.md", "patch": "@@ -97,11 +97,15 @@ The most common changes can be codemodded with `npx types-react-codemod@latest p\n * JSX namespace in TypeScript: The global `JSX` namespace is removed to improve interoperability with other libraries using JSX. Instead, the JSX namespace is available ...
2024-12-06T15:12:38
electron/electron
a120d87570e4045cec6407c82222bfaa1d476f1b
d380cda14a76f5010700b113b9de0bd58bf89b24
fix: add theme data source for devtools. (#44114) * fix: add theme data source for devtools. * chore: add ut. * chore: remove recording histograms * fix: add theme data source for devtools. * chore: separate files * chore: separate files * chore: remove pragma once * chore: fix lint issue.
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -182,6 +182,7 @@ static_library(\"chrome\") {\n public_deps = [\n \"//chrome/browser:dev_ui_browser_resources\",\n \"//chrome/browser/resources/accessibility:resources\",\n+ \"//chrome/browser/ui/color:color_headers\",\n \"//chrome/browser/ui/...
2024-11-13T12:23:37
vercel/next.js
56fa9cd452be4daf63fcd5f778b0b8553b471dae
26b95c3f0fa7226b3dd77a35b63fa0a4bf4f60d6
Fix typo in documentation (#86054) <!-- 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 ### Improving D...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/redirects.mdx", "patch": "@@ -158,7 +158,7 @@ module.exports = {\n permanent: false,\n destination: '/another-page',\n },\n- // if the header `x-dont-redirect` is present,\n+ // if the header `x-do-not-redire...
2025-11-12T20:31:13
rust-lang/rust
c4a8355c968464922175bdf3da00a01d93e2ddb1
3c00f7da5b016c0563805b6196c7fe65be4ae476
Change TODO in compiler to FIXME
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -175,7 +175,7 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort\n \n # bugs in the test suite\n # ======================\n-rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue\n+rm tests/ui/process/nofile-...
2026-02-27T03:48:05
facebook/react
c56c6234328a29930487295afe61597db48f058c
d27fa084f66b2e47933e7760a1e78c6d101dda5b
docs: fix capitalization of TypeScript (#31682)
[ { "path": "CHANGELOG.md", "patch": "@@ -77,7 +77,7 @@ React 19 brings in a number of breaking changes, including the removals of long-\n * Diffs for hydration errors: In the case of a mismatch, React 19 logs a single error with a diff of the mismatched content. \n * Compatibility with third-party scripts a...
2024-12-05T23:04:11
nodejs/node
5ac126bbe655ae390b17e279dad7b4ed0440006f
4db978b111bf8164e000ea54ac744e1bf056b59a
doc: fix typo in benchmark script path PR-URL: https://github.com/nodejs/node/pull/58129 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon...
[ { "path": "doc/contributing/writing-and-running-benchmarks.md", "patch": "@@ -101,7 +101,7 @@ benchmarks. This increases the likelihood of each benchmark achieving peak perfo\n according to the hardware. Therefore, run:\n \n ```console\n-$ ./benchmarks/cpu.sh fast\n+$ ./benchmark/cpu.sh fast\n ```\n \n ### ...
2025-05-04T20:04:55
golang/go
69e82796322bbff60b522534a8a6eacb2bf1ebba
6f4c63ba63fdec6e4a42e2e19ac71937973dedef
net/http: set cookie host to Request.Host when available When both Request.URL and Request.Host are set, the host in URL is used for connecting at the transport level, while Host is used for the request host line. Cookies should be set for the request, not the underlying connection destination. Fixes #38988 Change-I...
[ { "path": "src/net/http/client.go", "patch": "@@ -172,8 +172,13 @@ func refererForURL(lastReq, newReq *url.URL, explicitRef string) string {\n \n // didTimeout is non-nil only if err != nil.\n func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {\n+\tc...
2025-10-08T21:33:24
electron/electron
777e54792244b92565eb6bf32fed166217f46de7
c6c430bff1e825ea39e8b9eed75693f3253a059e
fix: segfault when moving WebContentsView between BrowserWindows (#44599) * fix: segfault when moving WebContentsView between BrowserWindows * chore: actually enable fix * fixup segfault when moving WebContentsView between BrowserWindows
[ { "path": "shell/browser/api/electron_api_view.cc", "patch": "@@ -124,6 +124,15 @@ struct Converter<views::FlexAllocationOrder> {\n }\n };\n \n+template <>\n+struct Converter<electron::api::View> {\n+ static bool FromV8(v8::Isolate* isolate,\n+ v8::Local<v8::Value> val,\n+ ...
2024-11-11T23:44:13
vercel/next.js
26b95c3f0fa7226b3dd77a35b63fa0a4bf4f60d6
cdf8f7959b0313799d64237e0d9d590e328f1028
[ci]: fix retry_deploy_test workflow (#85981) When we fixed deploy tests to consistently run with the explicitly provided Next.js release version, it broke this job which was relying on an explicit match on the "test e2e deploy canary" string.
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -17,8 +17,8 @@ jobs:\n name: retry failed jobs\n # Retry the test-e2e-deploy-release workflow up to 2 times\n if: >-\n- ${{ \n- github.event.workflow_run.display_title == 'test-e2e-deploy canary' &&\n+ ${{\n+ ...
2025-11-12T19:31:27
rust-lang/rust
50db919f5d5e9ae336afb8a293ac18d494434653
69370dc4a8862b8401615a2a7b950704ba66c495
Change TODO in compiler to FIXME
[ { "path": "compiler/rustc_codegen_cranelift/scripts/test_rustc_tests.sh", "patch": "@@ -175,7 +175,7 @@ rm -r tests/run-make/panic-abort-eh_frame # .eh_frame emitted with panic=abort\n \n # bugs in the test suite\n # ======================\n-rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking is...
2026-02-27T03:48:05
nodejs/node
4db978b111bf8164e000ea54ac744e1bf056b59a
995ad2b05303ab75e89a58ffcd69f987c2c459d6
benchmark: fix typo in method name for error-stack PR-URL: https://github.com/nodejs/node/pull/58128 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
[ { "path": "benchmark/es/error-stack.js", "patch": "@@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {\n 'without-sourcemap',\n 'sourcemap',\n 'node-modules-without-sourcemap',\n- 'node-module-sourcemap'],\n+ 'node-modules-sourcemap'],\n n: [1e5],\n });\n ", "additions": 1...
2025-05-04T19:55:30
facebook/react
d27fa084f66b2e47933e7760a1e78c6d101dda5b
52685a75039846fafec16d174e743d4525591ce7
Fix two typos in CHANGELOG.md (#31678)
[ { "path": "CHANGELOG.md", "patch": "@@ -8,7 +8,7 @@ Below is a list of all new features, APIs, deprecations, and breaking changes. R\n \n ### React\n \n-* Actions: `startTransition` can now accept async functions. Functions passed to `startTranstion` are called “Actions”. A given Transition can include one ...
2024-12-05T23:03:24
vercel/next.js
41c1f8700de71dd40f3a2395845906fe0354ac9b
ba20a5e8f26939b8963e2410dbc66d973ea9309b
[cna] For pnpm ignore postinstall from `sharp` and `unrs-resolver` (#83168) Fixes: https://github.com/vercel/next.js/issues/83158 There's still two other postinstall that are ignored if you use tw and eslint's next config (?): ``` ╭ Warning ────────────────────────────────────────────────────────────────────────────...
[ { "path": "packages/create-next-app/templates/index.ts", "patch": "@@ -319,6 +319,27 @@ export const installTemplate = async ({\n packageJson.devDependencies = sorted(packageJson.devDependencies);\n }\n \n+ if (packageManager === \"pnpm\") {\n+ const pnpmWorkspaceYaml = [\n+ // required for v...
2025-11-11T18:01:52
electron/electron
6e3a5daf62314d4de541d64a1098b0bb3a37168c
f9a04012b91539813b937b66c8998b4b068815f7
chore: bump chromium to 132.0.6826.0 (main) (#44584) * chore: bump chromium in DEPS to 132.0.6821.0 * chore: bump chromium in DEPS to 132.0.6822.0 * chore: update patches * chore: bump chromium in DEPS to 132.0.6824.0 * chore: update patches * 5998172: Migrate remaining NOTREACHED()s in chrome/ | https:...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6820.0',\n+ '132.0.6824.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2024-11-09T00:12:42
golang/go
6f4c63ba63fdec6e4a42e2e19ac71937973dedef
955a5a0dc5dd68ed89200a08f17590c0a94c1e09
cmd/go: unify "go fix" and "go vet" This change unifies the fix and vet subcommands; they use the same run function, action graph, and external tool (-vettool for go vet and -fixtool for go fix). go fix runs the tool with the -fix flag, whereas although go vet also supports -fix, it is not the default. The two tools h...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -7,5 +7,15 @@\n a replacement for `go tool doc`: it takes the same flags and arguments and\n has the same behavior.\n \n+<!-- go.dev/issue/75432 -->\n+The `go fix` command, following the pattern of `go vet` in Go 1.10,\n+now uses the Go analysis framework (`gola...
2025-09-26T17:33:09
nodejs/node
ddec63d7417f6e1170b0b077bb72df606bf12d11
c2d81569d546dd0cfdd6c2cd15913950eee3632b
src: add more debug logs and comments in NodePlatform PR-URL: https://github.com/nodejs/node/pull/58047 Refs: https://github.com/nodejs/node/pull/47452 Refs: https://github.com/nodejs/node/issues/54918 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
[ { "path": "src/debug_utils.h", "patch": "@@ -55,6 +55,8 @@ void NODE_EXTERN_PRIVATE FWrite(FILE* file, const std::string& str);\n V(MKSNAPSHOT) \\\n V(SNAPSHOT_SERDES) \\\n V(PERMIS...
2025-05-02T14:11:06
facebook/react
16d2bbbd1f1617d636ea0fd271b902a12a763c27
6bcf0d20dae349bba428d8f73dbcf0284b0acb10
Client render dehydrated Suspense boundaries on document load (#31620) When streaming SSR while hydrating React will wait for Suspense boundaries to be revealed by the SSR stream before attempting to hydrate them. The rationale here is that the Server render is likely further ahead of whatever the client would prod...
[ { "path": "packages/internal-test-utils/ReactJSDOM.js", "patch": "@@ -0,0 +1,20 @@\n+const JSDOMModule = jest.requireActual('jsdom');\n+\n+const OriginalJSDOM = JSDOMModule.JSDOM;\n+\n+module.exports = JSDOMModule;\n+module.exports.JSDOM = function JSDOM() {\n+ let result;\n+ if (new.target) {\n+ resul...
2024-12-03T21:13:35
electron/electron
9bf067dd5a97a8f5bf4dc0bc517afcbbad2b4695
f0d3e4233826dd60bcf3b0224b1e90841932ed55
fix: ftbfs when including simdjson in Node.js (#44567)
[ { "path": "patches/node/.patches", "patch": "@@ -42,3 +42,4 @@ build_restore_clang_as_default_compiler_on_macos.patch\n fix_-wextra-semi_errors_in_nghttp2_helper_h.patch\n fix_remove_harmony-import-assertions_from_node_cc.patch\n win_almost_fix_race_detecting_esrch_in_uv_kill.patch\n+chore_disable_deprecati...
2024-11-05T01:28:44
vercel/next.js
ba20a5e8f26939b8963e2410dbc66d973ea9309b
5bd7c6fec0390244d412719bca889101ff37501a
Fix false-positive build error for `cacheLife` & `cacheTag` (#85875) When functions exported from a module with a top-level `'use cache'` directive are imported into client modules, the compiler should allow `cacheLife` and `cacheTag` usage within those functions. This PR updates the `react_server_components` transfo...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -66,7 +66,6 @@ struct ReactServerComponents<C: Comments> {\n filepath: String,\n app_dir: Option<PathBuf>,\n comments: C,\n- directive_import_collection: Option<(bool, bool, RcVec<ModuleImports>,...
2025-11-11T16:30:41
golang/go
5368e7742971c8dbcb75a405eb2319e71fb1d0c7
c53cb642deea152e28281133bc0053f5ec0ce358
net/http: run TestRequestWriteTransport with fake time to avoid flakes This test verifies whether or not we use the chunked encoding when sending a request with a body like io.NopCloser(strings.NewReader("")). This depends on whether the transport can read a single byte from the request body within 200ms, which is fla...
[ { "path": "src/net/http/requestwrite_test.go", "patch": "@@ -15,6 +15,7 @@ import (\n \t\"strings\"\n \t\"testing\"\n \t\"testing/iotest\"\n+\t\"testing/synctest\"\n \t\"time\"\n )\n \n@@ -667,6 +668,13 @@ func TestRequestWrite(t *testing.T) {\n func TestRequestWriteTransport(t *testing.T) {\n \tt.Parallel(...
2025-10-09T22:25:30
nodejs/node
abfb7cc5bcb1397d8823e8fafbb62045031ca56e
f552c86fecd6c2ba9e832ea129b731dd63abdbe2
doc: fix typo of file `zlib.md` PR-URL: https://github.com/nodejs/node/pull/58093 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/zlib.md", "patch": "@@ -12,7 +12,7 @@ Gzip, Deflate/Inflate, Brotli, and Zstd.\n To access it:\n \n ```mjs\n-import os from 'node:zlib';\n+import zlib from 'node:zlib';\n ```\n \n ```cjs", "additions": 1, "deletions": 1, "language": "Markdown" } ]
2025-05-03T12:08:20
facebook/react
5b0ef217ef32333a8e56f39be04327c89efa346f
7670501b0dc1a97983058b5217a205b62e2094a1
s/server action/server function (#31005) ## Overview Changes the error message to say "Server Functions" instead of "Server Actions" since this error can fire in cases like: ``` <button onClick={serverFunction} /> ``` Which is calling a server function, not a server action.
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -693,7 +693,7 @@ export function processReply(\n ) {\n if (temporaryReferences === undefined) {\n throw new Error(\n- 'Only plain objects, and a few built-ins, can be passed to Server Actions. ' ...
2024-12-02T15:02:31
vercel/next.js
5bd7c6fec0390244d412719bca889101ff37501a
1b113c01be5d5268c7f780d53130ec98618dc3b4
[test] Add missing test fixtures for `cacheLife` & `cacheTag` in client (#85872) Importing `cacheLife` and `cacheTag` in Client Components yields build errors. This adds test fixtures to cover these scenarios. In addition, we're duplicating the test fixtures that have different error messages between `app/` and `pa...
[ { "path": "crates/next-custom-transforms/tests/errors.rs", "patch": "@@ -90,24 +90,32 @@ fn next_ssg_errors(input: PathBuf) {\n }\n \n #[fixture(\"tests/errors/react-server-components/**/input.js\")]\n+#[fixture(\"tests/errors/react-server-components/**/page.js\")]\n+#[fixture(\"tests/errors/react-server-co...
2025-11-11T13:37:43
electron/electron
f0d3e4233826dd60bcf3b0224b1e90841932ed55
24dc9ddf5cde0cf5c75655a57889ce20babfaf6a
test: fixup flaky session tests (#44545) test: fixup broken tests in 32-x-y (#44389) * test: fixup broken tests in 32-x-y * test: fixup additional failing test (cherry picked from commit c61bb1654e7abc4b48e09b44b40468ee89c5b2b1)
[ { "path": "spec/api-session-spec.ts", "patch": "@@ -12,7 +12,7 @@ import * as https from 'node:https';\n import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n \n-import { defer, listen } from './lib/spec-helpers';\n+import { defer, ifit, listen } from './lib/spec-helpers'...
2024-11-04T22:26:19
facebook/react
aba370f1e45d21f19f33c04c33fc99fb3d0109e5
1345c37941d4e2e29034bb0fc0cfb6d01bb1d841
Add moveBefore Experiment (#31596) A long standing issue for React has been that if you reorder stateful nodes, they may lose their state and reload. The thing moving loses its state. There's no way to solve this in general where two stateful nodes swap. The [`moveBefore()` proposal](https://chromestatus.com/fe...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -93,6 +93,7 @@ import {\n enableTrustedTypesIntegration,\n enableAsyncActions,\n disableLegacyMode,\n+ enableMoveBefore,\n } from 'shared/ReactFeatureFlags';\n import {\n HostComponent,\n@@ -525,6 +526,7 @@ expo...
2024-11-22T18:24:29
nodejs/node
a2d157ef239c747aba3bc282d9a7b792b054c713
248b1f48a8a47c68aeea5521a1e033c28eb7cae8
test: fix test-fs-write for V8 13.6 The `--expose_externalize_string` flag adds a new global. PR-URL: https://github.com/nodejs/node/pull/58070 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafae...
[ { "path": "test/parallel/test-fs-write.js", "patch": "@@ -37,17 +37,20 @@ const constants = fs.constants;\n \n const {\n createExternalizableString,\n+ createExternalizableTwoByteString,\n externalizeString,\n isOneByteString,\n } = globalThis;\n \n assert.notStrictEqual(createExternalizableString, u...
2025-04-09T16:00:54
golang/go
c53cb642deea152e28281133bc0053f5ec0ce358
954fdcc51a678a2b84edb29ef4c3743b318a6fd8
internal/buildcfg: enable greenteagc experiment for loong64 The loong64 compiler bug has been resolved, so we can now unconditionally enable the experiment on the architecture. Updates #73581 Fixes #75776 Change-Id: I390f8a125d43ca64798ea5b6a408aaf7220fadbf Reviewed-on: https://go-review.googlesource.com/c/go/+/7104...
[ { "path": "src/internal/buildcfg/exp.go", "patch": "@@ -78,18 +78,13 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {\n \t// things like .debug_addr (needed for DWARF 5).\n \tdwarf5Supported := (goos != \"darwin\" && goos != \"ios\" && goos != \"aix\")\n \n-\t// The compiler...
2025-10-09T08:05:35
rust-lang/rust
bea3803300c5d3d4b55d26385fd8612a51afc9bb
0ffb4adaeb225ccd49ef7c829e6ea2aa4b516f74
Insert missing `ensure_ok` calls. Two places where `ensure_ok` can be used but currently isn't. (These queries are marked with `return_result_from_ensure_ok`, which means that `ensure_ok` returns `Result<(), ErrorGuaranteed>`.) This is potentially a perf win, because `ensure_ok` query calls can be faster.
[ { "path": "compiler/rustc_borrowck/src/diagnostics/move_errors.rs", "patch": "@@ -294,7 +294,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n \n // Avoid bogus move errors because of an incoherent `Copy` impl.\n self.infcx.type_implements_trait(copy_def_id, [ty], self.infcx.para...
2026-03-04T01:12:58
electron/electron
24dc9ddf5cde0cf5c75655a57889ce20babfaf6a
1835c0ab6c7773e48715874457a08fb897dfebf5
fix: remove use of banned std::to_string() (#44514) Use base::NumberToString() instead Xref: https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++-features.md#std_sto_i_l_ul_ll_ull_f_d_ld_to_string_banned
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -664,8 +664,8 @@ IFACEMETHODIMP ToastEventHandler::Invoke(\n winui::Notifications::IToastFailedEventArgs* e) {\n HRESULT error;\n e->get_ErrorCode(&error);\n- std::string errorMessage =\n- \"Notification fa...
2024-11-04T21:42:42
facebook/react
a9f14cb44e58c13843cdeacc7dc352562cb3b976
c11c9510fa14bbd87053685c19bfdfec2f427f49
Fix Logging of Immediately Resolved Promises (#31610) This avoid re-emitting the yellow "Event" log when we ping inside the original event. Instead of treating events as repeated when we get repeated updates, we treat them as repeated if we've ever logged out this event before. Additionally, in the case the prer...
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -265,7 +265,6 @@ import {\n startProfilerTimer,\n stopProfilerTimerIfRunningAndRecordDuration,\n stopProfilerTimerIfRunningAndRecordIncompleteDuration,\n- markUpdateAsRepeat,\n trackSuspendedTime,\n startYieldTimer,\n ...
2024-11-21T22:16:54
golang/go
954fdcc51a678a2b84edb29ef4c3743b318a6fd8
19a30ea3f250f8d6258f3e08aa3561f1193fdd38
cmd/compile: declare no output register for loong64 LoweredAtomic{And,Or}32 ops The ICE seen on loong64 while compiling the `(*gcWork).tryStealSpan` function was due to an `LoweredAtomicAnd32` op (inlined from the `(pMask).clear` implementation) being incorrectly assigned an output register while it shouldn't have. Be...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go", "patch": "@@ -143,6 +143,7 @@ func init() {\n \t\tgp2load = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}\n \t\tgpstore = regInfo{inputs: []regMask{gpspsbg, gpg}}\n \t\tgpstore2 = regInfo{inputs: []regMask{gpspsbg, gpg, gpg...
2025-10-09T07:52:02
nodejs/node
7963548186f545df0d6a3df2d11d6e9a2adfc50a
de8e7bd7725c1bd1a0caaeaa7c5c846e3831588d
build: fix V8 TLS config for shared lib builds PR-URL: https://github.com/nodejs/node/pull/58070 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -53,6 +53,11 @@\n 'BUILDING_V8_SHARED', # Make V8_EXPORT visible.\n ],\n }],\n+ ['node_shared==\"true\"', {\n+ 'defines': [\n+ 'V8_TLS_USED_IN_LIBRARY', # Enable V8_TLS_LIBRARY_MODE.\n+ ],\n+ }],\n ...
2025-04-03T18:18:42
rust-lang/rust
0ffb4adaeb225ccd49ef7c829e6ea2aa4b516f74
69370dc4a8862b8401615a2a7b950704ba66c495
Tweak control flow in `query_*` functions. `query_get_at`, `query_ensure`, and `query_ensure_error_guarantee` are very similar functions, but they all use different control flow styles which obscures the similarities. This commit rewrites them to all use a `match`.
[ { "path": "compiler/rustc_middle/src/query/inner.rs", "patch": "@@ -59,8 +59,11 @@ pub(crate) fn query_ensure<'tcx, C>(\n ) where\n C: QueryCache,\n {\n- if try_get_cached(tcx, &query.cache, &key).is_none() {\n- (query.execute_query_fn)(tcx, DUMMY_SP, key, QueryMode::Ensure { ensure_mode });\n...
2026-03-03T09:11:52
facebook/react
c11c9510fa14bbd87053685c19bfdfec2f427f49
64f89510af244b1d812de7a74e161975d99ad3e1
[crud] Fix deps comparison bug (#31599) Fixes a bug with the experimental `useResourceEffect` hook where we would compare the wrong deps when there happened to be another kind of effect preceding the ResourceEffect. To do this correctly we need to add a pointer to the ResourceEffect's identity on the update. I also u...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -253,6 +253,7 @@ export type ResourceEffectUpdate = {\n update: ((resource: mixed) => void) | void,\n deps: Array<mixed> | void | null,\n next: Effect,\n+ identity: ResourceEffectIdentity,\n };\n \n type StoreInstance<T> = {\n...
2024-11-20T21:54:41
rust-lang/rust
b9ee655517d90c3be3101bdb24445d06ad1197b1
ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d
Fix LegacyKeyValueFormat report from docker build: miscellaneous
[ { "path": "src/ci/docker/host-x86_64/dist-android/Dockerfile", "patch": "@@ -16,15 +16,14 @@ ENV TARGETS=$TARGETS,i686-linux-android\n ENV TARGETS=$TARGETS,aarch64-linux-android\n ENV TARGETS=$TARGETS,x86_64-linux-android\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --enable-extended \\\n+ENV RUST_CONFIGURE_ARGS...
2026-03-07T09:40:02
vercel/next.js
d5262c7286d82e521f312dd3883096cd84c8c0b6
28a14da5010ad3147a06abbabc99a119d009f733
Update authentication.mdx: Fix `Auth0` Link (#85953) The `Auth0` link is broken so I fixed it <!-- 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(...
[ { "path": "docs/01-app/02-guides/authentication.mdx", "patch": "@@ -1624,7 +1624,7 @@ Now that you've learned about authentication in Next.js, here are Next.js-compat\n \n ### Auth Libraries\n \n-- [Auth0](https://auth0.com/docs/quickstart/webapp/nextjs/01-login)\n+- [Auth0](https://auth0.com/docs/quickstar...
2025-11-11T09:09:20
golang/go
80f3bb5516bb12233a15167bc8ba9d39cca5b535
9db7e30bb42eed9912f5e7e9e3959f3b38879d5b
reflect: remove timeout in TestChanOfGC This test has an arbitrary 5 second timeout, and this seems to fire on Darwin with mayMoreStackMove enabled (which is slow). Just rely on the regular test timeout instead of this arbitrary shorter timeout to eliminate the possibility that the test is just too slow. On my Linux ...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -6198,19 +6198,6 @@ func TestChanOfDir(t *testing.T) {\n }\n \n func TestChanOfGC(t *testing.T) {\n-\tdone := make(chan bool, 1)\n-\tgo func() {\n-\t\tselect {\n-\t\tcase <-done:\n-\t\tcase <-time.After(5 * time.Second):\n-\t\t\tpanic(\"deadlock in TestChanO...
2025-10-09T21:13:59
electron/electron
c63d0d61e71f12d29efb1df885a0883ae76bb164
e3f2ca1425b3e873287f4dcabd46af1f553716bf
chore: bump Node.js to v22.9.0 (#44281) * chore: bump Node.js to v22.9.0 * build: drop base64 dep in GN build https://github.com/nodejs/node/pull/52856 * build,tools: make addons tests work with GN https://github.com/nodejs/node/pull/50737 * fs: add fast api for InternalModuleStat https://github.com/...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -176,7 +176,7 @@ jobs:\n if [ \"${{ inputs.is-asan }}\" == \"true\" ]; then\n cd ..\n ASAN_SYMBOLIZE=\"$PWD/tools/valgrind/asan/asan_symbolize.py --executable-path=$PWD/out/Default/electron\"\n- ...
2024-11-04T18:41:56
nodejs/node
d58f474b2d033547d1dfb5148c5183bb783edae4
0f98039268ee76cf0bf9d4337b096f952136937f
deps: V8: backport 954187bb1b87 Original commit message: [api] add Isolate::Deinitialize() and Isolate::Free() This allows embedders to mirror the isolate disposal routine with an initialization routine that uses Isolate::Allocate(). ``` v8::Isolate* isolate = v8::Isolate::Allocate(); // Use...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ...
2025-04-24T12:58:25
facebook/react
7558ffe84df6bab5d701fd90de1c6313f9a1c066
7c254b65761c56951a67d965461b0174f224a7e9
[crud] Fix copy paste typo (#31588) Happens to the best of us.
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -5241,8 +5241,8 @@ if (__DEV__) {\n return mountEvent(callback);\n };\n }\n- if (InvalidNestedHooksDispatcherOnMountInDEV) {\n- (HooksDispatcherOnRerenderInDEV: Dispatcher).useResourceEffect =\n+ if (enableUseRes...
2024-11-19T22:13:01
rust-lang/rust
dceeb20bbc73085a7dfdfd9eeec5918eeb92d60e
ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d
Fix LegacyKeyValueFormat report from docker build: various
[ { "path": "src/ci/docker/host-x86_64/dist-various-1/Dockerfile", "patch": "@@ -152,16 +152,14 @@ ENV CFLAGS_armv5te_unknown_linux_musleabi=\"-march=armv5te -marm -mfloat-abi=soft\n CC_riscv64gc_unknown_none_elf=riscv64-unknown-elf-gcc \\\n CFLAGS_riscv64gc_unknown_none_elf=-march=rv64gc -mabi=lp64\n...
2026-03-07T09:26:23
vercel/next.js
28a14da5010ad3147a06abbabc99a119d009f733
015ce9820a5a0c53e455766c45b6af667d36431c
Deployment adapter: fix metadata for "/" route (#85820) Updates cases where `/` isn't normalized fully when interpolating into data paths and adds regression tests. --------- Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com> Co-authored-by: JJ Kasper <jj@jjsweb.site>
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -727,8 +727,7 @@ export async function handleBuildComplete({\n \n // need to add matching .rsc output\n if (isAppPage) {\n- const rscPathname =\n- (output.pathname === '/' ? '/index' : output.path...
2025-11-10T23:42:33
golang/go
9db7e30bb42eed9912f5e7e9e3959f3b38879d5b
8d810286b3121b601480426159c04d178fa29166
net/url: allow IP-literals with IPv4-mapped IPv6 addresses The security fix we applied in CL709857 was overly broad. It applied rules from RFC 2732, which disallowed IPv4-mapped IPv6 addresses, but these were later allowed in RFC 3986, which is the canonical URI syntax RFC. Revert the portion of CL709857 which restri...
[ { "path": "src/net/url/url.go", "patch": "@@ -689,13 +689,13 @@ func parseHost(host string) (string, error) {\n \n \t\t// Per RFC 3986, only a host identified by a valid\n \t\t// IPv6 address can be enclosed by square brackets.\n-\t\t// This excludes any IPv4 or IPv4-mapped addresses.\n+\t\t// This excludes...
2025-10-09T00:13:12
electron/electron
f5bdbdb1e84e029028fb4d55714e40166ceab5ee
48801be8e9e3b898635e55abb0b596c83bb9c17a
refactor: more inline constexpr string view (#44498) * chore: remove unused electron::kHidProductIdKey * refactor: make electron::kHidDeviceNameKey inline constexpr std::string_view refactor: make electron::kHidGuidKey inline constexpr std::string_view * refactor: make serial_chooser_context keys inline const...
[ { "path": "filenames.gni", "patch": "@@ -675,7 +675,6 @@ filenames = {\n \"shell/common/node_includes.h\",\n \"shell/common/node_util.cc\",\n \"shell/common/node_util.h\",\n- \"shell/common/options_switches.cc\",\n \"shell/common/options_switches.h\",\n \"shell/common/platform_util.cc...
2024-11-04T18:27:49
nodejs/node
57699fffb8a387a3edeafd3418a369907b6b8246
4d7da6cca1c1a894032b11b19fc707d605f44400
deps: disable V8 concurrent sparkplug compilation It introduces process hangs on some platforms because Node.js doesn't tear down V8 correctly. Disable it while we work on a solution. Refs: https://github.com/nodejs/node/issues/47297 Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902 PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2023-04-06T12:50:56
facebook/react
eaf2d5c670c84124618977156d81946435922eb3
c866d7506086140aaa79a015f4a7b2cf20c51905
fix[eslint-plugin-react-hooks]: Fix error when callback argument is an identifier with an `as` expression (#31119)
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7088,18 +7088,7 @@ const tests = {\n errors: [\n {\n message:\n- \"React Hook useEffect has a missing dependency: 'myEffect'. \" +\n- 'Either include it or r...
2024-11-19T09:36:30
rust-lang/rust
fcfd96e821339803350bef5ae702c72d85768e75
ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d
Fix LegacyKeyValueFormat report from docker build: pr
[ { "path": "src/ci/docker/host-x86_64/pr-check-1/Dockerfile", "patch": "@@ -39,7 +39,7 @@ COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/\n # Check library crates on all tier 1 targets.\n # We disable optimized compiler built-ins because that requires a C toolchain for the target.\n # We also ski...
2026-03-07T09:14:23
golang/go
0e466a8d1d89e15e953c7d35bcd9e02d3c89f62b
4837fbe4145cd47b43eed66fee9eed9c2b988316
cmd/compile: modify float-to-[u]int so that amd64 and arm64 match Eventual goal is that all the architectures agree, and are sensible. The test will be build-tagged to exclude not-yet-handled platforms. This change also bisects the conversion change in case of bugs. (`bisect -compile=convert ...`) Change-Id: I98528...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -20,6 +20,7 @@ type DebugFlags struct {\n \tAppend int `help:\"print information about append compilation\"`\n \tCheckptr int `help:\"instrument unsafe pointer conversions\\n0: instrumentation disabled\\n1: co...
2025-07-21T17:30:08
vercel/next.js
1f144f085db9dc3136eeb20a4dfbe74a113ac74d
0baa1f7a9a4d7f2b94944d782885c9e67ed8ea69
Fix Turbopack local font `font-family` declaration (#85913) This fixes #85912, as the logic of injecting the `font-family` property should be mirrored from the Webpack implementation.
[ { "path": "crates/next-core/src/next_font/local/stylesheet.rs", "patch": "@@ -62,11 +62,17 @@ pub(super) async fn build_font_face_definitions(\n };\n let query_str = qstring::QString::from(serde_json::to_string(&query)?.as_str());\n \n+ // Check if `font-family` is explicitly defined ...
2025-11-10T16:29:42
electron/electron
48801be8e9e3b898635e55abb0b596c83bb9c17a
d9a9d5b8fe30ee0a9539d9e546f6d51c62c957b8
chore: bump chromium to 132.0.6807.0 (main) (#44360) * chore: bump chromium in DEPS to 132.0.6791.0 * 5804481: [UI] Migrate remaining clients of `MenuSourceType` https://chromium-review.googlesource.com/c/chromium/src/+/5804481 * chore: try revert PA CL * chore: bump chromium in DEPS to 132.0.6793.0 * c...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6789.0',\n+ '132.0.6807.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2024-11-04T14:10:00
rust-lang/rust
63a02ac1b37772aaeced31c6def24fbeb5ab209b
ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d
Fix LegacyKeyValueFormat report from docker build: i686
[ { "path": "src/ci/docker/host-x86_64/dist-i586-gnu-i586-i686-musl/Dockerfile", "patch": "@@ -57,10 +57,9 @@ RUN ln -s /usr/lib32/libgcc_s.so.1 /musl-i686/lib/\n COPY scripts/sccache.sh /scripts/\n RUN sh /scripts/sccache.sh\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --musl-root-i586=/musl-i586 \\\n+ENV RUST_CO...
2026-03-07T08:37:38
facebook/react
c866d7506086140aaa79a015f4a7b2cf20c51905
ee10c74824fa9631032f031b20ad1f208ccb4aca
[playground] Fix broken tests (#31573) Our e2e setup with monaco is kinda brittle since it relies on the dom. It seems like longish text gets truncated so let's just simpify all these test cases. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack]...
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/01-user-output.txt", "patch": "@@ -1,13 +1,13 @@\n-function TestComponent(t0) {\n-  const $ = _c(2);\n-  const { x } = t0;\n-  let t1;\n-  if ($[0] !== x) {\n-    t1 = <Button>{x}</Button>;\n-    $[0] = x;\n-    $[1] = t1;\n-  } el...
2024-11-19T00:18:09
golang/go
4837fbe4145cd47b43eed66fee9eed9c2b988316
ee163197a879cf19aa9758bc544c717445284311
net/http/httptest: check whether response bodies are allowed Fixes #75471 Change-Id: Ie8fc5fae4b2a9285501198d8379bbffe51ee63f7 Reviewed-on: https://go-review.googlesource.com/c/go/+/709335 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "src/net/http/httptest/recorder.go", "patch": "@@ -105,6 +105,10 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n+\t...
2025-10-05T22:09:03