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
golang/go
388c41c412c24b751c8c09465787ae79bceca9c7
385dc33250336081c0c630938c3efede481eff76
cmd/go: skip git sha256 tests if git < 2.29 Fix test building on older Ubuntu LTS releases (that are still supported). Git SHA256 support was only included in 2.29, which came out in 2021. Check the output of `git version` and skip these tests if the version is older than that introduction. Thanks to @ianlancetaylor ...
[ { "path": "src/cmd/go/internal/modfetch/codehost/git_test.go", "patch": "@@ -16,14 +16,18 @@ import (\n \t\"io/fs\"\n \t\"log\"\n \t\"os\"\n+\t\"os/exec\"\n \t\"path\"\n \t\"path/filepath\"\n \t\"reflect\"\n+\t\"regexp\"\n \t\"runtime\"\n \t\"strings\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\n+\t\"gola...
2025-08-24T19:15:06
vercel/next.js
52ea3cbabc0fe8e6b8cc8bdcc10843586c49c013
1f6391ceee35ccaeedf05ce914dc2cc2da1ae9d8
Fix stale dev types causing build failure after route deletion (#86489) When running `next dev`, then stopping it, deleting a route, and running `next build`, the build would fail with a type error like: ``` .next/dev/types/validator.ts:78:39 Type error: Cannot find module '../../../app/simple-test/page.js' ``` The ...
[ { "path": "packages/next/src/lib/typescript/runTypeCheck.ts", "patch": "@@ -2,9 +2,11 @@ import path from 'path'\n import { getFormattedDiagnostic } from './diagnosticFormatter'\n import { getTypeScriptConfiguration } from './getTypeScriptConfiguration'\n import { getRequiredConfiguration } from './writeCon...
2025-11-26T21:29:49
nodejs/node
3ac0e28a7f190cc9593a0e7eb7fa6825e417a2f3
a5f9ca1f77cf2c658c9d97fa049b5f29e930b252
src: enhance error messages for unknown options PR-URL: https://github.com/nodejs/node/pull/58677 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M ...
[ { "path": "src/node_config_file.cc", "patch": "@@ -200,7 +200,7 @@ ParseResult ConfigReader::ParseOptions(\n } else {\n FPrintF(stderr,\n \"Unknown or not allowed option %s for namespace %s\\n\",\n- option_key.data(),\n+ option_key,\n namespace...
2025-06-13T13:40:17
facebook/react
09197bb786344d2ede1286e7f3ec4e21b18a58f2
2df8f6188537514a538741064ae83682c2bef7c1
[compiler] Outline jsx with duplicate attributes (#31441) Previously, we would skip outlining jsx expressions that had duplicate jsx attributes as we would not rename them causing incorrect compilation. In this PR, we add outlining support for duplicate jsx attributes by renaming them.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/OutlineJsx.ts", "patch": "@@ -222,6 +222,8 @@ function collectProps(\n const attributes: Array<OutlinedJsxAttribute> = [];\n const jsxIds = new Set(instructions.map(i => i.lvalue.identifier.id));\n const seen: Set<string> = new ...
2024-11-06T17:50:13
electron/electron
a467d0684ed26cdd45b022a5a70d63fa8ec6b437
75eac86506da4fd87aa7ec36478d5c196b988d4f
feat: ServiceWorkerMain (#45232) * feat: ServiceWorkerMain * refactor: disconnect remote * handle version_info_ nullptr case * initiate finish request when possible and enumerate errors * explicit name for test method * oops * fix: wait for redundant version to stop before destroying * docs: clari...
[ { "path": "docs/README.md", "patch": "@@ -127,6 +127,7 @@ These individual tutorials expand on topics discussed in the guide above.\n * [pushNotifications](api/push-notifications.md)\n * [safeStorage](api/safe-storage.md)\n * [screen](api/screen.md)\n+* [ServiceWorkerMain](api/service-worker-main.md)\n * [s...
2025-01-24T13:33:44
vercel/next.js
181c9af0b464bd0223e2c55e30506bb1e047cb77
7905cb4cc3246f20145694ee490ff4ecd926541f
Fix no-double-tailwind-execution flake (#86549) https://github.com/vercel/next.js/runs/56466402435 wait for the `patchFile` revert operation to finish before asserting ``` FAIL webpack test/e2e/app-dir/no-double-tailwind-execution/no-double-tailwind-execution.test.ts (31.136 s) no-double-tailwind-execution ✕ s...
[ { "path": "test/e2e/app-dir/no-double-tailwind-execution/no-double-tailwind-execution.test.ts", "patch": "@@ -23,33 +23,37 @@ describe('no-double-tailwind-execution', () => {\n const browser = await next.browser('/')\n expect(await browser.elementByCss('p').text()).toBe('hello world')\n \n+ funct...
2025-11-26T18:43:01
golang/go
385dc33250336081c0c630938c3efede481eff76
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
runtime: prevent time.Timer.Reset(0) from deadlocking testing/synctest tests In Go 1.23+, timer channels behave synchronously. When we have a timer channel (i.e. !async && t.isChan) we would lock the runtime.timer.sendLock mutex at the beginning of runtime.timer.modify()'s execution. Calling time.Timer.Reset(0) withi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -5,6 +5,7 @@\n package synctest_test\n \n import (\n+\t\"context\"\n \t\"fmt\"\n \t\"internal/synctest\"\n \t\"internal/testenv\"\n@@ -329,6 +330,31 @@ func TestAfterFuncRunsImmediately(t *testing.T) {\n \t})\n }\n \n+// TestTimerResetZeroDoNo...
2025-11-01T15:15:58
nodejs/node
54fa74fba921fa98644e153dcf561877a663883f
efd28a0ca24104287afdb6622454ca96e85c92de
doc: punctuation fix for Node-API versioning clarification PR-URL: https://github.com/nodejs/node/pull/58599 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/n-api.md", "patch": "@@ -261,7 +261,7 @@ For example v18.15.0 supports only Node-API version 8. ABI stability was\n achieved because 8 was a strict superset of all previous versions.\n \n As of version 9, while Node-API versions continue to be versioned\n-independently an add-on that ran ...
2025-06-12T21:12:33
facebook/react
fd018af617cf9f8be607f45fc53d6d8167d29eb4
f2f002c7c19e273f3f31289d6f288c3248f10183
[compiler] Delete propagateScopeDeps (non-hir) (#31199) `enablePropagateScopeDepsHIR` is now used extensively in Meta. This has been tested for over two weeks in our e2e tests and production. The rest of this stack deletes `LoweredFunction.dependencies`, which the non-hir version of `PropagateScopeDeps` depends o...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -57,7 +57,6 @@ import {\n mergeReactiveScopesThatInvalidateTogether,\n promoteUsedTemporaries,\n propagateEarlyReturns,\n- propagateScopeDependencies,\n pruneHoistedContexts,\n pruneNonEscapingScope...
2024-11-06T00:22:04
rust-lang/rust
5064056dd3971930ad83eaaccf91f1561a274f0d
d1ee5e59a964a419b84b760812a35075034f4861
interpreter error reporting: remove arguments that are always the same
[ { "path": "compiler/rustc_const_eval/src/const_eval/error.rs", "patch": "@@ -8,7 +8,7 @@ use rustc_middle::mir::interpret::{\n use rustc_middle::query::TyCtxtAt;\n use rustc_middle::ty::ConstInt;\n use rustc_middle::ty::layout::LayoutError;\n-use rustc_span::{Span, Symbol};\n+use rustc_span::{DUMMY_SP, Span...
2026-03-09T15:15:38
electron/electron
75eac86506da4fd87aa7ec36478d5c196b988d4f
996477152d2c11098f6d154e4de9bc51c6088701
chore: bump chromium to 134.0.6968.0 (main) (#45172) * chore: bump chromium in DEPS to 134.0.6948.0 * chore: update can_create_window.patch https://chromium-review.googlesource.com/c/chromium/src/+/6151982 no patch code changes, but had to manually apply due to upstream context shear * chore: update proxy_...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '133.0.6920.0',\n+ '134.0.6968.0',\n 'node_version':\n 'v22.11.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "build/...
2025-01-24T04:07:43
golang/go
99b724f4542f4d9fb4a2ceacbbd2a6d9367dc0f6
27937289dc9fccf1f5513475145799087f39b964
cmd/go: document purego convention Fixes #23172 Change-Id: I854e399471dfa22e62fbdec9719e561c4501e5ac Reviewed-on: https://go-review.googlesource.com/c/go/+/660136 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mi...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2190,6 +2190,12 @@\n // building the package for Windows; similarly, math_386.s will be included\n // only when building the package for 32-bit x86.\n //\n+// By convention, packages with assembly implementations may provide a go-only\n+// version under the \...
2025-03-21T23:23:50
vercel/next.js
0683859c93e8671636c1e037450ccf358c2a3384
f71ce534a8e9429f4341998ae386b23055c5888c
Migrate app-dir-export test to be isolated (#86534) Flakey: ``` ❌ test/integration/app-dir-export/test/start.test.ts output: HEADLESS=true NEXT_TELEMETRY_DISABLED=1 CI= NEXT_TEST_CI=true IS_RETRY=undefined TRACE_PLAYWRIGHT=true CIRCLECI= GITHUB_ACTIONS= CONTINUOUS_INTEGRATION= RUN_ID= BUILD_NUMBER= JEST_JUNIT_OUTPU...
[ { "path": "test/cache-components-tests-manifest.json", "patch": "@@ -290,6 +290,13 @@\n \"test/e2e/app-dir/use-selected-layout-segment-s/use-selected-layout-segment-s.test.ts\",\n \"test/e2e/app-dir/use-server-inserted-html/use-server-inserted-html.test.ts\",\n \"test/e2e/app-dir/with-expo...
2025-11-26T15:15:55
facebook/react
792fa065ca7a46ce4a583e8f6f35eec8bd813d43
33195602ea125af38f9460f0bb2ccab8713e5f10
[compiler][ez] Clean up pragma parsing for tests + playground (#31347) Move environment config parsing for `inlineJsxTransform`, `lowerContextAccess`, and some dev-only options out of snap (test fixture). These should now be available for playground via `@inlineJsxTransform` and `lowerContextAccess`. Other small...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -14,7 +14,7 @@ import {\n CompilerErrorDetail,\n Effect,\n ErrorSeverity,\n- parseConfigPragma,\n+ parseConfigPragmaForTests,\n ValueKind,\n runPlayground,\n type Hook,\n@@ -208,7 +208,7 @@ function compile(sou...
2024-11-05T23:19:44
nodejs/node
bba07d7e1edace182894b517a903cb55fb4d5b2b
708477bd8d68f3571b02bb311dccc3d892e447d1
module: fix typescript import.meta.main PR-URL: https://github.com/nodejs/node/pull/58661 Fixes: https://github.com/nodejs/node/issues/58660 Reviewed-By: Xuguang Mei <meixuguang@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Ethan Arrowoo...
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -593,17 +593,17 @@ translators.set('addon', function translateAddon(url, source, isMain) {\n });\n \n // Strategy for loading a commonjs TypeScript module\n-translators.set('commonjs-typescript', function(url, source) {\n+translators.set('com...
2025-06-12T11:21:54
rust-lang/rust
cfcbcb715c5120e481b2d1303b590a5eb2417e55
d1ee5e59a964a419b84b760812a35075034f4861
fix(query): Pass query key to value_from_cycle_error Co-authored-by: Daria Sukhonina <zetanumbers@users.noreply.github.com> Co-authored-by: Nicholas Nethercote <nnethercote@users.noreply.github.com>
[ { "path": "compiler/rustc_middle/src/query/plumbing.rs", "patch": "@@ -136,8 +136,12 @@ pub struct QueryVTable<'tcx, C: QueryCache> {\n /// For `no_hash` queries, this function pointer is None.\n pub hash_value_fn: Option<fn(&mut StableHashingContext<'_>, &C::Value) -> Fingerprint>,\n \n- pub val...
2026-03-11T22:10:45
facebook/react
33195602ea125af38f9460f0bb2ccab8713e5f10
5ca2bc6d631dde8c221fa482cb8729a67115c7f9
[compiler][ez] tsconfig: treat all snap fixtures as modules (#31350) Qol improvement. Currently, typescript lints treat test fixtures without an export as a 'global script' (see [docs](https://www.typescriptlang.org/docs/handbook/2/modules.html#how-javascript-modules-are-defined)). This gives confusing lints for du...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/tsconfig.json", "patch": "@@ -19,7 +19,9 @@\n },\n \"verbatimModuleSyntax\": true,\n \"module\": \"ESNext\",\n- \"allowSyntheticDefaultImports\": true\n+ \"allowSyntheticDefaultImports\": true,\n+ \"moduleDe...
2024-11-05T22:57:18
vercel/next.js
f71ce534a8e9429f4341998ae386b23055c5888c
59fe222b5e4f83349462663ce073fbbbcdf03962
[test] Add test fixture for runtime error in `'use cache'` (#86499) In production, when throwing an error in `'use cache'` at runtime, we are currently logging the obfuscated error that React is producing when crossing the cache-server boundary. This is not ideal for investigating production issues so we're also loggi...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -1,6 +1,6 @@\n import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { waitForNoErrorToast } from 'next-test-utils'\n-import { getPrerenderOutput } from './utils'\n+import { retry, waitForNoErrorToast ...
2025-11-26T15:00:35
nodejs/node
54574432109f353dcb936343d732f406584bce51
3a7f8efe60eedeac4d03489521a6acb5249e480e
lib,src: support DOMException ser-des Added serialization and deserialization support for `DOMException`. Co-Authored-By: jazelly <xzha4350@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58649 Fixes: https://github.com/nodejs/node/issues/49181 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ethan ...
[ { "path": "lib/eslint.config_partial.mjs", "patch": "@@ -525,4 +525,16 @@ export default [\n ],\n },\n },\n+ {\n+ files: [\n+ 'lib/internal/per_context/domexception.js',\n+ ],\n+ languageOptions: {\n+ globals: {\n+ // Parameters passed to internal modules.\n+ pr...
2025-06-11T16:11:18
electron/electron
e09577b1233453d9f24ce4efcac0583494ed8f2b
26d228ccfe009400a06d0271ca84a7b08b574c1b
feat: redesign preload APIs (#45230) * feat: redesign preload APIs * docs: remove service-worker mentions for now * fix lint * remove service-worker ipc code * add filename * fix: web preferences preload not included * fix: missing common init * fix: preload bundle script error
[ { "path": "docs/api/session.md", "patch": "@@ -1330,18 +1330,43 @@ the initial state will be `interrupted`. The download will start only when the\n \n Returns `Promise<void>` - resolves when the session’s HTTP authentication cache has been cleared.\n \n-#### `ses.setPreloads(preloads)`\n+#### `ses.setPreloa...
2025-01-24T02:12:23
facebook/react
5ca2bc6d631dde8c221fa482cb8729a67115c7f9
bddb7c9b5c248c77fb52743cd319945d782bb7aa
[compiler][ez] Fixture repro for function hoisting bug (#31349) Repro for bug reported by @alexmckenley
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-functiondecl-hoisting.expect.md", "patch": "@@ -0,0 +1,81 @@\n+\n+## Input\n+\n+```javascript\n+import {Stringify} from 'shared-runtime';\n+\n+/**\n+ * Fixture currently fails with\n+ * Found differences in evaluato...
2024-11-05T22:56:53
vercel/next.js
13e4d08e3b173cfed3c08cbf3d8daa5416dfaa20
2846e785e7bb0e0fce975a8579ab68b7e23d13d0
Turbopack: Use `Debug` instead of `Display` for `ValueDebugFormat` impl on `RcStr` (#86522) Stuff like empty `RcStr`s look really confusing if we use `Display`. Also stop using the alternate debug mode for `String`, as it looks like the alternate flag doesn't do anything in this case.
[ { "path": "turbopack/crates/turbo-tasks/src/debug/mod.rs", "patch": "@@ -74,13 +74,13 @@ pub trait ValueDebugFormat {\n \n impl ValueDebugFormat for String {\n fn value_debug_format(&self, _depth: usize) -> ValueDebugFormatString<'_> {\n- ValueDebugFormatString::Sync(format!(\"{self:#?}\"))\n+ ...
2025-11-26T10:54:40
nodejs/node
977b5ac7ddc7ab0f866c39056f3e28e4b2e82645
85e8cc6ff3ca848dd07e9d32fa3f9ee941cf5f79
http2: fix DEP0194 message PR-URL: https://github.com/nodejs/node/pull/58669 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -753,7 +753,7 @@ function onGoawayData(code, lastStreamID, buf) {\n \n // TODO(aduh95): remove this in future semver-major\n const deprecateWeight = deprecateProperty('weight',\n- 'Priority signaling has been depre...
2025-06-11T13:47:31
facebook/react
bddb7c9b5c248c77fb52743cd319945d782bb7aa
f8f6e1a21a1cac64cf6faf666367d641b2d8b171
[compiler] Add fixture for objectexpr computed key bug (#31348) We were bailing out on complex computed-key syntax (prior to #31344) as we assumed that this caused bugs (due to inferring computed key rvalues to have `freeze` effects). This fixture shows that this bailout is unrelated to the underlying bug
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-object-expression-computed-key-modified-during-after-construction-hoisted-sequence-expr.expect.md", "patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+import {identity, mutate} from 'shared-runtime';\n+\...
2024-11-05T22:56:36
vercel/next.js
4deba0f6ea83a9a4b2ac28eb3e9a38651acfffcd
06b3c4452d36b4c2eaa9874e3a60c2e4efa6f79d
Try to improve typed-routes test flakyness (#86512) <!-- 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...
[ { "path": "test/e2e/app-dir/typed-routes/typed-links.test.ts", "patch": "@@ -11,11 +11,17 @@ describe('typed-links', () => {\n }\n \n it('should generate types for next/link', async () => {\n+ // To wait for the (dev) server to have started up.\n+ await next.render('/')\n+\n const dts = await ...
2025-11-26T09:09:04
golang/go
89dee70484669d546fff6ca29a4717368af351ff
8683bb846dfc1460c476cfed1696aad8e681926f
runtime: prioritize panic output over racefini For some reason CL 646198 uncovered #3934 and #20018 again, but only in race mode. It turns out that because racefini does not return, and racefini is called early after main returns, we would not properly wait for a concurrent panic to complete. This would result in fair...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -788,9 +788,6 @@ func TestPanicInlined(t *testing.T) {\n // Test for issues #3934 and #20018.\n // We want to delay exiting until a panic print is complete.\n func TestPanicRace(t *testing.T) {\n-\tif race.Enabled {\n-\t\tt.Skip(\"racefini exits program be...
2025-07-30T00:36:40
nodejs/node
8c17ceb38fd9bc550f6e5fedb25ad80120396aba
ccf105df2a0a528460abe16e5cba571e0c7e4f3c
module: allow cycles in require() in the CJS handling in ESM loader When --import is used, the ESM loader is used to handle even pure CJS entry points, and it can run into CJS module facades in the evaluating state when the parent CJS module is being evaluated. In this case it should be allowed, since the ESM <-> CJS ...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -26,6 +26,7 @@ const {\n ModuleWrap,\n kErrored,\n kEvaluated,\n+ kEvaluating,\n kEvaluationPhase,\n kInstantiated,\n kUninstantiated,\n@@ -338,8 +339,14 @@ class ModuleJob extends ModuleJobBase {\n return { __proto__: nul...
2025-06-11T09:33:16
facebook/react
527bcaa83d9d31e848ca1bea1a5b8532ab361527
e7e269b7265ec94929a53f4d402037261c87cf44
[compiler] patch: rewrite scope dep/decl in inlineJsxTransform (#31431) This bugfix is needed to land #31199 PropagateScopeDepsHIR infers scope declarations for the `inline-jsx-transform` test fixture (the non-hir version does not). These declarations must get the rewritten phi identifiers --- [//]: # (BEGIN SA...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Optimization/InlineJsxTransform.ts", "patch": "@@ -383,6 +383,30 @@ export function inlineJsxTransform(\n mapTerminalOperands(block.terminal, place =>\n handlePlace(place, blockId, inlinedJsxDeclarations),\n );\n+\n+ if (block.ter...
2024-11-05T20:27:39
golang/go
cbbd385cb863e4a0969de9846fdd80227ed91ad0
6aca04a73ac3ec20c39e4abe47a27370b286fc76
strconv: remove arch-specific decision in formatBase10 There is only one architecture-specific code segment left in formatBase10. Remove it for simplicity. The only affected system is ppc64le, which does add 10-20% to the runtime, but that's a ppc64le problem, not a strconv problem. Changing the "uint32" to "uint" ma...
[ { "path": "src/internal/strconv/itoa.go", "patch": "@@ -4,10 +4,7 @@\n \n package strconv\n \n-import (\n-\t\"internal/goarch\"\n-\t\"math/bits\"\n-)\n+import \"math/bits\"\n \n // FormatUint returns the string representation of i in the given base,\n // for 2 <= base <= 36. The result uses the lower-case l...
2025-10-29T16:09:18
vercel/next.js
e64be50becbdcd795a10921983fe48534802b338
a9b6491664083b163038d8e3cc43392a544ee989
Turbopack: fixup route hashes generation (#86502) Previously, it tried to compute the hash of some pages router endpoints, even they weren't in the graph (because there is no `pages` folder)
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -83,7 +83,10 @@ use crate::{\n instrumentation::InstrumentationEndpoint,\n middleware::MiddlewareEndpoint,\n pages::PagesProject,\n- route::{Endpoint, EndpointGroup, EndpointGroupKey, EndpointGroups, Endpoints, Route},\n+ route::{\n+...
2025-11-26T09:03:08
nodejs/node
12508853321ff00ebd2eec8070c5aa1342e8c7fb
bb991716c62bb991240361929931fcc1c9cc8229
test: update WPT for es-exceptions to 2f96fa1996 PR-URL: https://github.com/nodejs/node/pull/58640 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "test/fixtures/wpt/README.md", "patch": "@@ -34,7 +34,7 @@ Last update:\n - wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi\n - wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi\n - WebCryptoAPI: https://github.com/web-platform-test...
2025-06-11T08:55:52
facebook/react
e7e269b7265ec94929a53f4d402037261c87cf44
dd1a021bad0908d3ad7ba4314ca9a39173d7758f
[compiler] bugfix for hoistable deps for nested functions (#31345) `PropertyPathRegistry` is responsible for uniqueing identifier and property paths. This is necessary for the hoistability CFG merging logic which takes unions and intersections of these nodes to determine a basic block's hoistable reads, as a functi...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -1,5 +1,6 @@\n import {CompilerError} from '../CompilerError';\n import {inRange} from '../ReactiveScopes/InferReactiveScopeVariables';\n+import {printDependency} from '../ReactiveScopes/PrintRea...
2024-11-05T20:25:54
vercel/next.js
555838ecbe2cf49a2f1349870412e26806358426
bd2c871eb5cfe86739a09b6856652d61c7cc4ff0
examples: fix typos in cms-agilitycms (#82504) ## Summary Correct spelling errors in the cms-agilitycms example, including the image prop spelling and dependency imports. Bug Fixes: - Fix misspelled intersectionTreshold prop to intersectionThreshold in the Image component and its useInView configuration Enhancement...
[ { "path": "examples/cms-agilitycms/lib/api.ts", "patch": "@@ -3,7 +3,7 @@ import { CMS_LANG, CMS_CHANNEL } from \"./constants\";\n import { asyncForEach } from \"./utils\";\n export { validatePreview } from \"./preview\";\n import { normalizePosts } from \"./normalize\";\n-import { requireComponentDependanc...
2025-11-25T23:05:18
golang/go
235b4e729d22bbca25c372bcccbc2613035d37aa
d44db293f9efabac3abf718a02e7787fb961b63f
cmd/compile/internal/ssa: model right shift more precisely Prove currently checks for 0 sign bit extraction (x>>63) at the end of the pass, but it is more general and more useful (and not really more work) to model right shift during value range tracking. This handles sign bit extraction (both 0 and -1) but also makes...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"math\"\n \t\"math/bits\"\n \t\"slices\"\n+\t\"strings\"\n )\n \n type branch int\n@@ -132,7 +133,7 @@ type limit struct {\n }\n \n func (l limit) String() string {\n-\treturn fmt.Sprintf(\"sm,SM,um,UM=%d,%d,%d,%d\"...
2025-10-29T11:27:38
electron/electron
863faea542e82d18e1ec475fec04c32afa2b4f95
5aabb6bec5eed5775e106ae2c4b093b986d63ca4
chore: bump node to v22.11.0 (main) (#44530) * chore: bump node in DEPS to v22.11.0 * src: move evp stuff to ncrypto https://github.com/nodejs/node/pull/54911 * crypto: add Date fields for validTo and validFrom https://github.com/nodejs/node/pull/54159 * module: fix discrepancy between .ts and .js ht...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '133.0.6920.0',\n 'node_version':\n- 'v22.9.0',\n+ 'v22.11.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language":...
2025-01-22T17:16:26
facebook/react
156eab2f7b34fe78ef26a1752f95bfdc2092819d
b81e6dd2dade4c2d43d44ce7c9bfa4e3053fc949
Fork the "empty" prepareStackTrace case for Server builds (#31427) We don't actually want the source mapped version of `.stack` from errors because that would cause us to not be able to associate it with a source map in the UIs that need it. The strategy in browsers is more correct where the display is responsible ...
[ { "path": "packages/react-server/src/ReactFlightStackConfigV8.js", "patch": "@@ -9,18 +9,7 @@\n \n import type {ReactStackTrace} from 'shared/ReactTypes';\n \n-function prepareStackTrace(\n- error: Error,\n- structuredStackTrace: CallSite[],\n-): string {\n- const name = error.name || 'Error';\n- const ...
2024-11-05T20:05:04
nodejs/node
58e1cba200df9c1c70221d67d6038a7e7290b29c
238af6a8b546e69d2ebaf2cc220563da2dfd6b76
test: deflake async-hooks/test-improper-order on AIX PR-URL: https://github.com/nodejs/node/pull/58567 Fixes: https://github.com/nodejs/node/issues/58562 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Joy...
[ { "path": "test/async-hooks/test-improper-order.js", "patch": "@@ -51,8 +51,15 @@ if (process.argv[2] === 'child') {\n child.stderr.on('data', (d) => { errData = Buffer.concat([ errData, d ]); });\n child.stdout.on('data', (d) => { outData = Buffer.concat([ outData, d ]); });\n \n- child.on('close', co...
2025-06-03T11:07:24
vercel/next.js
6bfd81847fe9aff8d0dc968ce0dc536d1912c766
f585c0dd5f66986a60f538c94591156299ed0c83
Fix grammar and typos in typescript doc (#86513) <!-- 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 #...
[ { "path": "docs/01-app/03-api-reference/05-config/02-typescript.mdx", "patch": "@@ -35,7 +35,7 @@ Now, when editing files, the custom plugin will be enabled. When running `next b\n \n The TypeScript plugin can help with:\n \n-- Warning if the invalid values for [segment config options](/docs/app/api-referen...
2025-11-25T22:02:47
golang/go
d44db293f9efabac3abf718a02e7787fb961b63f
cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697
go/token: fix a typo in a comment Fixes #75632 Change-Id: I71f891eb837147b6ff818ec4b2133c8c07091931 GitHub-Last-Rev: 3eeeea2dc28ef13eaef0fee7abf00ad418218f83 GitHub-Pull-Request: golang/go#76117 Reviewed-on: https://go-review.googlesource.com/c/go/+/716440 Reviewed-by: t hepudds <thepudds1460@gmail.com> Reviewed-by: ...
[ { "path": "src/go/token/position.go", "patch": "@@ -511,7 +511,7 @@ func (s *FileSet) AddExistingFiles(files ...*File) {\n \t//\t}\n \t//\n \t// because all calls to AddFile must be in increasing order.\n-\t// AddExistingFilesFiles lets us augment an existing FileSet\n+\t// AddExistingFiles lets us augment ...
2025-10-30T13:46:44
electron/electron
5aabb6bec5eed5775e106ae2c4b093b986d63ca4
5e05dff9495aac2ac251dc45e9352a24451756ce
fix: potential crash in `chrome.tabs.update()` (#45276) fix: potential crash in chrome.tabs.update()
[ { "path": "shell/browser/extensions/api/tabs/tabs_api.cc", "patch": "@@ -651,7 +651,16 @@ bool TabsUpdateFunction::UpdateURL(const std::string& url_string,\n // will stay in the omnibox - see https://crbug.com/1085779.\n load_params.transition_type = ui::PAGE_TRANSITION_FROM_API;\n \n- web_contents_->G...
2025-01-22T16:02:29
facebook/react
b81e6dd2dade4c2d43d44ce7c9bfa4e3053fc949
33c7bd9ae3b4f998a477fe0ea8ebdf2f2ee8a144
[cleanup] Remove compiler runtime-compat fixture library (#31430) There's no real reason to keep this around anymore now that the compiler beta is released and we have validated that react-compiler-runtime is [usable by libraries](https://www.npmjs.com/package/react-compiler-runtime?activeTab=dependents). Let's ...
[ { "path": "compiler/fixtures/runtime-compat/README.md", "patch": "@@ -1 +0,0 @@\n-Reference library compiled with React Compiler.", "additions": 0, "deletions": 1, "language": "Markdown" }, { "path": "compiler/fixtures/runtime-compat/app-18/.gitignore", "patch": "@@ -1,24 +0,0 @@\n-#...
2024-11-05T19:14:39
nodejs/node
fe4aa9c502de24daea4b167c19dae8c9842ca9a0
905a722df3b757d969d33641a1a08c95f98faab6
2025-06-09, Version 24.2.0 (Current) Notable changes: doc: * add Filip Skokan to TSC (Rafael Gonzaga) https://github.com/nodejs/node/pull/58499 * deprecate `util.isNativeError` in favor of `Error.isError` (Miguel Marcondes Filho) https://github.com/nodejs/node/pull/58262 * deprecate passing an empty string to `...
[ { "path": "CHANGELOG.md", "patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.1.0\">24.1.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">24.2.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.1.0\">2...
2025-06-08T18:03:03
vercel/next.js
f585c0dd5f66986a60f538c94591156299ed0c83
c0e8e55a6692fec7dfbb2a0293ee97cf3403a413
docs: fix typos in packages (#82508) ## Summary Fix typos in package documentation and templates Documentation: - Correct spelling of “bindings” in [next-swc README](https://github.com/vercel/next.js/blob/canary/packages/next-swc/README.md) - Update [gitignore](https://github.com/vercel/next.js/blob/canary/packages/...
[ { "path": "packages/next-swc/README.md", "patch": "@@ -64,7 +64,7 @@ flowchart TD\n D(next-core) --> E(next-build)\n ```\n \n-- `next-custom-transforms`: provides next-swc specific SWC transform visitors. Turbopack, and the plain next-swc bidnings (`transform`) use these transforms. Since this is a bott...
2025-11-25T17:27:26
facebook/react
4d577fd216735384a262cbacdcbc5cda18626497
7c8e5e7ab8bb63de911637892392c5efd8ce1d0f
More Unit Tests for Refs in Hidden Subtrees (#31404) ## Summary While fixing ref lifecycles in hidden subtrees in https://github.com/facebook/react/pull/31379, @rickhanlonii noticed that we could also add more unit tests for other types of tags to prevent future regressions during code refactors. This PR adds...
[ { "path": "packages/react-refresh/src/__tests__/ReactFreshIntegration-test.js", "patch": "@@ -430,6 +430,131 @@ describe('ReactFreshIntegration', () => {\n await patch(code);\n });\n \n+ // @gate __DEV__ && enableActivity\n+ it('ignores ref for functional component in hidden subtree', async ...
2024-11-04T15:46:28
electron/electron
3ea623364b5c3b03d803884f612016221d7b5695
cf67dc8898a1dbc76b60c4f8b50bc794f0259f5a
feat: support global shortcuts via GlobalShortcutsPortal feature with ozone/wayland (#45171) * fix: backport patch to fix systemd unit activation in Chromium This backports a patch from Chromium, which fixes systemd unit activation. That is, a globalShortcuts feature that Chromium has needs to create a systemd unit a...
[ { "path": "docs/api/global-shortcut.md", "patch": "@@ -12,9 +12,17 @@ shortcuts.\n not have the keyboard focus. This module cannot be used before the `ready`\n event of the app module is emitted.\n \n+Please also note that it is also possible to use Chromium's\n+`GlobalShortcutsPortal` implementation, which...
2025-01-22T10:59:48
golang/go
cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697
1e5bb416d887b1cf2bd9b6a3b9f05222d44c3ffc
strconv: remove hand-written divide on 32-bit systems The compiler now generates code that is just as good. host: s7:GOARCH=386 goos: linux goarch: 386 pkg: strconv cpu: AMD Ryzen 9 7950X 16-Core Processor │ 8d2b4ce71b3 │ d5524a1f38c │ ...
[ { "path": "src/internal/strconv/itoa.go", "patch": "@@ -191,10 +191,6 @@ func formatBase10(a []byte, u uint64) int {\n \t\t// On most systems, the uint32 math is faster, but not all.\n \t\t// The decision here is based on benchmarking.\n \t\titoaPure64 = host64bit && goarch.GOARCH != \"amd64\" && goarch.GOA...
2025-10-28T14:22:54
nodejs/node
905a722df3b757d969d33641a1a08c95f98faab6
3aaa2ebe19712b0e77ea75793f0de08094997974
test_runner: support object property mocking PR-URL: https://github.com/nodejs/node/pull/58438 Fixes: https://github.com/nodejs/node/issues/58322 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "doc/api/test.md", "patch": "@@ -2048,6 +2048,87 @@ added:\n \n Resets the implementation of the mock module.\n \n+## Class: `MockPropertyContext`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+The `MockPropertyContext` class is used to inspect or manipulate the behavior\n+of property mocks created ...
2025-06-09T17:57:07
vercel/next.js
c0e8e55a6692fec7dfbb2a0293ee97cf3403a413
0dd4ba3fd657b161550d51eb96c7e2d93cde4968
Add test for external middleware rewrite with changed headers (#49606) ### What? Within Issue https://github.com/vercel/next.js/issues/48040 / PR #49487 the middleware proxy for external rewrites was fixed. Unfortunately, this does not work when you change the headers in your middleware (according to https://vercel.c...
[ { "path": "test/e2e/middleware-rewrites/app/middleware.js", "patch": "@@ -23,6 +23,44 @@ export async function middleware(request) {\n })\n }\n \n+ if (\n+ url.pathname.includes(\n+ '/middleware-external-rewrite-body-headers-return-body'\n+ )\n+ ) {\n+ const tmpHeaders = new Headers(re...
2025-11-25T12:37:37
facebook/react
7c8e5e7ab8bb63de911637892392c5efd8ce1d0f
16409d0560863dac41880bd308dea6efee46087a
Reenable lazy context propagation (#31405) Reverts facebook/react#31403 to reenable lazy context propagation The disabling was to produce a build that could help track down whether this flag is causing a possibly related bug in transitions but we don't intend to disable it just fix forward once we figure out what...
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -101,7 +101,7 @@ export const enableObjectFiber = false;\n \n export const enableTransitionTracing = false;\n \n-export const enableLazyContextPropagation = false;\n+export const enableLazyContextPropagation = true;\n \n // Expose unstable useCo...
2024-11-01T22:17:51
electron/electron
d7b568a1c0ab276fdec59c386b32711c08f5fa2f
fe9031eb23bfab177abdffd5fcfda7f5d709e507
ci: fix issue workflow failures (#45294)
[ { "path": ".github/workflows/branch-created.yml", "patch": "@@ -94,7 +94,7 @@ jobs:\n }))\n - name: Create Release Project Board\n if: ${{ steps.check-major-version.outputs.MAJOR }}\n- uses: dsanders11/project-actions/copy-project@8bc0bd421be3a2f9e96e160c4cb703f97cd3be55 # v...
2025-01-22T08:40:10
rust-lang/rust
86880c90c21fe294eabb931fb3e69b69564b1832
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Fix ICE in fn_delegation when child segment resolves to a trait When a delegation path like `reuse Trait::<> as bar4` has a child segment that resolves to a trait instead of a function, the compiler would ICE because `lower_generic_args_of_path` asserts that `self_ty` is `Some` when `has_self` is true and `parent` is ...
[ { "path": "compiler/rustc_hir_analysis/src/delegation.rs", "patch": "@@ -597,31 +597,35 @@ fn get_delegation_user_specified_args<'tcx>(\n .as_slice()\n });\n \n- let child_args = info.child_args_segment_id.and_then(get_segment).map(|(segment, def_id)| {\n- let parent_args = if let ...
2026-03-11T15:39:22
golang/go
1e5bb416d887b1cf2bd9b6a3b9f05222d44c3ffc
38317c44e71478220f842c7efd8078215825af92
cmd/compile: implement bits.Mul64 on 32-bit systems This CL implements Mul64uhilo, Hmul64, Hmul64u, and Avg64u on 32-bit systems, with the effect that constant division of both int64s and uint64s can now be emitted directly in all cases, and also that bits.Mul64 can be intrinsified on 32-bit systems. Previously, cons...
[ { "path": "src/cmd/compile/internal/arm/ssa.go", "patch": "@@ -245,6 +245,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = r\n \tcase ssa.OpARMADDS,\n+\t\tssa.OpARMADCS,\n \t\tssa.OpARMSUBS:\n \t\tr := v.Reg0()\n \t\tr1 := v.Args[0].Reg()", "addition...
2025-10-27T23:41:39
nodejs/node
3aaa2ebe19712b0e77ea75793f0de08094997974
66632648ba0d014eeb75845e322371718b0e4000
url: move bad port deprecation in legacy url to end-of-life Calling `url.parse()` with a URL that has a bad port will now throw an error instead of emitting a deprecation warning. It's been deprecated for ~ 3 years now. PR-URL: https://github.com/nodejs/node/pull/58617 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> R...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3548,6 +3548,9 @@ issued for `url.parse()` vulnerabilities.\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58617\n+ description: End-of-Life.\n - version:\n - v20.0.0\n pr-url: https://githu...
2025-06-07T15:01:15
vercel/next.js
fd7838e95dd4d07b3218d3eab069277614f59147
0daf66739d28439d009ec9e3b1bf76d3eaa0731e
[turbopack] Enable the filesystem cache for dev in canary builds (#85940) Enable the filesystem cache in canary builds in preparation for enabling it by default in the next release. It can still be disabled by explicitly setting the option to `false`. Flipping it for all users is deferred to #85975 so as not to inte...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -427,6 +427,8 @@ export interface ExperimentalConfig {\n \n /**\n * Enable filesystem cache for the turbopack dev server.\n+ *\n+ * Defaults to `true` in canary releases.\n */\n turbopackFileSystemCacheForDev?: boolean\n \n@@ ...
2025-11-25T07:22:08
facebook/react
16409d0560863dac41880bd308dea6efee46087a
b7e21579220042c0a60179e2f40f121684e637eb
temporarily disable lazy context propagation (#31403) disables lazy context propagation in oss to help determine if it is causing bugs in startTransition. Will reenable after cutting a canary release with this flag disabled
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -101,7 +101,7 @@ export const enableObjectFiber = false;\n \n export const enableTransitionTracing = false;\n \n-export const enableLazyContextPropagation = true;\n+export const enableLazyContextPropagation = false;\n \n // Expose unstable useCo...
2024-11-01T22:16:26
electron/electron
e1762e6e44e898783065765048711b4f1f16743b
9d32b6ddfc4892706d3eb2aa904b01ff3b486489
fix: consume the file permission callback when used (#45267) fixes 0e5fe3f regression
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -594,7 +594,7 @@ void FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess(\n content::GlobalRenderFrameHostId frame_id,\n base::OnceCallback<void(SensitiveEntryResult)> callback) {\n DCHE...
2025-01-21T17:59:38
rust-lang/rust
fe1f92af4b010113a5d4b9d596209ee4637d7045
90f7d7e07475697fa5b9eedd26d74f2a309b4d31
de-duplicate LayoutError formatting
[ { "path": "compiler/rustc_codegen_gcc/src/context.rs", "patch": "@@ -538,7 +538,7 @@ impl<'gcc, 'tcx> LayoutOfHelpers<'tcx> for CodegenCx<'gcc, 'tcx> {\n | LayoutError::InvalidSimd { .. }\n | LayoutError::ReferencesError(_) = err\n {\n- self.tcx.dcx().emit_fatal(respan(spa...
2026-03-09T16:54:10
golang/go
38317c44e71478220f842c7efd8078215825af92
3be9a0e014ee56f25ce4aac6091c617799fd26f2
crypto/internal/fips140/aes: fix CTR generator Fixed two issues in AVO based generator of amd64 asm code. 1. Updated golang.org/x/tools dependency to prevent build issue in Go 1.25. > golang.org/x/tools@v0.24.0/internal/tokeninternal/tokeninternal.go:64:9: > invalid array length -delta * delta (constant -256 of type...
[ { "path": "src/crypto/internal/fips140/aes/_asm/ctr/ctr_amd64_asm.go", "patch": "@@ -16,7 +16,7 @@ import (\n //go:generate go run . -out ../../ctr_amd64.s\n \n func main() {\n-\tPackage(\"crypto/aes\")\n+\tPackage(\"crypto/internal/fips140/aes\")\n \tConstraintExpr(\"!purego\")\n \n \tctrBlocks(1)", "a...
2025-10-22T14:26:30
nodejs/node
60155daf8da24a93987a89eeaad5c0335107cdeb
3b111eb3f592534a972700c1b358c7810777399e
doc: deprecate utilisNativeError in favor of ErrorisError PR-URL: https://github.com/nodejs/node/pull/58262 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-B...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -4016,6 +4016,20 @@ To make [`child_process.exec`][] invoke the default shell, either omit the\n `shell` option, or set it to a nullish value. If the intention is not to invoke\n a shell, use [`child_process.execFile`][] instead.\n \n+### DEP0197: `util.type...
2025-06-08T03:46:12
vercel/next.js
0daf66739d28439d009ec9e3b1bf76d3eaa0731e
39440fc8de5996114601a5d4967f441daefaa24c
Fix typed routes test expectations (#86487) Follow up to https://github.com/vercel/next.js/pull/86273 The typed routes test was checking for `/project/[slug]` in the `RedirectRoutes` type, but this route doesn't actually exist in the test fixture anymore. The test fixture only has redirects defined for `/blog/[catego...
[ { "path": "test/e2e/app-dir/typed-routes/typed-routes.test.ts", "patch": "@@ -6,7 +6,7 @@ type AppRoutes = \"/\" | \"/_shop/[[...category]]\" | \"/dashboard\" | \"/dashboard/set\n type AppRouteHandlerRoutes = \"/api-test\" | \"/api/docs/[...slug]\" | \"/api/shop/[[...category]]\" | \"/api/users/[id]\"\n typ...
2025-11-25T02:09:57
facebook/react
b7e21579220042c0a60179e2f40f121684e637eb
ea3ac586693014e882655728fc8396ecb1d6cf6e
[Flight] Handle errors during JSON stringify of console values (#31391) When we serialize debug info we should never error even though we don't currently support everything being serialized. Since it's non-essential dev information. We already handle errors in the replacer but not when errors happen in the JSON ...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -3146,6 +3146,65 @@ describe('ReactFlight', () => {\n expect(ownerStacks).toEqual(['\\n in App (at **)']);\n });\n \n+ // @gate enableServerComponentLogs && __DEV__\n+ it('replays logs with cyclic objects', async ()...
2024-10-31T20:47:51
electron/electron
9d32b6ddfc4892706d3eb2aa904b01ff3b486489
7a413ff2ad07a3fe6bd0e8f0019e1ab094300dcc
fix: `webContents.print()` with OOP printing (#45266) * fix: webContents.print() with OOP printing * Update patches/chromium/printing.patch Co-authored-by: Robo <hop2deep@gmail.com> --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -604,6 +604,19 @@ index 402be34ab888cdf834d0fb65de0832e9a8021ced..82ddc92a35d824926c30279e660cc4e8\n }\n \n #if BUILDFLAG(IS_CHROMEOS)\n+diff --git a/chrome/browser/printing/printer_query_oop.cc b/chrome/browser/printing/printer_query_oop.cc\n+ind...
2025-01-21T16:39:21
facebook/react
ea3ac586693014e882655728fc8396ecb1d6cf6e
603e6108f39c6663ec703eed34a89ff1bf0cb70c
Fix Ref Lifecycles in Hidden Subtrees (#31379) ## Summary We're seeing certain situations in React Native development where ref callbacks in `<Activity mode="hidden">` are sometimes invoked exactly once with `null` without ever being called with a "current" value. This violates the contract for refs because re...
[ { "path": "packages/react-reconciler/src/ReactFiberCommitWork.js", "patch": "@@ -1325,7 +1325,9 @@ function commitDeletionEffectsOnFiber(\n }\n case ScopeComponent: {\n if (enableScopeAPI) {\n- safelyDetachRef(deletedFiber, nearestMountedAncestor);\n+ if (!offscreenSubtreeWasHidd...
2024-10-31T20:24:45
golang/go
3be9a0e014ee56f25ce4aac6091c617799fd26f2
d2c5fa081445bf1ebea013c2b5531ffce690a923
go/types, types: proceed with correct (invalid) type in case of a selector error Fixes #76103. Change-Id: Idc2f5d1d7aeb4a9b468e7c268e3bf5b85d1c3777 Reviewed-on: https://go-review.googlesource.com/c/go/+/716300 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-R...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -931,6 +931,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName\n \n Error:\n \tx.mode = invalid\n+\tx.typ = Typ[Invalid]\n \tx.expr = e\n }\n ", "additions": 1, "deletions": 0, "language": "Go" ...
2025-10-29T22:22:14
rust-lang/rust
94361fba3e9b26ca9040625a5de6d6ed1724f4cf
a63150b9cb14896fc22f9275c32682423de94d48
interpret: go back to regular string interpolation for error messages
[ { "path": "compiler/rustc_abi/src/lib.rs", "patch": "@@ -1000,20 +1000,6 @@ pub enum AlignFromBytesError {\n TooLarge(u64),\n }\n \n-impl AlignFromBytesError {\n- pub fn diag_ident(self) -> &'static str {\n- match self {\n- Self::NotPowerOfTwo(_) => \"not_power_of_two\",\n- ...
2026-03-09T14:38:21
vercel/next.js
cc3c9f630e1803d177bcba516d8b20dcaeb24bb5
4d7d9abc0886583f365db0f4e55258847915ff51
Turbopack: bail instead of panic (#86470) Eventual consistency strikes again We already had the infrastructure here to store a result in the swc visitor.
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -1316,7 +1316,8 @@ async fn merge_modules(\n // corresponding export in the module that exports it.\n if let Some(&module) = self.reverse_module_contexts.get(ctxt) {\n let eval_context_exports ...
2025-11-24T16:27:04
nodejs/node
d79d550657128894e428cf524942e1698f05bcf2
3c351c272fcae369434b3cc0cc58284eb6c02279
deps: use proper C standard when building libuv Upstream libuv commits: https://github.com/libuv/libuv/commit/bb706f5fe71827f667f0bce532e95ce0698a498d https://github.com/libuv/libuv/commit/018363a163e8901ac2b90100ee436d9472847ffa libuv was updated to 1.51.0 in 0315283cbdb7745c7e35bb49ac48b0ebcadcb228. v1.51.0 was the...
[ { "path": "deps/uv/uv.gyp", "patch": "@@ -190,7 +190,7 @@\n '-Wno-unused-parameter',\n '-Wstrict-prototypes',\n ],\n- 'OTHER_CFLAGS': [ '-g', '--std=gnu89' ],\n+ 'OTHER_CFLAGS': [ '-g', '--std=gnu11' ],\n },\n 'conditions': [\n [ 'OS==\"win\"', {...
2025-06-07T15:45:06
electron/electron
81d12fa452f63193fa0f3b483c308eb932c48e90
83666ddc3613b4633ace754bfbd32020e6dc4aba
build: fix clang-format duplicate message (#45235)
[ { "path": "script/run-clang-format.py", "patch": "@@ -369,9 +369,6 @@ def main():\n patch_file.close()\n os.unlink(patch_file.name)\n else:\n- print(\n- 'To patch these files, run:',\n- f\"$ git apply {patch_file.name}\", sep='\\n')\n file...
2025-01-20T10:05:40
rust-lang/rust
d81cc6846c6aee24270390ed9c0df229d3ce488a
595f14b02216a127df89326d03a7f4e22cd4067f
fix: add EII function aliases to exported symbols
[ { "path": "compiler/rustc_codegen_ssa/src/back/symbol_export.rs", "patch": "@@ -199,6 +199,14 @@ fn exported_non_generic_symbols_provider_local<'tcx>(\n }))\n }\n \n+ symbols.extend(sorted.iter().flat_map(|&(&def_id, &info)| {\n+ tcx.codegen_fn_attrs(def_id).foreign_item_symbol_aliases...
2026-03-11T12:41:57
facebook/react
0bc30748730063e561d87a24a4617526fdd38349
02c0e824e462c7f81ba79d95cfc41c89c6d81b95
Capture the source and not just the stack on first seen error (#31367) Otherwise we can't capture the owner stack at the right location when there's a rethrow.
[ { "path": "packages/react-noop-renderer/src/createReactNoop.js", "patch": "@@ -81,6 +81,8 @@ type TextInstance = {\n type HostContext = Object;\n type CreateRootOptions = {\n unstable_transitionCallbacks?: TransitionTracingCallbacks,\n+ onUncaughtError?: (error: mixed, errorInfo: {componentStack: string}...
2024-10-28T20:59:38
nodejs/node
68bac3d798290ad3b4cc14963fb10dc91a31a4d0
0e8ae9185573f01b2c80ddf3d271e4a3383e440c
fs: fix cp handle existing symlinks PR-URL: https://github.com/nodejs/node/pull/58476 Fixes: https://github.com/nodejs/node/issues/58468 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
[ { "path": "lib/internal/fs/cp/cp.js", "patch": "@@ -54,6 +54,7 @@ const {\n resolve,\n sep,\n } = require('path');\n+const fsBinding = internalBinding('fs');\n \n async function cpFn(src, dest, opts) {\n // Warn about using preserveTimestamps on 32-bit node\n@@ -344,7 +345,10 @@ async function onLink(...
2025-05-27T23:56:50
vercel/next.js
7e093afb8cb1324b2aae6a16fd8b2b6e3cc577a5
d45fc5ad95eeee2218f29c0bfbf1310189ab7781
Eslint: Improve Google Tag manager third parties message (#51903) Note: new PR description written by @timneutkens ## What? Improves the detection of Google Tag Manager vs Google Analytics. As indicated by the author of this PR it was confusing that when you have Google Tag Manager set up it gives you an error mess...
[ { "path": "errors/next-script-for-ga.mdx", "patch": "@@ -1,8 +1,8 @@\n ---\n-title: Using Google Analytics with Next.js (through `next/script`)\n+title: Using Google Analytics with Next.js (through `@next/third-parties/google`)\n ---\n \n-> Prefer `next/script` component when using the inline script for Goo...
2025-11-24T13:29:52
electron/electron
83666ddc3613b4633ace754bfbd32020e6dc4aba
fa5de40f862179875eab584f4f21cebcafd4aa33
fix: page scaling in silent mode printing (#45218)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -653,7 +653,7 @@ index 6809c4576c71bc1e1a6ad4e0a37707272a9a10f4..3aad10424a6a31dab2ca393d00149ec6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/components/...
2025-01-20T10:05:15
rust-lang/rust
3399ed3c9a25d51b777f10ac7dafc4bbb64eff35
b2fabe39bde5174e8d728bb85f2b8d0572c35b74
Simplify `type_of_opaque`. There is a bunch of complexity supporting the "cannot check whether the hidden type of opaque type satisfies auto traits" error that shows up in `tests/ui/impl-trait/auto-trait-leak.rs`. This is an obscure error that shows up in a single test. If we are willing to downgrade that error messag...
[ { "path": "compiler/rustc_errors/src/lib.rs", "patch": "@@ -371,8 +371,6 @@ pub enum StashKey {\n MaybeFruTypo,\n CallAssocMethod,\n AssociatedTypeSuggestion,\n- /// Query cycle detected, stashing in favor of a better error.\n- Cycle,\n UndeterminedMacroResolution,\n /// Used by `P...
2026-03-05T06:30:22
golang/go
9bbda7c99d2c176592186d230dab013147954bda
915c1839fe76aef4bea6191282be1e48ef1c64e2
cmd/compile: make prove understand div, mod better This CL introduces new divisible and divmod passes that rewrite divisibility checks and div, mod, and mul. These happen after prove, so that prove can make better sense of the code for deriving bounds, and they must run before decompose, so that 64-bit ops can be lowe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -4,7 +4,7 @@\n \n // This file contains rules to decompose builtin compound types\n // (complex,string,slice,interface) into their constituent\n-// types. These rules work together with the decomposeBuiltIn\n+// types. These rules work ...
2025-10-23T02:22:51
nodejs/node
0e8ae9185573f01b2c80ddf3d271e4a3383e440c
49679ddd9833dbfd20ef7af1bf8bd3d67e41993f
fs: fix cpSync handle existing symlinks PR-URL: https://github.com/nodejs/node/pull/58476 Fixes: https://github.com/nodejs/node/issues/58468 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
[ { "path": "lib/internal/fs/cp/cp-sync.js", "patch": "@@ -196,7 +196,9 @@ function onLink(destStat, src, dest, verbatimSymlinks) {\n if (!isAbsolute(resolvedDest)) {\n resolvedDest = resolve(dirname(dest), resolvedDest);\n }\n- if (isSrcSubdir(resolvedSrc, resolvedDest)) {\n+ const srcIsDir = fsBin...
2025-05-27T02:46:11
vercel/next.js
d45fc5ad95eeee2218f29c0bfbf1310189ab7781
88d774f9b5308c09780222b6e701cc27099b9d32
examples: fix typos (#82506) ## Summary Fix typos in code, styles, and documentation across multiple example projects Chores: - Correct variable name typo in the with-slate example (edtorState→editorState) - Fix CSS/SASS class name misspellings (populer→popular, Serach→Search, serachSelector→searchSelector) - Update...
[ { "path": "examples/blog-starter/src/app/_components/theme-switcher.tsx", "patch": "@@ -101,7 +101,7 @@ const Script = memo(() => (\n ));\n \n /**\n- * This component wich applies classes and transitions.\n+ * This component applies classes and transitions.\n */\n export const ThemeSwitcher = () => {\n r...
2025-11-24T13:04:41
facebook/react
fe04dbcbc4185d7c9d7afebbe18589d2b681a88c
cae764ce81b1bd6c418e9e23651794b6b09208e8
[compiler] Fix to ref access check to ban ref?.current ghstack-source-id: ea417a468eac2607ce8d1dddcb2e9581e1c4db27 Pull Request resolved: https://github.com/facebook/react/pull/31360
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts", "patch": "@@ -214,16 +214,24 @@ function joinRefAccessTypes(...types: Array<RefAccessType>): RefAccessType {\n return b;\n } else if (b.kind === 'None') {\n return a;\n- } else ...
2024-10-25T23:47:19
electron/electron
fa5de40f862179875eab584f4f21cebcafd4aa33
7d05fb2a1b236e8ed67ee0b47a852b447ddcee1b
fix: two possible FSA crashes (#45233) * 5786874: Change Observer: Fix crash when navigating to new page https://chromium-review.googlesource.com/c/chromium/src/+/5786874 * 5794141: Change Observer: Fix Get*PermissionGrant crash https://chromium-review.googlesource.com/c/chromium/src/+/5794141
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -461,7 +461,7 @@ FileSystemAccessPermissionContext::GetReadPermissionGrant(\n // but that is exactly what we want.\n auto& origin_state = active_permissions_map_[origin];\n auto*& existing_grant = origi...
2025-01-20T09:23:57
rust-lang/rust
be78a0d629bd6058c2fd3b9b405a8484434ebcfb
6084bf541b23251b9c5b06466e075d176a9445e0
avoid ICE when EII target resolves to a constructor remove span_delayed_bug
[ { "path": "compiler/rustc_hir_analysis/src/check/compare_eii.rs", "patch": "@@ -9,6 +9,7 @@ use std::iter;\n use rustc_data_structures::fx::FxIndexSet;\n use rustc_errors::{Applicability, E0806, struct_span_code_err};\n use rustc_hir::attrs::EiiImplResolution;\n+use rustc_hir::def::DefKind;\n use rustc_hir:...
2026-03-08T14:04:49
golang/go
da3fb90b231ef9c70e7eb927585ab49593cc25f1
9035f7aea538c25a11420bce7cbd8225efc204e7
crypto/internal/fips140/bigmod: fix extendedGCD comment Change-Id: I6a6a6964642991dc46929bfc47e411bb7563e425 Reviewed-on: https://go-review.googlesource.com/c/go/+/716080 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.c...
[ { "path": "src/crypto/internal/fips140/bigmod/nat.go", "patch": "@@ -1088,7 +1088,7 @@ func (x *Nat) GCDVarTime(a, b *Nat) (*Nat, error) {\n \treturn x.set(u), nil\n }\n \n-// extendedGCD computes u and A such that a = GCD(a, m) and u = A*a - B*m.\n+// extendedGCD computes u and A such that u = GCD(a, m) = ...
2025-10-08T11:43:08
nodejs/node
49679ddd9833dbfd20ef7af1bf8bd3d67e41993f
0c6e16bc849450a450a9d2dbfbf6244c04f90642
Revert "benchmark: fix broken fs.cpSync benchmark" This reverts commit 52430b9839c31f846a788125efda82887d115e21. PR-URL: https://github.com/nodejs/node/pull/58476 Fixes: https://github.com/nodejs/node/issues/58468 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
[ { "path": "benchmark/fs/bench-cpSync.js", "patch": "@@ -8,10 +8,7 @@ const tmpdir = require('../../test/common/tmpdir');\n const bench = common.createBenchmark(main, {\n n: [1, 100, 10_000],\n dereference: ['true', 'false'],\n- // When `force` is `true` the `cpSync` function is called twice the second\...
2025-05-27T23:57:34
vercel/next.js
88d774f9b5308c09780222b6e701cc27099b9d32
acac0b05675a5f4be2ad326474a219e019f71d46
docs: fix getInitialProps execution behavior during navigation (#86387) Closes https://github.com/vercel/next.js/issues/86386 <!-- 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...
[ { "path": "docs/02-pages/04-api-reference/03-functions/get-initial-props.mdx", "patch": "@@ -37,7 +37,7 @@ export default function Page({ stars }) {\n >\n > - Data returned from `getInitialProps` is serialized when server rendering. Ensure the returned object from `getInitialProps` is a plain `Object`, and ...
2025-11-24T12:58:42
facebook/react
cae764ce81b1bd6c418e9e23651794b6b09208e8
d19ba8ecdd04639630d0ddcf6ed4ce316482a58d
Revert "[Re-land] Make prerendering always non-blocking (#31268)" (#31355) This reverts commit 6c4bbc783286bf6eebd9927cb52e8fec5ad4dd74. It looked like the bug we found on the original land was related to broken product code. But through landing #31268 we found additional bugs internally. Since disabling the feat...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js", "patch": "@@ -744,7 +744,7 @@ describe('ReactDOMFiberAsync', () => {\n // Because it suspended, it remains on the current path\n expect(div.textContent).toBe('/path/a');\n });\n- assertLog(gate('enableSiblingPrerende...
2024-10-25T16:17:07
electron/electron
7d05fb2a1b236e8ed67ee0b47a852b447ddcee1b
51a249f380c2840464a9523e548bd942edc779ff
fix: broken OOP `window.print()` on macOS/Linux (#45214) fix: broken OOP printing on macOS/Linux
[ { "path": "shell/utility/electron_content_utility_client.cc", "patch": "@@ -31,6 +31,11 @@\n #include \"components/services/print_compositor/public/mojom/print_compositor.mojom.h\" // nogncheck\n #endif // BUILDFLAG(ENABLE_PRINTING)\n \n+#if BUILDFLAG(ENABLE_OOP_PRINTING)\n+#include \"chrome/services/prin...
2025-01-20T09:23:44
golang/go
81afd3a59be1a3f343bf2b9d6665cd0fc825c6ba
ea50d61b667276bfd3449d5e172adc4b92f72290
cmd/compile: extend ppc64 MADDLD to match const ADDconst & MULLDconst Fixes #76084 I was focused on restoring the old behavior and fixing the failing test/codegen/arithmetic.go:MergeMuls2 test. It is probable this same bug hides elsewhere in this file. Change-Id: I17f2ee6b97a1e33b8132648d9d750749d006f7e0 Reviewed-o...
[ { "path": "src/cmd/compile/internal/ssa/_gen/PPC64.rules", "patch": "@@ -18,7 +18,10 @@\n (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)\n \n // Combine 64 bit integer multiply and adds\n-(ADD l:(MULLD x y) z) && buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l) => (MADDLD x y z)\n+(ADD ...
2025-10-28T09:11:03
facebook/react
d19ba8ecdd04639630d0ddcf6ed4ce316482a58d
1631855f4303cc8585205307a56c69e3b7248bb4
[react-compiler-runtime] Support React 17 peer dependency (#31336) <!-- 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 p...
[ { "path": "compiler/packages/react-compiler-runtime/package.json", "patch": "@@ -9,7 +9,7 @@\n \"src\"\n ],\n \"peerDependencies\": {\n- \"react\": \"^18.2.0 || ^19.0.0\"\n+ \"react\": \"^17.0.0 || ^18.0.0 || ^19.0.0\"\n },\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config...
2024-10-24T18:08:57
vercel/next.js
acac0b05675a5f4be2ad326474a219e019f71d46
8eb7f494267c414886e4edfb894ff5c0499165c0
Fix compilation of exported server functions (#86296) With this PR we are restructuring how the Next.js compiler transforms server function modules (`'use server'` or `'use cache'` directive at the top of the file). The workaround for skipping the registration of exported `'use cache'` functions is removed. All exp...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -16,7 +16,7 @@ use rustc_hash::{FxHashMap, FxHashSet};\n use serde::Deserialize;\n use sha1::{Digest, Sha1};\n use swc_core::{\n- atoms::{atom, Atom},\n+ atoms::{atom, Atom, Wtf8Atom},\n common::{\n co...
2025-11-24T12:54:17
electron/electron
0e5fe3fa604e6eef5e7c73739f64391fafe5143b
6953f5505f76e5faa72c8a27b826b8d83d28eddc
fix: `getAsFileSystemHandle` failure when drag-dropping two directories (#45234) fix: drag-dropping two directories
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -588,7 +588,7 @@ void FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess(\n content::GlobalRenderFrameHostId frame_id,\n base::OnceCallback<void(SensitiveEntryResult)> callback) {\n DCHE...
2025-01-20T08:54:12
facebook/react
2dc5bebd46d5254f9a02fd58d408acb33c288639
b4cbdc5a7c18672807e119692f99f1cf751242fd
Fix error handling in `resolveClientReference` (#31332) When a React Server Consumer Manifest does not include an entry for a client reference ID, we must not try to look up the export name (or `'*'`) for the client reference. Otherwise this will fail with `TypeError: Cannot read properties of undefined (reading '....
[ { "path": "packages/react-server-dom-turbopack/src/client/ReactFlightClientConfigBundlerNode.js", "patch": "@@ -62,19 +62,19 @@ export function resolveClientReference<T>(\n metadata: ClientReferenceMetadata,\n ): ClientReference<T> {\n const moduleExports = bundlerConfig[metadata[ID]];\n- let resolvedM...
2024-10-23T15:36:40
golang/go
bd4dc413cd80d3c160e875686e1be1eae5d48d4b
30c047d0d06cdbc2983e86daaa3b0bc1afb86706
cmd/compile: don't optimize away a panicing interface comparison We can't do direct pointer comparisons if the type is not a comparable type. Fixes #76008 Change-Id: I1687acff21832d2c2e8f3b875e7b5ec125702ef3 Reviewed-on: https://go-review.googlesource.com/c/go/+/713840 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -2626,7 +2626,7 @@ func rewriteStructStore(v *Value) *Value {\n \n // isDirectType reports whether v represents a type\n // (a *runtime._type) whose value is stored directly in an\n-// interface (i.e., is pointer or pointer-like).\n+// interf...
2025-10-22T17:13:44
electron/electron
6953f5505f76e5faa72c8a27b826b8d83d28eddc
45f90cd5ddcdf748f692fd877d9120d99d106b58
refactor: remove InspectableWebContentsViewMac in favor of the Views version (#44628) * refactor: remove InspectableWebContentsViewMac in favor of the Views version * cherry-pick: refactor: remove InspectableWebContentsViewMac in favor of the Views version (#41326) commit e67ab9a93dadccecff30de50ab4555191c30b6c4...
[ { "path": "filenames.gni", "patch": "@@ -159,12 +159,8 @@ 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...
2025-01-17T15:21:10
vercel/next.js
0469aec433d070f7e62618831baadb611b513029
bb65e78ae017ab919635d98fa36ee1f0972973a7
Revert "Turbopack: JsAnalyzer parse AssignExpr (#83962)" (#86420) This reverts commit 2d80f1a249634ebcd5a84ba4f8b0763a91f4a560. <!-- 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 t...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs", "patch": "@@ -800,8 +800,10 @@ impl EvalContext {\n ..\n }) => JsValue::WellKnownObject(WellKnownObjectKind::ImportMeta),\n \n- Expr::Assign(AssignExpr { op, right, .. }) => match op {\n- ...
2025-11-24T09:10:51
facebook/react
b4cbdc5a7c18672807e119692f99f1cf751242fd
9daabc0bf97805be23f6131be4d84d063a3ff446
remove terser from react-compiler-runtime build (#31326) ## Summary This fixes a minor nit I have about the `react-compiler-runtime` package in that the published code is minified. I assume most consumers will minify their own bundles so there's no real advantage to minifying it as part of the build. For my p...
[ { "path": "compiler/packages/react-compiler-runtime/rollup.config.js", "patch": "@@ -11,7 +11,6 @@ import commonjs from '@rollup/plugin-commonjs';\n import json from '@rollup/plugin-json';\n import path from 'path';\n import process from 'process';\n-import terser from '@rollup/plugin-terser';\n import bann...
2024-10-22T23:49:10
rust-lang/rust
accbfccd597b332a36d6d22335d1d7d8e9507619
d1c79458b5d13bd0179d7dbafd5ca4ea9ae3e6aa
Unconditionally error when trying to create a const coroutine
[ { "path": "compiler/rustc_ast_lowering/src/expr.rs", "patch": "@@ -231,6 +231,7 @@ impl<'hir> LoweringContext<'_, 'hir> {\n e.id,\n expr_hir_id,\n *coroutine_kind,\n+ *constness,\n fn_decl,...
2026-03-11T07:22:26
golang/go
30c047d0d06cdbc2983e86daaa3b0bc1afb86706
46e5e2b09a6df80a3b6472c5f7ca5739365b6676
cmd/compile: extend loong MOV*idx rules to match ADDshiftLLV Fixes #76085 I was focused on restoring the old behavior and fixing the failing test/codegen/floats.go:index* tests. It is probable this same bug hides elsewhere in this file. Change-Id: Ibb2cb2be5c7bbeb5eafa9705d998a67380f2b04c Reviewed-on: https://go-re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -611,15 +611,24 @@\n (MOVWstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVWstore [off] {sym} ptr x mem)\n \n // register indexed load\n-(MOVVload [off] {sym} (ADDV ptr idx) mem) && off == 0 && sym == nil => (MOVVloadidx ptr idx mem)\n-...
2025-10-28T09:48:18
nodejs/node
d327cbea9aef5b97bb456e2a55e9463dc81b571c
9e35ddca4484224606aa4ac1c13e02d73fadc3ac
deps: V8: cherry-pick 249de887a8d3 Original commit message: [explicit-resource-management] Fix parsing for (using of=null;;) Apparently `using of` is allowed in the initializer position of C-style for loops. See https://github.com/tc39/proposal-explicit-resource-management/issues/248 Bug: 42203...
[ { "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.12',\n+ 'v8_embedder_string': '-node.13',\n \n ##### V8 defaults for Node.js #####\n...
2025-06-05T07:51:08
electron/electron
6f7999ad0d09c7076f1878ba6e327b354425735e
d829ee314530f2e7ba664a0df3d3bb7764e0078d
fix: `session.clearData` `avoidClosingConnections` default to false (#45187)
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -160,7 +160,8 @@ uint32_t GetQuotaMask(const std::vector<std::string>& quota_types) {\n return quota_mask;\n }\n \n-constexpr BrowsingDataRemover::DataType kClearDataTypeAll = ~0ULL;\n+constexpr BrowsingDataRemover::DataType kClearDataTyp...
2025-01-15T16:38:50
facebook/react
9daabc0bf97805be23f6131be4d84d063a3ff446
ae90522bc6ea80d87f22e845024dc82e2c05e3d5
`react-hooks/rules-of-hooks`: Add support for `do/while` loops (#28714) <!-- 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 submittin...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -755,6 +755,30 @@ const tests = {\n `,\n errors: [loopError('useHookInsideLoop')],\n },\n+ {\n+ code: normalizeIndent`\n+ // Invalid because it's dangerous and might not warn othe...
2024-10-22T20:07:10
vercel/next.js
bb65e78ae017ab919635d98fa36ee1f0972973a7
f0af7cd02bb14b7e1cba9eb94c005e7ef582d9cf
Turbopack: avoid embedding deployment ID into the turbopack runtime (#86370) ### What? * add support for multiple options for chunk suffix * Use FromScriptSrc chunk suffix to avoid depending on deployment id * fix passing chunk suffix to WebWorkers initial chunks
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1144,7 +1144,6 @@ impl Project {\n client_root: self.client_relative_path().owned().await?,\n client_root_to_root_path: rcstr!(\"/ROOT\"),\n asset_prefix: self.next_config().computed_asset_prefix(),\n- c...
2025-11-24T08:02:58