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 | b5c662b30ba76e264fabf9411d6c8a5c47f0e032 | f7ea163a1c1b3e06a679f038d3a44e3e38bd99b1 | Turbopack: flatten trace when it reaches cut off depth (#88118)
### What?
Previously when the trace depth reaches 150 it ignored the spans and therefore lost time.
This fixes it by flattening spans instead of dropping them. This keeps the time, but still restricts the depth.
Also limits depth to 80 instead of 150 w... | [
{
"path": "turbopack/crates/turbopack-trace-server/src/store.rs",
"patch": "@@ -16,7 +16,11 @@ use crate::{\n \n pub type SpanId = NonZeroUsize;\n \n-const CUT_OFF_DEPTH: u32 = 150;\n+/// This max depth is used to avoid deep recursion in the span tree,\n+/// which can lead to stack overflows and performance... | 2026-01-08T10:06:38 |
golang/go | f87aaec53d943eb2b5a6b9be9e4af284543c4004 | dbd2ab999262e1c9304d0591d6883f83b09c8570 | cmd/compile: fix integer overflow in prove pass
The detectSliceLenRelation function incorrectly deduced lower bounds
for "len(s) - i" without checking if the subtraction could overflow
(e.g. when i is negative). This led to incorrect elimination of
bounds checks.
Fixes: #76355
Change-Id: I30ada0e5f1425929ddd8ae1b66e5... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2051,8 +2051,11 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\treturn\n \t}\n \n-\tslice := v.Args[0].Args[0]\n \tindex := v.Args[1]\n+\tif !ft.isNonNegative(index) {\n+\t\treturn\n+\t}\n+\tslice := v.Args[0].Args[0]\n \n \t... | 2025-11-19T10:17:47 |
facebook/react | 10a4c88f58233074f293ab387b73e96b67192538 | a4b2d0d51854b10ca0346ab8977da4975d2a7498 | [compiler] Handle TSInstantiationExpression in lowerExpression (#32302)
Fix #31745 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -2528,6 +2528,7 @@ function lowerExpression(\n loc: expr.node.loc ?? GeneratedSource,\n };\n }\n+ case 'TSInstantiationExpression':\n case 'TSNonNullExpression': {\n let expr = exprPath... | 2025-02-03T16:41:04 |
rust-lang/rust | d9bd396c29b25b4af2f2e40a1d35732eff55cb49 | 0b5b096ce8c235fb028666378e9ea8411261c552 | Workaround for incorrect target cpu rename in Cranelift | [
{
"path": "src/lib.rs",
"patch": "@@ -345,7 +345,8 @@ fn build_isa(sess: &Session, jit: bool) -> Arc<dyn TargetIsa + 'static> {\n if target_triple.architecture == target_lexicon::Architecture::X86_64 {\n // Only set the target cpu on x86_64 as Cranelift is missing\n ... | 2026-03-17T10:26:29 |
electron/electron | 1730062c8f48834312f5766f16d63045a3506182 | 09135443a04c2155198adc29515c1f9b247ff52e | fix: flicker and ghosting in transparent windows on macOS (#46353)
* fix: transparent flicker on MAS
* Gate condition on `IsTranslucent` instead | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -196,6 +196,9 @@ static bool FromV8(v8::Isolate* isolate,\n params.type = views::Widget::InitParams::TYPE_WINDOW;\n // Allow painting before shown, to be later disabled in ElectronNSWindow.\n params.headless_mode = true;\n+ if (IsTranslucen... | 2025-03-31T23:12:35 |
nodejs/node | 134625d76139b4b3630d5baaf2efccae01ede564 | 09c906ade8783d8775a7dd3d2a117e5137fefc16 | doc: fix grammar in global dispatcher usage
Add missing preposition "by" to clarify how to change the global
dispatcher.
PR-URL: https://github.com/nodejs/node/pull/59344
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/globals.md",
"patch": "@@ -537,7 +537,7 @@ The dispatcher must be compatible with `undici`'s\n fetch(url, { dispatcher: new MyAgent() });\n ```\n \n-It is possible to change the global dispatcher in Node.js installing `undici` and using\n+It is possible to change the global dispatcher in ... | 2025-08-06T03:53:35 |
vercel/next.js | f24e66adac4972a9b985ce57a6dbc821343ae518 | 507194aa64c6f0ef21a07f40e1f2a4f862154bd9 | Turbopack: include children count in "task execution completed" span (#87318)
<!-- 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 ma... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1773,7 +1773,11 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // at the start of every step.\n \n #[cfg(not(feature = \"trace_task_details\"))]\n- let _span = tracing::trace_span!(\"task exec... | 2026-01-08T09:09:57 |
golang/go | dbd2ab999262e1c9304d0591d6883f83b09c8570 | b9d86baae34197004a175c5c02b901240056a250 | cmd/compile/internal: fix typos
Change-Id: I5974f5b460f827877f49f69aff01ce5042f511c0
GitHub-Last-Rev: 552d12c0e609a65481381191be6bbd9f353120f5
GitHub-Pull-Request: golang/go#76398
Reviewed-on: https://go-review.googlesource.com/c/go/+/722900
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice... | [
{
"path": "src/cmd/compile/internal/ir/expr.go",
"patch": "@@ -681,7 +681,7 @@ type TypeAssertExpr struct {\n \n \t// When set to true, if this assert would panic, then use a nil pointer panic\n \t// instead of an interface conversion panic.\n-\t// It must not be set for type asserts using the commaok form.... | 2025-11-21T16:08:00 |
nodejs/node | b8e643259ee1baccb36518221c3215984e003eb4 | f7c2a7ed4a888aad50c9075c8aec531a27b94c22 | zlib: add dictionary support to zstdCompress and zstdDecompress
Adds optional dictionary support to zlib’s zstdCompress and
zstdDecompress APIs. This enables better compression ratios when the
dictionary matches expected input structure or content patterns.
The implementation allows passing a `dictionary` buffer thro... | [
{
"path": "doc/api/zlib.md",
"patch": "@@ -1069,6 +1069,9 @@ Each Zstd-based class takes an `options` object. All options are optional.\n * `maxOutputLength` {integer} Limits output size when using\n [convenience methods][]. **Default:** [`buffer.kMaxLength`][]\n * `info` {boolean} If `true`, returns an o... | 2025-08-04T16:13:57 |
electron/electron | 09135443a04c2155198adc29515c1f9b247ff52e | fcd836e34f0382e9fa09541a4c2780169ec99efe | feat: Corner Smoothing CSS rule (Reland) (#46278)
* feat: Corner Smoothing CSS rule (Reland)
Reland of #45185
* Fix patch conflicts
* fixup! Fix patch conflicts
* Update expected image
The dashed border is subtly different. The new version is correct and the old one was incorrect. | [
{
"path": "docs/README.md",
"patch": "@@ -96,8 +96,9 @@ These individual tutorials expand on topics discussed in the guide above.\n * [Chrome Extensions Support](api/extensions.md)\n * [Breaking API Changes](breaking-changes.md)\n \n-### Custom DOM Elements:\n+### Custom Web Features:\n \n+* [`-electron-cor... | 2025-03-31T16:22:23 |
vercel/next.js | 0f9b732852f49820aac65e6231ef79c0668cdbdf | b933d3dc3ada4e4eb1bfec1f561394738a6d8f8a | Fix relative same host redirects in node middleware (#88253)
This ensures we properly relativize URLs in node middleware when
deployed and local. Tests weren't catching this previously as none were
asserting the raw Location header value due to node-fetch auto-resolving
the value.
Fixes: https://github.com/vercel/nex... | [
{
"path": "packages/next/src/server/web/adapter.ts",
"patch": "@@ -455,7 +455,10 @@ export async function adapter(\n if (!process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE) {\n if (redirectURL.host === requestURL.host) {\n redirectURL.buildId = buildId || redirectURL.buildId\n- respons... | 2026-01-08T02:28:28 |
facebook/react | a4b2d0d51854b10ca0346ab8977da4975d2a7498 | 1f0b03ced0d459129069d565cf5f8e5567881441 | fix[react-devtools-fusebox]: add extension globals to build (#32297)
We started using these globals in `react-devtools-shared/src/frontend`
code, forward-fixing https://github.com/facebook/react/pull/32262. | [
{
"path": "packages/react-devtools-fusebox/webpack.config.frontend.js",
"patch": "@@ -83,6 +83,9 @@ module.exports = {\n __PROFILE__: false,\n __TEST__: NODE_ENV === 'test',\n __IS_NATIVE__: true,\n+ __IS_CHROME__: false,\n+ __IS_FIREFOX__: false,\n+ __IS_EDGE__: false,\n ... | 2025-02-03T09:59:58 |
golang/go | b9d86baae34197004a175c5c02b901240056a250 | 4b0e3cc1d63a00ee184ea1f6b17e79808e3d9fdc | cmd/compile/internal/devirtualize: fix typos
Change-Id: I4f5a89f452a252018072d067da4cdb9a6cb0f4fe
GitHub-Last-Rev: 7eb108d3878109ccb9846d97b2adc7ea3003772a
GitHub-Pull-Request: golang/go#76396
Reviewed-on: https://go-review.googlesource.com/c/go/+/722860
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Robert ... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -131,7 +131,7 @@ func StaticCall(s *State, call *ir.CallExpr) {\n \t\t// type assertion that we make here would also have failed, but with a different\n \t\t// panic \"pkg.Iface is nil, not *pkg.Impl\", where previously we would... | 2025-11-21T15:51:03 |
nodejs/node | 99c80e3a45eb8ac25c904dc699e9289bfabbd02f | ebfc28a037bc880070928efc4a3db1ca8e6b064e | quic: update the guard to check openssl version
Since we need to be able to use the openssl adapter provided
by the ngtcp2 library, and because that adapter does not include
any compile guards to ensure that OpenSSL 3.5 is being used and
that the APIs are actually available, we need to add a compile
time check for the... | [
{
"path": "configure.py",
"patch": "@@ -1205,6 +1205,65 @@ def get_gas_version(cc):\n warn(f'Could not recognize `gas`: {gas_ret}')\n return '0.0'\n \n+def get_openssl_version():\n+ \"\"\"Parse OpenSSL version from opensslv.h header file.\n+\n+ Returns the version as a number matching OPENSSL_VERSION_... | 2025-07-27T21:34:12 |
facebook/react | 1f0b03ced0d459129069d565cf5f8e5567881441 | 152bfe3769f87e29c8d68cb87fdb608d2483b7f1 | DevTools: fix host component filter option title (#32296)
Overlook that in https://github.com/facebook/react/pull/32086, because
of ternany, it is already string literals, so html entities names no
longer needed. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Settings/ComponentsSettings.js",
"patch": "@@ -478,8 +478,8 @@ export default function ComponentsSettings({\n <option value={ElementTypeForwardRef}>forward ref</option>\n <option value={ElementTypeHostCompon... | 2025-02-03T09:59:47 |
vercel/next.js | d044c5542ee9e62781cd14b68f4b77627ecb5412 | d99021e9a2494eb3269a4ca6cb456b23d2879f3a | ci: fix javascript-urls test to account for React 18 (#88249)
This was caught by our React 18 tests which only run on `canary`. There
was a console error about breaking `javascript:` urls in an upcoming
React release but it didn't actually block them. | [
{
"path": "test/e2e/app-dir/javascript-urls/javascript-urls.test.ts",
"patch": "@@ -7,6 +7,8 @@ import {\n } from 'next-test-utils'\n import type { Page, Request } from 'playwright'\n \n+const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+\n describe('javascript-urls', () => {\n const... | 2026-01-08T00:27:04 |
electron/electron | 49aba471dc80258c4f004772619e0e6dc80fcef6 | 46b108e9a4bd61dafd1d4138b1b942754f745efa | feat: add support for associating a Menu with a WebFrameMain (#45138)
* feat: add support for associating a Menu with a WebFrameMain
This allows certain OS level features to activate such as Writing Tools, Autofill.. and Services.
There appears to be a bug in macOS where the responder chain isn't traversed if the me... | [
{
"path": "docs/api/menu.md",
"patch": "@@ -73,6 +73,8 @@ The `menu` object has the following instance methods:\n \n * `options` Object (optional)\n * `window` [BaseWindow](base-window.md) (optional) - Default is the focused window.\n+ * `frame` [WebFrameMain](web-frame-main.md) (optional) - Provide the ... | 2025-03-28T18:50:07 |
golang/go | 4b0e3cc1d63a00ee184ea1f6b17e79808e3d9fdc | cdba82c7d6fce54b212872ae45d04c3911b11014 | cmd/link: support loading R_LARCH_PCREL20_S2 and R_LARCH_CALL36 relocs
Host libgcc.a (among other libraries) on loong64 systems may contain
such relocs if built with the "medium" code model and/or linker
relaxation, which is increasingly the case. Make the internal linker
aware of these for cgo interopability going fo... | [
{
"path": "src/cmd/internal/obj/fips140.go",
"patch": "@@ -354,8 +354,10 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_CALLLOONG64,\n \t\tobjabi.R_CALLPOWER,\n \t\tobjabi.R_GOTPCREL,\n-\t\tobjabi.R_LOONG64_ADDR_LO, // used with PC-relative load\n-\t\tobjabi.R_LOONG64_ADDR_HI, // u... | 2025-10-06T10:09:14 |
facebook/react | 152bfe3769f87e29c8d68cb87fdb608d2483b7f1 | 19ca800caa01eec2f5e65e547c67b11592bec8b0 | [compiler][rfc] Hacky retry pipeline for fire (#32164)
Hacky retry pipeline for when transforming `fire(...)` calls encounters
validation, todo, or memoization invariant bailouts. Would love feedback
on how we implement this to be extensible to other compiler
non-memoization features (e.g. inlineJSX)
Some observ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -162,7 +162,8 @@ function runWithEnvironment(\n if (\n !env.config.enablePreserveExistingManualUseMemo &&\n !env.config.disableMemoizationForDebugging &&\n- !env.config.enableChangeDetectionForDeb... | 2025-01-31T23:57:26 |
electron/electron | ac616ef41d9379ead79130d6da071cad220b21d2 | e09712f0e1287270d3c10b726beb773438d450d4 | fix: allow NSMenuItems to be disabled (#46307)
* fix: disable NSMenu autoenable feature to allow disabling of NSMenuItems
* style: fix linter issues and update comments
* chore: remove unneeded comment | [
{
"path": "shell/browser/ui/cocoa/electron_menu_controller.mm",
"patch": "@@ -320,6 +320,10 @@ - (NSMenuItem*)makeMenuItemForIndex:(NSInteger)index\n NSMenuItem* item = [[NSMenuItem alloc] initWithTitle:label\n action:@selector(itemSelected:)\n ... | 2025-03-28T00:43:46 |
vercel/next.js | 69d9d2909c6ed4e3860c7f58bebdad381f2fb1e1 | 64c08f42a732268b279ab41440018a9ea04bfe85 | Disallow javascript urls in router methods and redirects (#88185)
React already disallows javascript URLs. This change extends this
prohibition to Next.js specific APIs that don't serialize to an href on
an anchor tag. There are workarounds if need be but this is considered a
bugfix because these URLs are non-routable... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -975,5 +975,6 @@\n \"974\": \"Failed to find Server Action%s. This request might be from an older or newer deployment.\\\\nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action\",\n \"975\": \"Failed to find Server Action. This reque... | 2026-01-07T19:49:34 |
nodejs/node | 9bc923ac6386a122c1142480cd5115f42aa0bb8f | 55b7d2890dc32a445808ff695addb50e1029fd0a | doc: clarify the need of compiler compatible with c++20
Very often someone appear in the #node-core slack
channel asking for guidance on this compilation error
PR-URL: https://github.com/nodejs/node/pull/59297
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -272,6 +272,11 @@ export CXX=g++-12\n make -j4\n ```\n \n+> \\[!IMPORTANT]\n+> If you face a compilation error during this process such as\n+> `error: no matching conversion for functional-style cast from 'unsigned int' to 'TypeIndex'`\n+> Make sure to use a `g++` or `c... | 2025-08-02T18:23:28 |
golang/go | 74ebdd28d10f93fbcb58708c76b5805bc6c114a3 | 4d26d66a49c51b5a7c610c4815322809b31962d9 | [dev.simd] simd, cmd/compile: add more element types for Select128FromPair
Also includes a comment cleanup pass.
Fixed NAME processing for additional documentation.
Change-Id: Ide5b60c17ddbf3c6eafd20147981c59493fc8133
Reviewed-on: https://go-review.googlesource.com/c/go/+/722180
Reviewed-by: Junyang Shao <shaojunyang... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -941,8 +941,12 @@\n (ScaleFloat64x8 ...) => (VSCALEFPD512 ...)\n (Select128FromPairFloat32x8 ...) => (VPERM2F128256 ...)\n (Select128FromPairFloat64x4 ...) => (VPERM2F128256 ...)\n+(Select128FromPairInt8x32 ...) => (VPERM2I128256 ..... | 2025-11-19T22:17:54 |
facebook/react | a657bc5dee29da313d2a03e7864b0665859bc7a8 | 9ff42a8798863c995523e284142b47e3cdfaee80 | build(eslint-plugin-react-hooks): add dev dependencies for typescript migration (#32279)
<!--
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.
Befor... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/package.json",
"patch": "@@ -23,7 +23,7 @@\n \"@babel/preset-env\": \"^7.22.4\",\n \"@babel/preset-typescript\": \"^7.18.6\",\n \"@babel/types\": \"^7.19.0\",\n- \"@types/eslint\": \"^8.56.6\",\n+ \"@types/eslint\": \"^8.56.12\",\n ... | 2025-01-31T19:32:23 |
electron/electron | dc61a6ab8042ec9379ecb2a1e4ac8a207cec15f0 | a0c859fc4fd4e6fa2e10d943604998a3298cd458 | fix: possible crash in `shell.readShortcutLink` (#46294)
fix: possible crash in shell.readShortcutLink | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -136,7 +136,7 @@ refactor_unfilter_unresponsive_events.patch\n build_disable_thin_lto_mac.patch\n build_add_public_config_simdutf_config.patch\n revert_code_health_clean_up_stale_macwebcontentsocclusion.patch\n-ignore_parse_errors_for_pkey_appusermodel_toa... | 2025-03-27T19:27:32 |
vercel/next.js | 3b5a210f3df0e48b6893a415a3e5076e033c6d53 | bda89d1d3aeb714acaec30977045550ab7ffaf26 | fix(next/image): bump sharp@0.34.5 (#88238)
Release notes: https://github.com/lovell/sharp/releases/tag/v0.34.5
- Upgrade to libvips v8.17.3 for upstream bug fixes.
- Add experimental support for prebuilt Linux RISC-V 64-bit binaries.
- Support building from source with npm v12+
- Add support for BigTIFF output.
- Im... | [
{
"path": "packages/next/package.json",
"patch": "@@ -127,7 +127,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.4\"\n+ \"sharp\": \"^0.34.5\"\n },\n \"devDependencies\": {\n \"@babel/code-frame\": \"7.26.2\",",
"additions": 1,
"deletions": 1,
"language": ... | 2026-01-07T17:38:38 |
nodejs/node | 4a06d470ef71637d31a296ea0bdaa1f78ae197ea | 8a87ba031b56bb115043240a740246a88c881195 | test: add known issue test for fs.cpSync dereference bug
Refs: https://github.com/nodejs/node/issues/58939
PR-URL: https://github.com/nodejs/node/pull/58941
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/known_issues/test-fs-cp-sync-dereference.js",
"patch": "@@ -0,0 +1,39 @@\n+'use strict';\n+\n+// Refs: https://github.com/nodejs/node/issues/58939\n+//\n+// The cpSync function is not correctly handling the `dereference` option.\n+// In this test, both the cp and cpSync functions are attempt... | 2025-08-02T14:23:15 |
facebook/react | 87c03a0a134b19ffbda6bbef4b12202f4f5a4347 | 221f3002caa2314cba0a62950da6fb92b453d1d0 | Fix typo in dangerfile.js which results in an unreachable code path… (#32277)
## Summary
Fix typo in dangerfile.js which results in an unreachable code path
which ought to be hit when there is no matching base artifact during
DangerCI automated code review.
See:
https://github.com/facebook/react/blob/221f3002caa2314... | [
{
"path": "dangerfile.js",
"patch": "@@ -70,7 +70,7 @@ const percentFormatter = new Intl.NumberFormat('en', {\n });\n \n function change(decimal) {\n- if (Number === Infinity) {\n+ if (decimal === Infinity) {\n return 'New file';\n }\n if (decimal === -1) {",
"additions": 1,
"deletions": 1... | 2025-01-31T06:44:02 |
electron/electron | 17e38230d521ae75f4a77c35399f2f65f9d59e4e | 3ae285b614e7fd24b5a68ac922321e41d53388e4 | fix: crash when drag-dropping some files (#46253)
* fix: crash when drag-dropping some files
* fix: extra destination context scope | [
{
"path": "shell/renderer/api/electron_api_context_bridge.cc",
"patch": "@@ -687,17 +687,26 @@ v8::MaybeLocal<v8::Object> CreateProxyForAPI(\n continue;\n }\n }\n- v8::Local<v8::Value> value;\n- if (!api.Get(key, &value))\n- continue;\n-\n- auto passed_value = P... | 2025-03-26T22:17:23 |
vercel/next.js | bda89d1d3aeb714acaec30977045550ab7ffaf26 | 117c33b2eab8626960dcd20fffe7e3b4098d99e6 | Only log `pending revalidates...` debug log if applicable (#88221)
When [verbose cache
logging](https://nextjs.org/docs/app/guides/incremental-static-regeneration#verifying-correct-production-behavior)
is enabled, we were always adding a debug log as follows after rendering
a page (during prerendering or at request ti... | [
{
"path": "packages/next/src/server/app-render/action-handler.ts",
"patch": "@@ -1086,18 +1086,23 @@ export async function handleAction({\n \n // For form actions, we need to continue rendering the page.\n if (isFetchAction) {\n+ // If we skip page rendering, we need to ensure pendi... | 2026-01-07T15:39:35 |
golang/go | 4d26d66a49c51b5a7c610c4815322809b31962d9 | e3d4645693bc030b9ff9b867f1d374a1d72ef2fe | [dev.simd] simd: fix signatures for PermuteConstant* methods
This moves the packed-immediate methods to package-private,
and adds exported versions with four parameters.
Rename PermuteConstant to PermuteScalars
Rename VPSHUFB Permute to PermuteOrZero
Rename Permute2 to ConcatPermute
Comments were repaired/enhanced.
... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -396,7 +396,7 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPOR256,\n \t\tssa.OpAMD64VPORD512,\n \t\tssa.OpAMD64VPORQ512,\n-\t\tssa.OpAMD64VPSHUFB128,\n+\t\tssa.OpAMD64VPERMB128,\n \t\tssa.OpAMD64VPERMB256,... | 2025-11-17T20:31:36 |
nodejs/node | fa458d2feec2e3510f10b77b936ac0acd7ab1672 | e4b748a9cc0f7ceeb3a4299da68e42c8c83d2743 | test: deflake stream-readable-to-web test
Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58948
Fixes: https://github.com/nodejs/node/issues/58949
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: Juan J... | [
{
"path": "test/parallel/test-stream-readable-to-web.js",
"patch": "@@ -1,62 +0,0 @@\n-'use strict';\n-const common = require('../common');\n-if (!common.hasCrypto) { common.skip('missing crypto'); }\n-\n-const { Readable } = require('stream');\n-const process = require('process');\n-const { randomBytes } =... | 2025-08-02T04:25:35 |
facebook/react | 221f3002caa2314cba0a62950da6fb92b453d1d0 | 55b54b0d638a6ae5c7a5ab6dd4fee732cfbc47ad | chore[DevTools]: make clipboardWrite optional for chromium (#32262)
Addresses https://github.com/facebook/react/issues/32244.
### Chromium
We will use
[chrome.permissions](https://developer.chrome.com/docs/extensions/reference/api/permissions)
for checking / requesting `clipboardWrite` permission before copying
... | [
{
"path": ".eslintrc.js",
"patch": "@@ -500,13 +500,15 @@ module.exports = {\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react-devtools-shared/src/backend/console.js',\n 'packages/react-devtools-shared/src/backend/shared/DevToolsComponentStackFrame.js',\n+ 'pac... | 2025-01-30T20:08:17 |
electron/electron | 3212f60d690dc143037dd4a76a618b605f7c2d3d | a5076a663b1ef71d9265da99cedeb596f8a790c1 | fix: set `userAgent` on `navigationHistory.restore()` (#46260)
fix: set userAgent on navigationHistory restore | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2533,6 +2533,9 @@ void WebContents::RestoreHistory(\n auto navigation_entries = std::make_unique<\n std::vector<std::unique_ptr<content::NavigationEntry>>>();\n \n+ blink::UserAgentOverride ua_override;\n+ ua_override.ua_str... | 2025-03-26T15:59:19 |
vercel/next.js | f59cf2e4199272de4bb31aff6420a984dadb63b9 | 6805af48baf1128e6b2a9e8f1752ee5982f02c60 | Add test creation instructions to agents.md (#88215)
## Enhance test documentation with best practices and non-interactive
test generation
### What?
Expanded the AGENTS.md documentation with detailed guidance on writing
tests, including:
- Added non-interactive test generation instructions for AI agents
- Documented ... | [
{
"path": "AGENTS.md",
"patch": "@@ -110,7 +110,68 @@ pnpm test-dev-turbo test/development/\n \n - `pnpm test-unit` - Run unit tests only (fast, no browser)\n - `pnpm testonly <path>` - Run tests without rebuilding (faster iteration)\n-- `pnpm new-test` - Generate a new test file from template\n+- `pnpm new... | 2026-01-07T14:50:43 |
facebook/react | 55b54b0d638a6ae5c7a5ab6dd4fee732cfbc47ad | 4b3728f05efbab9624e981339d8a0992a58f9a41 | [ci] Only install chromium for flight fixtures (#32275)
I noticed we only use chromium in fixtures/flight, so let's specifically
only install that browser in ci. | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -476,9 +476,7 @@ jobs:\n fi\n - name: Playwright install deps\n working-directory: fixtures/flight\n- run: |\n- npx playwright install\n- sudo npx playwright install-deps\n+ run: np... | 2025-01-30T19:13:45 |
nodejs/node | 7f37d39a876d39a8bf7aea17e3bcec8c21e4df04 | c7d7ec7cda56b7776797cbdef3d4497fc98e8440 | node-api: reword "implementation in an alternative VM" as implementable
PR-URL: https://github.com/nodejs/node/pull/59036
Fixes: https://github.com/nodejs/node/issues/58852
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
Reviewed-By: Michael Dawson <midawson@redhat.com> | [
{
"path": "doc/contributing/adding-new-napi-api.md",
"patch": "@@ -37,7 +37,7 @@ please follow these principles and guidelines:\n \n 2. **Review and approval**\n * A new API addition **must** be signed off by at least two Node-API team members.\n- * **Should** be implemented in at least one other VM im... | 2025-08-01T16:58:49 |
golang/go | bd2b117c2c778343106f5823e4ae99da2160d095 | 3ad2e113fc3dd202bfb2ef87d376b6ef54337f0b | crypto/tls: add QUICErrorEvent
Add a new QUICEvent type for reporting errors.
This provides a way to report errors that don't occur as a result of
QUICConn.Start, QUICConn.HandleData, or QUICConn.SendSessionTicket.
Fixes #75108
Change-Id: I941371a21f26b940e75287a66d7e0211fc0baab1
Reviewed-on: https://go-review.googl... | [
{
"path": "api/next/75108.txt",
"patch": "@@ -0,0 +1,3 @@\n+pkg crypto/tls, const QUICErrorEvent = 10 #75108\n+pkg crypto/tls, const QUICErrorEvent QUICEventKind #75108\n+pkg crypto/tls, type QUICEvent struct, Err error #75108",
"additions": 3,
"deletions": 0,
"language": "Plain Text"
},
{
... | 2025-11-08T19:22:59 |
electron/electron | d2c2261c58023a8319c8fd9c0facb06e0da47217 | 8412d783104e7dacc9448c4ada34899bce739272 | fix: hard crash on invalid command line switches (#46004)
* fix: hard crash on invalid command line switch
* Update docs/api/command-line.md
Co-authored-by: Niklas Wenzel <dev@nikwen.de>
* chore: feedback from review
* docs: Add breaking change note
---------
Co-authored-by: Niklas Wenzel <dev@nikwen.de> | [
{
"path": "docs/api/command-line.md",
"patch": "@@ -20,45 +20,87 @@ document.\n \n #### `commandLine.appendSwitch(switch[, value])`\n \n-* `switch` string - A command-line switch, without the leading `--`\n-* `value` string (optional) - A value for the given switch\n+* `switch` string - A command-line switc... | 2025-03-26T13:14:03 |
vercel/next.js | 6805af48baf1128e6b2a9e8f1752ee5982f02c60 | bf30cd547a7c9c9260b15bb23d096a1c303b5f31 | Add more debug logs to `'use cache'` wrapper (#88219)
The cache handlers are generally responsible for adding debug logs to
their methods, see
`packages/next/src/server/lib/cache-handlers/default.ts` for reference.
However, the `'use cache'` wrapper in
`packages/next/src/server/use-cache/use-cache-wrapper.ts` also add... | [
{
"path": "packages/next/src/server/use-cache/use-cache-wrapper.ts",
"patch": "@@ -1256,6 +1256,20 @@ export async function cache(\n // generating static pages for such data. It's better to leave\n // a dynamic hole that can be filled in during the resume with\n // ... | 2026-01-07T14:04:31 |
facebook/react | 4b3728f05efbab9624e981339d8a0992a58f9a41 | f02ba2fcc5de5c280d5c79f52302b04daaaf1e23 | [Fiber] Track Appearing Named ViewTransition in the accumulateSuspenseyCommit Phase (#32254)
When a named ViewTransition component unmounts in one place and mounts
in a different place we need to match these up so we know a pair has
been created. Since the unmounts are tracked in the snapshot phase we
need some way to... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -97,6 +97,7 @@ import {\n Passive,\n DidDefer,\n ViewTransitionNamedStatic,\n+ ViewTransitionNamedMount,\n LayoutStatic,\n } from './ReactFiberFlags';\n import {\n@@ -266,7 +267,6 @@ import {\n markSkippedUpdateLanes,\... | 2025-01-30T17:13:36 |
rust-lang/rust | abb5228ec14d9e4571d8c1529e611e0e5c87aea4 | 1e2183119f0ee19cc26df899e26b04ad0de3475d | Merge `fabsfN` into `fabs::<F>`
Add `bounds::FloatPrimitive`
Exhaustive float pattern match
Fix GCC
use span bugs | [
{
"path": "compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs",
"patch": "@@ -346,10 +346,6 @@ fn codegen_float_intrinsic_call<'tcx>(\n sym::log10f32 => (\"log10f\", 1, fx.tcx.types.f32, types::F32),\n sym::log10f64 => (\"log10\", 1, fx.tcx.types.f64, types::F64),\n sym::log10f12... | 2026-03-15T22:41:07 |
golang/go | d58b733646d2d52638b08d5c44afbc7292aeca4d | 1bc54868d4fd03e3716e7ad9669d87c34c8aaa2d | runtime: track goroutine location until actual STW
TestTraceSTW / TestTraceGCSTW currently tracks the location (M/P) of the
target goroutines until it reaches the "start" log message, assuming the
actual STW comes immediately afterwards.
On 386 with TestTraceGCSTW, it actually tends to take >10ms after the
start log ... | [
{
"path": "src/runtime/proc_test.go",
"patch": "@@ -1321,11 +1321,13 @@ func runTestTracesSTW(t *testing.T, run int, name, stwType string) (err error) {\n \t//\n \t// 2. Once found, track which M and P the target goroutines run on until...\n \t//\n-\t// 3. Look for the \"TraceSTW\" \"start\" log message, wh... | 2025-11-20T21:21:09 |
nodejs/node | 5794e644b724c6c6cac02d306d87a4d6b78251e5 | 5f5f9cb0150ce74a5f03be044e0019f3a3c27bba | fs: fix glob TypeError on restricted dirs
When a directory cannot be read due to permission issues, the async
version of fs.glob() returns null from readdir(), while the sync
version returns an empty array. This causes a TypeError when trying
to access the 'length' property of null.
PR-URL: https://github.com/nodejs/... | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -143,7 +143,7 @@ class Cache {\n if (cached) {\n return cached;\n }\n- const promise = PromisePrototypeThen(readdir(path, { __proto__: null, withFileTypes: true }), null, () => null);\n+ const promise = PromisePrototypeThen(readdir(path, ... | 2025-08-01T00:06:56 |
electron/electron | 48a38c0289925c5b245078e822d232f451d92633 | 6e44662f15ae753d9649db71937b62a8d587a1f7 | fix: build failure when printing is disabled (#46283)
fix: ftbfs when printing is disabled | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1988,6 +1988,7 @@ void WebContents::DraggableRegionsChanged(\n draggable_region_ = DraggableRegionsToSkRegion(regions);\n }\n \n+#if BUILDFLAG(ENABLE_PRINTING)\n void WebContents::PrintCrossProcessSubframe(\n content::WebContent... | 2025-03-26T09:04:39 |
facebook/react | ddc26c9db16a7be2f05eacc6f0228f42eeff3803 | dc44bca85b19481267ae5f7c0c271f8a5a126654 | Swap to Eli's new GitHub username in Maintainers file (#32237)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull ... | [
{
"path": "MAINTAINERS",
"patch": "@@ -20,6 +20,6 @@ rickhanlonii\n sebmarkbage\n sethwebster\n sophiebits\n-TheSavior\n+elicwhite\n tyao1\n yuzhi",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2025-01-27T18:10:40 |
vercel/next.js | d9fa95ce752df03ac7e34d9e7c66bab1dff09f2c | 1d09f42590ef47dfde7061f3a01621654f2a14df | Handle pnpm-workspace.yaml while searching for monorepo root (#74818)
## What?
In order for Next.js to know where the root of the project (i.e. monorepo) is we have a heuristic for searching for the root by looking upwards from the application's directory trying to find the package manager lockfiles. This works reall... | [
{
"path": "packages/next/src/lib/find-root.ts",
"patch": "@@ -2,7 +2,21 @@ import { dirname } from 'path'\n import findUp from 'next/dist/compiled/find-up'\n import * as Log from '../build/output/log'\n \n-export function findRootLockFile(cwd: string) {\n+function findWorkRoot(cwd: string) {\n+ // Find-up ... | 2026-01-07T12:33:24 |
nodejs/node | d9fe28bd6b7836accff5a174ef76f7340bf5e600 | 9dbbf58cf193314c97b81714c725b6267694087c | doc: fix `CHANGELOG.md` version listing
PR-URL: https://github.com/nodejs/node/pull/59299
Reviewed-By: Ruy Adorno <ruy@vlt.sh>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "CHANGELOG.md",
"patch": "@@ -39,6 +39,41 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.4.1\">24.4.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.4.0\">24.4.0</a><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.3.0\">24.3.0<... | 2025-07-31T15:24:02 |
golang/go | ff654ea1000af81bd08f24faf06c2113e8df001a | a662badab918d7708bbc750f24b9c7313520e2b0 | net/url: permit colons in the host of postgresql:// URLs
PostgreSQL's postgresql:// URL scheme permits a comma-separated list of
host:ports to appear in the host subcomponent:
https://www.postgresql.org/docs/11/libpq-connect.html#LIBPQ-MULTIPLE-HOSTS
While this is not compliant with RFC 3986, it's something we've acc... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -489,7 +489,7 @@ func parse(rawURL string, viaRequest bool) (*URL, error) {\n \t\tif i := strings.Index(authority, \"/\"); i >= 0 {\n \t\t\tauthority, rest = authority[:i], authority[i:]\n \t\t}\n-\t\turl.User, url.Host, err = parseAuthority(authority)\n+\t\turl.... | 2025-11-19T23:32:04 |
facebook/react | dc44bca85b19481267ae5f7c0c271f8a5a126654 | 9eabb37338e6bea18441dec58a4284fe00ee09ae | fix(react-compiler-healthcheck): Add shebang to banner (#32225)
## Summary
PR https://github.com/facebook/react/pull/31963 migrated the bundler
from Rollup to esbuild, but the `react-compiler-healthcheck` script
lacks a shebang, leading to issues with `npx` not being able to execute
it.
https://github.com/facebook/... | [
{
"path": "compiler/packages/react-compiler-healthcheck/scripts/build.js",
"patch": "@@ -36,7 +36,9 @@ const config = {\n format: 'cjs',\n platform: 'node',\n banner: {\n- js: `/**\n+ js: `#!/usr/bin/env node\n+\n+/**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source ... | 2025-01-27T16:59:25 |
vercel/next.js | f5cfb23bb6e1b7be1cec4511b0e641480b526cbe | 789d0810a29d644d066bbc183d34d13bc104e2fe | fix overlay frames cannot be opened sometimes (#88210) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-overlay-call-stack/error-overlay-call-stack.tsx",
"patch": "@@ -21,17 +21,20 @@ export function ErrorOverlayCallStack({\n function onToggleIgnoreList() {\n const dialog = dialogResizerRef?.current\n \n- if (!dialog) {\n-... | 2026-01-07T11:31:13 |
electron/electron | 4eda76de3685318c3f342760b0d35ea77068236a | ced8fdbce820a1d85c0db6ff299559b21d209ec8 | build: fixup windows source cache for release (#46236)
* build: fixup windows source cache for release
* build: fixup ffmpeg gn gen
* build: add build-tools depot_tools to PATH
There are some cases where it is still expected that depot_tools be in the path
* put back regular gn gen for ffmpeg
* build: add retry t... | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -185,7 +185,7 @@ runs:\n if: ${{ inputs.is-release == 'true' }}\n run: |\n cd src\n- e d gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n+ gn... | 2025-03-25T18:24:58 |
rust-lang/rust | 9b1eb935bcab03b831bf2b952e49da293522c128 | ec15ca96ff2a5b733ab142ecc3744daed751c440 | Tweak wording of failed predicate in inference error
Special case message talking about `Predicate` that couldn't be satisfied when in inference errors so that we don't say "cannot satisfy `_: Trait`" and instead say "type must implement `Trait`". | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/ambiguity.rs",
"patch": "@@ -11,6 +11,7 @@ use rustc_infer::traits::util::elaborate;\n use rustc_infer::traits::{\n Obligation, ObligationCause, ObligationCauseCode, PolyTraitObligation, PredicateObligation,\n };\n+use rustc_middle::ty... | 2026-03-16T17:47:09 |
golang/go | c1b7112af8331d37e33be521d2d8baa552945971 | ca37d24e0b9369b8086959df5bc230b38bf98636 | os/signal: make NotifyContext cancel the context with a cause
This is especially useful when combined with the nesting semantics of
context.Cause, and with errgroup's use of CancelCauseFunc.
For example, with the following code
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt)
defer stop()
ser... | [
{
"path": "doc/next/6-stdlib/99-minor/os/signal/notifycontext.md",
"patch": "@@ -0,0 +1,2 @@\n+[NotifyContext] now cancels the returned context with [context.CancelCauseFunc]\n+and an error indicating which signal was received.",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
... | 2025-11-18T16:19:04 |
nodejs/node | 5d3efaa3c8e22c5d9d233801eeb42d997fedc0b2 | e6652316a8f6b3b85cd53f9b5c7b5a51e00ce243 | src: added CHECK_NOT_NULL check for multiple eq_wrap_async
PR-URL: https://github.com/nodejs/node/pull/59267
Fixes: https://github.com/nodejs/node/issues/59266
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: theanarkh <theratliter@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -1143,6 +1143,7 @@ static void LStat(const FunctionCallbackInfo<Value>& args) {\n bool use_bigint = args[1]->IsTrue();\n if (!args[2]->IsUndefined()) { // lstat(path, use_bigint, req)\n FSReqBase* req_wrap_async = GetReqWrap(args, 2, use_bigint);\n+ CHE... | 2025-07-31T01:55:11 |
facebook/react | a6ce56d9a9162c295ef0086762b76506534de201 | 5269823927e1ba0ea14a64478b28c02ba5f0de3e | [ci] Fix typo (#32217)
yml was a mistake | [
{
"path": ".github/workflows/shared_check_maintainer.yml",
"patch": "@@ -38,7 +38,7 @@ jobs:\n isRemote = isRemote === 'true';\n }\n if (typeof isRemote !== 'boolean') {\n- throw new Error(`Invalid `isRemote` input. Expected a boolean, got: ${isRemote}`);\n... | 2025-01-24T20:06:15 |
rust-lang/rust | b7bc96291e12bfe60a1fc6dae9db5af3b62f7431 | 1b4821082fd1ee2074d4fe1db979ff24aac10e6b | fix: SCIP generation should prime caches in parallel
Previously load_workspace_into_db() called parallel_prime_caches()
with a worker count of 1 unconditionally. This made SCIP generation
slower than it needed to be.
Instead, pass the number of workers explicitly, and allow the SCIP
subcommand to specify the number o... | [
{
"path": "src/tools/rust-analyzer/crates/load-cargo/src/lib.rs",
"patch": "@@ -42,6 +42,7 @@ pub struct LoadCargoConfig {\n pub load_out_dirs_from_check: bool,\n pub with_proc_macro_server: ProcMacroServerChoice,\n pub prefill_caches: bool,\n+ pub num_worker_threads: usize,\n pub proc_ma... | 2026-03-13T18:34:01 |
electron/electron | 1d6cb348b4027db8a9647cb0705e9f7dc8fff7dd | 8e856dfdb83aa78482e6cadd9bcaa06d00d1fb90 | fix: `webContents.printToPDF()` with cross-process subframes (#46218)
fix: webContents.printToPDF() with cross-process subframes | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -176,6 +176,7 @@\n \n #if BUILDFLAG(ENABLE_PRINTING)\n #include \"chrome/browser/printing/print_view_manager_base.h\"\n+#include \"components/printing/browser/print_composite_client.h\"\n #include \"components/printing/browser/print_ma... | 2025-03-25T13:16:47 |
vercel/next.js | fd5817d00462f68c56982012fb62fc255816f9bd | 023be2e88aa788cb5b832c48459fe9e5da7f9653 | feat: add --experimental-cpu-prof flag for dev, build, and start (#87946)
## What
Adds a `--experimental-cpu-prof` flag to `next dev`, `next build`, and
`next start` commands to capture V8 CPU profiles for debugging
performance bottlenecks.
## Why
When investigating slow builds, slow dev server startups, or product... | [
{
"path": "docs/01-app/03-api-reference/06-cli/next.mdx",
"patch": "@@ -56,6 +56,7 @@ The following commands are available:\n | `--experimental-https-cert <path>` | Path to a HTTPS certificate file. ... | 2026-01-07T10:24:41 |
nodejs/node | a93da0a3294605f201d886c6715b80e35e50e2a3 | 698cbd0f8be1c8ffa55376a11b66324355a74f88 | fs: correct error message when FileHandle is transferred
PR-URL: https://github.com/nodejs/node/pull/59156
Fixes: https://github.com/nodejs/node/issues/59155
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-... | [
{
"path": "lib/internal/fs/promises.js",
"patch": "@@ -111,6 +111,7 @@ const kHandle = Symbol('kHandle');\n const kFd = Symbol('kFd');\n const kRefs = Symbol('kRefs');\n const kClosePromise = Symbol('kClosePromise');\n+const kCloseReason = Symbol('kCloseReason');\n const kCloseResolve = Symbol('kCloseResolv... | 2025-07-29T19:28:35 |
facebook/react | de1eaa2655ee29933425695ae0af756bf6713147 | ae9017ceabb2a36a04c249ad5342e0b1af3e1a54 | Fix:- Improve HOC support and state preservation in React Refresh (#30660)
## Summary
This fixes #30659 , the issue was how the state was preserved and needed
special cases for the forward and memo, have also added tests related to
the same.
## How did you test this change?
`yarn test packages/react-refresh/s... | [
{
"path": "packages/react-refresh/src/ReactFreshRuntime.js",
"patch": "@@ -146,6 +146,21 @@ function canPreserveStateBetween(prevType: any, nextType: any) {\n if (isReactClass(prevType) || isReactClass(nextType)) {\n return false;\n }\n+\n+ if (typeof prevType !== typeof nextType) {\n+ return fa... | 2025-01-24T11:48:20 |
electron/electron | 307d4f94c7ecc7cae1e6704a3173562da41ec95a | cfada0347e76d68b2441f8de68c868c15d8b10d3 | fix: oob string read when parsing node_options (#46210)
* fix: oob string read when parsing node_options
* chore: re-enable test
* fix: missing linux server env for tests | [
{
"path": "shell/common/node_bindings.cc",
"patch": "@@ -394,6 +394,7 @@ void SetNodeOptions(base::Environment* env) {\n if (env->HasVar(\"NODE_OPTIONS\")) {\n if (electron::fuses::IsNodeOptionsEnabled()) {\n std::string options;\n+ std::string result_options;\n env->GetVar(\"NODE_OPT... | 2025-03-25T10:33:10 |
vercel/next.js | 023be2e88aa788cb5b832c48459fe9e5da7f9653 | be6fcb250e28ba3c40bb12aee45a87541a3eac6f | metadata: use fixed segment in dynamic routes with static metadata files (#88113) | [
{
"path": "crates/next-core/src/app_page_loader_tree.rs",
"patch": "@@ -251,7 +251,7 @@ impl AppPageLoaderTreeBuilder {\n let metadata_route = &*get_metadata_route_name(item.clone().into()).await?;\n writeln!(\n self.loader_tree_code,\n- \"{s} url: fillMetadataSegment... | 2026-01-07T09:55:09 |
facebook/react | a0b91fbd650f9398cca12fcda0c426c434eeb6d8 | b83090fca2d96283a5c6153abb65eaa5cc81c9ba | [compiler][ez] Fix main (bad rebase / amend for #32095) (#32160)
See title: this fixes test cases broken by
https://github.com/facebook/react/pull/32095 adding instead of moving
new test fixtures | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts",
"patch": "@@ -569,7 +569,7 @@ addObject(BUILTIN_SHAPES, BuiltInMixedReadonlyId, [\n 'flatMap',\n addFunction(BUILTIN_SHAPES, [], {\n positionalParams: [],\n- restParam: Effect.Read,\n+ restParam: Effect... | 2025-01-22T21:21:53 |
nodejs/node | e55e0a7a98f9f7bd0af976139e508c5835e10a9b | f904fa77f872b08fcd0b7adc5c06ada61153bf27 | src: clear all linked module caches once instantiated
There are two phases in module linking: link, and instantiate. These
two operations are required to be separated to allow cyclic
dependencies.
`v8::Module::InstantiateModule` is only required to be invoked on the
root module. The global references created by `Modu... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -133,12 +133,23 @@ ModuleWrap::ModuleWrap(Realm* realm,\n object->SetInternalField(kSyntheticEvaluationStepsSlot,\n synthetic_evaluation_step);\n object->SetInternalField(kContextObjectSlot, context_object);\n+ object->SetInternalF... | 2025-07-29T12:17:52 |
electron/electron | a86e44b176f532ff8ae91584bcaeff9b6b8dca44 | abaef13c0b4e4cdbe3b193c6fb47d49e6ba9545c | fix: NODE_OPTIONS parsing for child processes on macOS (#46209)
* fix: NODE_OPTIONS parsing for child processes on macOS
* chore: temporarily disable test
* chore: apply review feedback
* chore: fix build | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -90,7 +90,10 @@\n \n #if BUILDFLAG(IS_MAC)\n #include <CoreFoundation/CoreFoundation.h>\n+#include \"base/no_destructor.h\"\n+#include \"content/browser/mac_helpers.h\"\n #include \"shell/browser/ui/cocoa/electron_bundle_mover.h\"\n+#include \"... | 2025-03-25T04:01:37 |
facebook/react | b83090fca2d96283a5c6153abb65eaa5cc81c9ba | deba48a72795d1332fe1df1159fc6b73566667fe | [compiler] Fix invalid Array.map type (#32095)
See test fixture
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32095).
* #32099
* #32104
* #32098
* #32097
* #32096
* __->__ #32095
* #32094... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts",
"patch": "@@ -549,8 +549,16 @@ addObject(BUILTIN_SHAPES, BuiltInMixedReadonlyId, [\n [\n 'map',\n addFunction(BUILTIN_SHAPES, [], {\n+ /**\n+ * Note `map`'s arguments are annotated as Effect.ConditionallyM... | 2025-01-22T20:02:51 |
vercel/next.js | ae17e48bbfb1982b787520c1d260d7a1f7acb0fa | 9a1d04fb581fc07e18a5c265690ae8acbd16092c | Update generateMetadata in client component error (#88172)
## What?
Improves the error shown when `generateMetadata` or `metadata` is
exported from a Client Component.
Also updated the documentation to further explain why it can only be
used in a server component and the steps to follow to resolve the error. | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -334,7 +334,7 @@ fn report_error(app_dir: &Option<PathBuf>, filepath: &str, error_kind: RSCErrorK\n )\n },\n RSCErrorKind::NextRscErrClientMetadataExport((source, span)) => {\n- ... | 2026-01-07T08:45:44 |
nodejs/node | 34cfc5a44afc99880da9d8f56d68f1893d5768db | 0eeccd281c9336381849dcdc299c02baf1f8b7af | src: add nullptr checks in `StreamPipe::New`
Fixes: https://github.com/nodejs/node/issues/57612
PR-URL: https://github.com/nodejs/node/pull/57613
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: theanarkh <theratliter@gmail.com> | [
{
"path": "src/stream_pipe.cc",
"patch": "@@ -278,6 +278,8 @@ void StreamPipe::New(const FunctionCallbackInfo<Value>& args) {\n CHECK(args[1]->IsObject());\n StreamBase* source = StreamBase::FromObject(args[0].As<Object>());\n StreamBase* sink = StreamBase::FromObject(args[1].As<Object>());\n+ CHECK_... | 2025-07-28T23:46:40 |
facebook/react | deba48a72795d1332fe1df1159fc6b73566667fe | b6b33bfb92c095160df7370fb488acb89c55b5ca | [compiler] Repro for invalid Array.map type (#32094)
See test fixture
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32094).
* #32099
* #32104
* #32098
* #32097
* #32096
* #32095
* __->__ ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-invalid-mixedreadonly-map-shape.expect.md",
"patch": "@@ -0,0 +1,163 @@\n+\n+## Input\n+\n+```javascript\n+import {\n+ arrayPush,\n+ identity,\n+ makeArray,\n+ Stringify,\n+ useFragment,\n+} from 'shared-runtim... | 2025-01-22T19:58:52 |
vercel/next.js | 9a1d04fb581fc07e18a5c265690ae8acbd16092c | 45dba91908a77e442b2e05389aeacf6ed95ceb0f | Turbopack: Update to swc_core v50.2.3 (#87841)
Update to swc_core v50.2.3 to address a parse issue with mdx files that should be fixed by swc-project/swc#11372:
- Fixes #87713
- Internal discussion: https://vercel.slack.com/archives/C04KC8A53T7/p1766716756273609?thread_ts=1766712717.419489&cid=C04KC8A53T7
I'm i... | [
{
"path": "Cargo.lock",
"patch": "@@ -600,9 +600,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"47.0.0\"\n+version = \"48.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2159cdc2d6045a129534d16e842e63bf46ccd53a04e079dbd89e2d6a243492... | 2026-01-07T05:56:29 |
nodejs/node | 0eeccd281c9336381849dcdc299c02baf1f8b7af | fb9e9f1e31262afdc40a9296551d946c17022c6b | doc: fix typo in `test/common/README.md`
Corrects the misspelling of "unmask" to "umask"
PR-URL: https://github.com/nodejs/node/pull/59180
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/common/README.md",
"patch": "@@ -14,7 +14,7 @@ several other tasks:\n don't accidentally pollute the global namespace.\n \n * Some tests assume a default umask of `0o022`. To enforce this assumption,\n- the common module sets the unmask at startup. Tests that require a\n+ the common modu... | 2025-07-28T21:58:59 |
electron/electron | abaef13c0b4e4cdbe3b193c6fb47d49e6ba9545c | cfd64b5f8983a34723abbdddf82fb6aea6ceb773 | fix: Revert "feat: Corner Smoothing CSS rule" (#46231)
Revert "feat: Corner Smoothing CSS rule (#45185)"
This reverts commit b75e802280b0d8d275b57984c757d188b5934431. | [
{
"path": "docs/README.md",
"patch": "@@ -96,9 +96,8 @@ These individual tutorials expand on topics discussed in the guide above.\n * [Chrome Extensions Support](api/extensions.md)\n * [Breaking API Changes](breaking-changes.md)\n \n-### Custom Web Features:\n+### Custom DOM Elements:\n \n-* [`-electron-cor... | 2025-03-24T19:36:49 |
facebook/react | 7c864c98342e6e92a992ac32c1846f13eb1a314c | 19557443c8c2f54571dbb1519403cf310ad6e68b | [compiler][ez] Patch for JSX escape sequences in @babel/generator (#32131)
Fall back to using JSXExpressionContainer for strings potentially
containing escape sequences (a single backslash) to fix
https://github.com/facebook/react/issues/32123. This is an extension of
https://github.com/facebook/react/pull/29079 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2269,7 +2269,7 @@ function codegenInstructionValue(\n * https://en.wikipedia.org/wiki/List_of_Unicode_characters#Control_codes\n */\n const STRING_REQUIRES_EXPR_CONTAINER_PATTERN =\n- /[... | 2025-01-22T19:22:35 |
vercel/next.js | 45dba91908a77e442b2e05389aeacf6ed95ceb0f | aa9c71671a15601f11e3842a5473e8a6dacb5c2f | Add maximum size limit for postponed body parsing (#88175)
### What?
Adds a configurable `experimental.maxPostponedStateSize` limit for PPR
postponed state body parsing to prevent OOM/DoS attacks.
### Why?
The postponed state body was read entirely without size limits, creating
a potential denial-of-service vector ... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -973,5 +973,7 @@\n \"972\": \"Failed to resolve pattern \\\"%s\\\": %s\",\n \"973\": \"Server Actions are not enabled for this application. This request might be from an older or newer deployment.\\nRead more: https://nextjs.org/docs/messages/failed-to... | 2026-01-07T05:19:03 |
nodejs/node | 0bbe7c36c9b637a070ac8c0dfdf5e6130ffff756 | 9a3e755bdb172e88315a2dec2eb884cda132c5fa | src: add percentage support to --max-old-space-size
This commit adds support for specifying --max-old-space-size as a
percentage of system memory, in addition to the existing MB format.
A new HandleMaxOldSpaceSizePercentage method parses percentage values,
validates that they are within the 0-100% range, and provides ... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1719,6 +1719,22 @@ changes:\n \n Specify the maximum size, in bytes, of HTTP headers. Defaults to 16 KiB.\n \n+### `--max-old-space-size-percentage=PERCENTAGE`\n+\n+Sets the max memory size of V8's old memory section as a percentage of available system memory.\n+Thi... | 2025-07-28T05:06:16 |
electron/electron | cfd64b5f8983a34723abbdddf82fb6aea6ceb773 | cbcd7796100d63640219cdcf21ea033f875b256c | fix: handle OnDelegatedSourceListDismissed asynchronously (#46112)
This fixes a crash with the PipeWire capturer caused by a Chromium
change introduced in
https://chromium-review.googlesource.com/c/chromium/src/+/5783826.
DesktopMediaListBase now calls Refresh(true) after dispatching
DesktopMediaListObserver::OnDeleg... | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -15,6 +15,7 @@\n #include \"chrome/browser/media/webrtc/desktop_media_list.h\"\n #include \"chrome/browser/media/webrtc/thumbnail_capturer_mac.h\"\n #include \"chrome/browser/media/webrtc/window_icon_util.h\"\n+#include \"content/p... | 2025-03-24T19:09:11 |
facebook/react | 19557443c8c2f54571dbb1519403cf310ad6e68b | e5a2062c80abe2118b8bd32972a5100a2b1ffa01 | [compiler][repro] JSX escape sequences not printed correctly by @babel/generator (#32130)
Repro for https://github.com/facebook/react/issues/32123
Note that this is only a bug when calling `@babel/generator:generate()`
before transforming JSX.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](http... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/jsx-preserve-escape-character.expect.md",
"patch": "@@ -0,0 +1,57 @@\n+\n+## Input\n+\n+```javascript\n+/**\n+ * Fixture showing `@babel/generator` bug with jsx attribute strings containing\n+ * escape sequences. Note t... | 2025-01-22T18:52:05 |
vercel/next.js | aa9c71671a15601f11e3842a5473e8a6dacb5c2f | 744f86c34d9a828b4f38ac952102e3df05999a18 | fix: move conductor.json to repo root for proper detection (#88184)
## What?
Moves `conductor.json` from `.conductor/conductor.json` to the
repository root and updates script paths accordingly.
## Why?
Conductor searches for configuration files in a specific priority order:
1. Workspace root
2. Remote default branc... | [
{
"path": "conductor.json",
"patch": "@@ -2,8 +2,8 @@\n \"name\": \"next.js\",\n \"description\": \"Next.js framework development workspace\",\n \"scripts\": {\n- \"setup\": \"./scripts/setup.sh\",\n- \"run\": \"./scripts/run.sh\"\n+ \"setup\": \"./.conductor/scripts/setup.sh\",\n+ \"run\"... | 2026-01-07T00:55:45 |
nodejs/node | 405ad4e8fb188ef7a6c925629046e1cb79e8212d | cd1a90d1ee6f615963180b9a2df3987f98d6123f | doc: update the instruction on how to verify releases
PR-URL: https://github.com/nodejs/node/pull/59113
Fixes: https://github.com/nodejs/node/issues/58904
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Ruy Adorno <ruy@vlt.sh>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Marco Ippolito <marc... | [
{
"path": "README.md",
"patch": "@@ -95,37 +95,27 @@ _docs_ subdirectory. Version-specific documentation is also at\n \n ### Verifying binaries\n \n-Download directories contain a `SHASUMS256.txt` file with SHA checksums for the\n-files.\n+Download directories contain a `SHASUMS256.txt.asc` file with SHA ch... | 2025-07-27T21:48:24 |
electron/electron | cbcd7796100d63640219cdcf21ea033f875b256c | b75e802280b0d8d275b57984c757d188b5934431 | build: fixup release builds (#46228) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -185,7 +185,7 @@ runs:\n if: ${{ inputs.is-release == 'true' }}\n run: |\n cd src\n- gn gen out/ffmpeg --args=\"import(\\\"//electron/build/args/ffmpeg.gn\\\") use_remoteexec=true $GN_EXTRA_ARGS\"\n+ e d gn... | 2025-03-24T18:34:57 |
facebook/react | e5a2062c80abe2118b8bd32972a5100a2b1ffa01 | 9b62ee71f483502db4f44220552b97757b346094 | fix(react-compiler): `JSXText` emits incorrect with bracket (#32138)
<!--
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... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2327,7 +2327,7 @@ function codegenJsxAttribute(\n }\n }\n \n-const JSX_TEXT_CHILD_REQUIRES_EXPR_CONTAINER_PATTERN = /[<>&]/;\n+const JSX_TEXT_CHILD_REQUIRES_EXPR_CONTAINER_PATTERN = /[<>&... | 2025-01-22T17:04:59 |
golang/go | 790384c6c23f7ce44199ea3cd61c856d632b08aa | a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0 | spec: adjust rule for type parameter on RHS of alias declaration
Per discussion on issue #75885, a type parameter on the RHS of an alias
declaration must not be declared in the same declaration (but it may be
declared by an enclosing function). This relaxes the spec slightly and
allows for (pre-existing) test cases.
... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2487,11 +2487,1... | 2025-11-18T23:47:44 |
vercel/next.js | e3908468c8e2a895508656cec8806dd65ba80712 | b1ce6042be0c6b2d1da4b31ad7d56192c64c695c | Fix compile error when running next-custom-transform tests (#83715)
`cargo test -p next-custom-transforms` should work again now | [
{
"path": "crates/next-custom-transforms/Cargo.toml",
"patch": "@@ -72,5 +72,7 @@ remove_console = { workspace = true }\n preset_env_base = { workspace = true }\n \n [dev-dependencies]\n-swc_core = { workspace = true, features = [\"testing_transform\", \"plugin_backend_wasmer\"] }\n testing = { workspace = ... | 2026-01-06T20:20:35 |
nodejs/node | 3b574436edec81b30a034708482af4243a5274d7 | 7232f09995b537a0fff8769ab3947e294084bec1 | test: use mustSucceed in test-fs-read
This commit refactors the callback in test/parallel/test-fs-read.js
to use common.mustSucceed() instead of common.mustCall().
common.mustSucceed() is the preferred helper for standard error-first
callbacks that are expected to succeed, as it provides an explicit
check that the `e... | [
{
"path": "test/parallel/test-fs-read-zero-length.js",
"patch": "@@ -8,7 +8,7 @@ const fd = fs.openSync(filepath, 'r');\n const bufferAsync = Buffer.alloc(0);\n const bufferSync = Buffer.alloc(0);\n \n-fs.read(fd, bufferAsync, 0, 0, 0, common.mustCall((err, bytesRead) => {\n+fs.read(fd, bufferAsync, 0, 0, 0... | 2025-07-27T04:54:22 |
facebook/react | 9b62ee71f483502db4f44220552b97757b346094 | 5f05181a8b527260fc0a338edcde0e9d3b35ab20 | docs(eslint-plugin-react-compiler): fix typo (#32149) | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/README.md",
"patch": "@@ -29,7 +29,7 @@ import react from \"eslint-plugin-react\"\n export default [\n // Your existing config\n { ...pluginReact.configs.flat.recommended, settings: { react: { version: \"detect\" } } },\n-+ reactCompiler.co... | 2025-01-22T15:59:50 |
electron/electron | b75e802280b0d8d275b57984c757d188b5934431 | 9ec14b91e7e23f031e7763c95f2bdac4e20a0faf | feat: Corner Smoothing CSS rule (#45185)
* feat: Corner Smoothing
* Patch Blink to add CSS rule and Painting
* Add `system-ui` keyword
* Add `cornerSmoothingCSS` web preference
* Add tests
* Documentation
* fixup! Documentation
* fix: initialize smoothness value
* Use a 1.0 scale factor in tests
* Fix tests f... | [
{
"path": "docs/README.md",
"patch": "@@ -96,8 +96,9 @@ These individual tutorials expand on topics discussed in the guide above.\n * [Chrome Extensions Support](api/extensions.md)\n * [Breaking API Changes](breaking-changes.md)\n \n-### Custom DOM Elements:\n+### Custom Web Features:\n \n+* [`-electron-cor... | 2025-03-24T15:46:12 |
golang/go | a49b0302d0e1d97b67a5f3f3beceafdcbc4c2ef0 | 32f5aadd2ffc60421c62b185fa7668012fb5e73e | net/http: correctly close fake net.Conns
Fix an inverted test in fakeNetConn.Close that caused closing
a connection to not break the other half of the connection.
Change-Id: I4e53f78402f8e503c749d57f294a4524abdccfb5
Reviewed-on: https://go-review.googlesource.com/c/go/+/722220
Reviewed-by: Nicholas Husin <nsh@golang.... | [
{
"path": "src/net/http/netconn_test.go",
"patch": "@@ -180,9 +180,10 @@ func (c *fakeNetConn) Close() error {\n \tc.loc.unlock()\n \t// Remote half of the connection reads EOF after reading any remaining data.\n \tc.rem.lock()\n-\tif c.rem.readErr != nil {\n+\tif c.rem.readErr == nil {\n \t\tc.rem.readErr ... | 2025-11-19T19:25:49 |
vercel/next.js | b1ce6042be0c6b2d1da4b31ad7d56192c64c695c | 74a4af49006cd06f0be54238ef670a105315618f | add compilation error for taint when not enabled (#88173)
Using `taint` APIs from React without enabling `experimental.taint` will
error at runtime because it needs to bundle experimental React, making
it hard to catch and potentially leading to downtime. This updates our
transform to throw an error if we detect that ... | [
{
"path": "crates/next-core/src/next_shared/transforms/next_react_server_components.rs",
"patch": "@@ -36,11 +36,13 @@ pub async fn get_next_react_server_components_transform_rule(\n let enable_mdx_rs = next_config.mdx_rs().await?.is_some();\n let cache_components_enabled = *next_config.enable_cache... | 2026-01-06T19:57:46 |
facebook/react | 5f05181a8b527260fc0a338edcde0e9d3b35ab20 | b000019578a417ec0a1aeec8bda689db240cb28e | Include error name in error chunks (#32157) | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -16,6 +16,7 @@ import type {\n ReactTimeInfo,\n ReactStackTrace,\n ReactCallSite,\n+ ReactErrorInfoDev,\n } from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\n \n@@ -2123,18 +2124,12 @@ function... | 2025-01-22T15:39:00 |
electron/electron | 47cf4e7bfdb6593fc9fe30335b436f4869da65e4 | b8150f33db1c5e4880db7066b30258f48a9dea86 | fix: Wayland resizing border (#46155)
* fix: Wayland resizing border
Closes https://github.com/electron/electron/issues/44543
Refs CL:5180720
Fixes an issue where the resizing border didn't work as expected on Wayland windows.
* fix: border insets when fullscreen | [
{
"path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc",
"patch": "@@ -47,22 +47,28 @@ void ElectronDesktopWindowTreeHostLinux::OnWidgetInitDone() {\n UpdateFrameHints();\n }\n \n+bool ElectronDesktopWindowTreeHostLinux::IsShowingFrame() const {\n+ return !native_window_view_->IsFullscree... | 2025-03-24T11:08:24 |
vercel/next.js | 35a566b383635348f9aada4b385971ed2a32eebc | b983ce479c04c67e1dcc199580186da5a522e50a | [strict-route-types] Ensure cache profiles and routes are type-checked even if .next is excluded (#87768)
Flagged behind `experimental.strictRouteTypes`
This fixes issues where cache profiles where not included or routes not validated if `.next` was excluded to squeeze out every bit of TypeScript performance.
It... | [
{
"path": ".prettierignore",
"patch": "@@ -52,6 +52,8 @@ test/e2e/app-dir/server-source-maps/fixtures/default/internal-pkg/ignored.js\n test/e2e/app-dir/server-source-maps/fixtures/default/internal-pkg/sourcemapped.js\n test/e2e/app-dir/server-source-maps/fixtures/default/external-pkg/sourcemapped.js\n test... | 2026-01-06T15:21:25 |
facebook/react | b000019578a417ec0a1aeec8bda689db240cb28e | 028c8e6cf5ce2a87147a7e03e503ce94c7a7a0cf | DevTools: support useEffectEvent and forward-fix experimental prefix support (#32106)
- Adds support for `experimental_useEffectEvent`, now DevTools will be
able to display this hook for inspected element
- Added a use case to DevTools shell, couldn't add case, because we are
using ReactTestRenderer, which has the ... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -127,6 +127,13 @@ function getPrimitiveStackCache(): Map<string, Array<any>> {\n }\n \n Dispatcher.useId();\n+\n+ if (typeof Dispatcher.useResourceEffect === 'function') {\n+ Dispatcher.useResourceEffect(() =... | 2025-01-22T14:15:48 |
golang/go | 32f5aadd2ffc60421c62b185fa7668012fb5e73e | a18aff805706bfdaeb9aca042111fae32f9f8b61 | cmd/compile: stack allocate backing stores during append
We can already stack allocate the backing store during append if the
resulting backing store doesn't escape. See CL 664299.
This CL enables us to often stack allocate the backing store during
append *even if* the result escapes. Typically, for code like:
f... | [
{
"path": "src/cmd/compile/internal/deadlocals/deadlocals.go",
"patch": "@@ -44,6 +44,11 @@ func Funcs(fns []*ir.Func) {\n \t\t\t\t*as.lhs = ir.BlankNode\n \t\t\t\t*as.rhs = zero\n \t\t\t}\n+\t\t\tif len(assigns) > 0 {\n+\t\t\t\t// k.Defn might be pointing at one of the\n+\t\t\t\t// assignments we're overwr... | 2025-09-12T21:43:19 |
electron/electron | 964090d086ef05acc9a42103d34177395094f76f | e9082ea57a0df6b0e9adf5161857bf99f1d420b8 | fix: ensure `TraverseParent` bails on resource path exit (#46100)
* fix: ensure TraverseParent bails on resource path exit
* Address review changes | [
{
"path": "patches/node/.patches",
"patch": "@@ -47,3 +47,4 @@ chore_add_createexternalizabletwobytestring_to_globals.patch\n feat_add_oom_error_callback_in_node_isolatesettings.patch\n fix_-wnonnull_warning.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creation.patch\n+fix_ensure_traverseparent_bails_on... | 2025-03-24T09:06:59 |
rust-lang/rust | 1d43a421b5ec13e9c8f6d43c92dedad9c9c5fe0c | f3f4ab9205af504e9f58268645b41b743587a965 | Remove `Clone` impl from `CycleError`.
It's unused. | [
{
"path": "compiler/rustc_middle/src/query/plumbing.rs",
"patch": "@@ -50,7 +50,7 @@ pub enum ActiveKeyStatus<'tcx> {\n Poisoned,\n }\n \n-#[derive(Clone, Debug)]\n+#[derive(Debug)]\n pub struct CycleError<'tcx> {\n /// The query and related span that uses the cycle.\n pub usage: Option<Spanned<... | 2026-03-11T03:22:31 |
nodejs/node | 0259df9faf9ff782c417552f4ce3ed96dc9f3254 | 5e1a4fa3e4fdbd936e939ba9672e1fc9bcb8b4e9 | cli: add --use-env-proxy
This does the same as NODE_USE_ENV_PROXY. When both are set,
like other options that can be configured from both sides,
the CLI flag takes precedence.
PR-URL: https://github.com/nodejs/node/pull/59151
Fixes: https://github.com/nodejs/node/issues/59100
Reviewed-By: Ilyas Shabi <ilyasshabi94@gm... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -2999,6 +2999,21 @@ environment variables.\n \n See `SSL_CERT_DIR` and `SSL_CERT_FILE`.\n \n+### `--use-env-proxy`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1.1 - Active Development\n+\n+When enabled, Node.js parses the `HTTP_PROXY`, `HTTPS_PROXY` and... | 2025-07-26T20:43:10 |
facebook/react | 028c8e6cf5ce2a87147a7e03e503ce94c7a7a0cf | 18eaf51bd51fed8dfed661d64c306759101d0bfd | Add Transition Types (#32105)
This adds an isomorphic API to add Transition Types, which represent the
cause, to the current Transition. This is currently mainly for View
Transitions but as a concept it's broader and we might expand it to more
features and object types in the future.
```js
import { unstable_addTransi... | [
{
"path": "fixtures/view-transition/src/components/App.js",
"patch": "@@ -3,6 +3,7 @@ import React, {\n useLayoutEffect,\n useEffect,\n useState,\n+ unstable_addTransitionType as addTransitionType,\n } from 'react';\n \n import Chrome from './Chrome';\n@@ -35,11 +36,23 @@ export default function App(... | 2025-01-21T20:00:02 |
vercel/next.js | 79040a318d29641eb3d96a5a47c92a5f8506e826 | 4cd3ca26d71fc7904ea7030ee8355071efc9502d | [strict-route-types] Don't reject `number` in `config.api.bodyParser.sizeLimit` when validating route (#87633)
Not flagged behind `experimental.strictRouteTypes`. This is just a bug fix.
Got revealed once we typechecked routes in pure Pages Router apps e.g.
```
.next/types/validator.ts:76:11
Type error: Type 'ty... | [
{
"path": "packages/next/src/server/lib/router-utils/typegen.ts",
"patch": "@@ -574,7 +574,7 @@ export function generateValidatorFile(\n default: (req: any, res: any) => ReturnType<NextApiHandler>\n config?: {\n api?: {\n- bodyParser?: boolean | { sizeLimit?: string }\n+ bodyParser?: boole... | 2026-01-06T11:46:43 |
golang/go | ab5956909952aa625ab8d51086beca299477e7b0 | c4bb9653ba28cba4bcd3a3cbb64285c495a03ba2 | go/version: use "custom" as an example of a version suffix
The suffix in a non-standard toolchain version can be any string. Show
more of a middle ground example of a non-standard version suffix,
aligning it with the example used at https://go.dev/doc/toolchain#name.
For #75953.
Change-Id: I98f9c4de98316aecf76c017eb... | [
{
"path": "src/go/version/version.go",
"patch": "@@ -4,7 +4,7 @@\n \n // Package version provides operations on [Go versions]\n // in [Go toolchain name syntax]: strings like\n-// \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-bigcorp\".\n+// \"go1.20\", \"go1.21.0\", \"go1.22rc2\", and \"go1.23.4-... | 2025-11-14T20:40:43 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.