repo stringclasses 11
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 59.2k | files listlengths 1 300 | timestamp timestamp[s]date 2016-04-11 04:39:55 2026-04-09 07:34:40 |
|---|---|---|---|---|---|
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 | 98be8f7659a67caae28527fd7c37ba23b5d7ad3b | c7b206bba4434ed928e9615f31082a9ef3f67c27 | Fix Vec::const_make_global for 0 capacity and ZST's | [
{
"path": "library/alloc/src/vec/mod.rs",
"patch": "@@ -898,6 +898,20 @@ impl<T> Vec<T> {\n where\n T: Freeze,\n {\n+ // const_make_global requires the pointer to point to the beginning of a heap allocation,\n+ // which is not the case when `self.capacity()` is 0, which is why ... | 2026-03-09T23:26:14 |
facebook/react | f13abbbb4466572afdb3932760ae64e12354a3c3 | 43d18bc2d3d31f43706f513a996ef9b4a7495237 | Fix copy functionality in Firefox (#32077)
## Summary
This pull request addresses an issue where the copy functionality was
not working in Firefox. The root cause was the absence of the
'clipboardWrite' permission in the manifest. To ensure consistency
across all supported browsers, the 'clipboardWrite' permissi... | [
{
"path": "packages/react-devtools-extensions/chrome/manifest.json",
"patch": "@@ -43,7 +43,8 @@\n \"permissions\": [\n \"scripting\",\n \"storage\",\n- \"tabs\"\n+ \"tabs\",\n+ \"clipboardWrite\"\n ],\n \"host_permissions\": [\n \"<all_urls>\"",
"additions": 2,
"deletions... | 2025-01-15T18:41:22 |
nodejs/node | 6f045771fa637d28eef115f4a91ea0c6076a177d | a430ef50aae04862637b86c7ed8d9082cccb1ac0 | errors: show url of unsupported attributes in the error message
PR-URL: https://github.com/nodejs/node/pull/58303
Fixes: https://github.com/nodejs/node/issues/56930
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -1338,7 +1338,12 @@ E('ERR_IMPORT_ATTRIBUTE_MISSING',\n E('ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE',\n 'Module \"%s\" is not of type \"%s\"', TypeError);\n E('ERR_IMPORT_ATTRIBUTE_UNSUPPORTED',\n- 'Import attribute \"%s\" with value \"%s\" is not supported'... | 2025-05-26T21:19:23 |
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 |
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 |
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 |
facebook/react | 43d18bc2d3d31f43706f513a996ef9b4a7495237 | b158439a5bfac90289e63cd51e8064c455bea27c | [internal] fix console patch, add RN (#32075)
The forking for `shared/ReactFeatureFlags` doesn't work in the console
patches. Since they're already forked, we can import the internal
ReactFeatureFlags files directly.
Would have caught this in testing a PR sync, but the PR syncs are broken
right now. | [
{
"path": "packages/shared/forks/consoleWithStackDev.rn.js",
"patch": "@@ -6,9 +6,15 @@\n */\n \n import ReactSharedInternals from 'shared/ReactSharedInternals';\n+import * as dynamicFlagsUntyped from 'ReactNativeInternalFeatureFlags';\n+const enableRemoveConsolePatches =\n+ dynamicFlagsUntyped && dynamic... | 2025-01-15T16:20:44 |
nodejs/node | 83052ff9ad7cd4836883f8f7d77b24fef6b6ee00 | d5abfbf5825de940ad7ac2c49da1f487646f05e4 | lib: add `node:` prefix in sys module deprecation warning
PR-URL: https://github.com/nodejs/node/pull/58442
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com> | [
{
"path": "lib/sys.js",
"patch": "@@ -27,5 +27,5 @@\n // Note to maintainers: Although this module has been deprecated for a while\n // we do not plan to remove it. See: https://github.com/nodejs/node/pull/35407#issuecomment-700693439\n module.exports = require('util');\n-process.emitWarning('sys is depreca... | 2025-05-23T22:04:16 |
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 |
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 |
facebook/react | f0edf41e3ee00fbc97873b72b66d62d0f26185b1 | f9f17f6c8d1e747a3e242b36aa35feae31c55f75 | Fix Flight fixture CI (#32070) | [
{
"path": "fixtures/flight/package.json",
"patch": "@@ -65,7 +65,7 @@\n \"webpack-manifest-plugin\": \"^4.0.2\"\n },\n \"devDependencies\": {\n- \"@playwright/test\": \"^1.41.2\"\n+ \"@playwright/test\": \"^1.49.1\"\n },\n \"scripts\": {\n \"predev\": \"cp -r ../../build/oss-experiment... | 2025-01-14T23:29:37 |
nodejs/node | 41e4953832be72d60c309738935b17f1bcb86a41 | 97cf38dec6ebd4cd7e7f14608e170da50104c6c1 | src: improve CompileFunctionAndCacheResult error handling
PR-URL: https://github.com/nodejs/node/pull/58434
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com> | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -1511,24 +1511,22 @@ void ContextifyContext::CompileFunction(\n }\n \n TryCatchScope try_catch(env);\n- Local<Object> result = CompileFunctionAndCacheResult(env,\n- parsing_context,\n- ... | 2025-05-23T09:20:14 |
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 |
facebook/react | 453f5052569dafb52e82e875a8976cf348ed16d4 | b3a95caf61bc716fb618997e6e9f3a0c8c9c8374 | [DevTools] Prevent crash when starting consecutive profiling sessions (#32066)
<!--
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 su... | [
{
"path": "packages/react-devtools-shared/src/devtools/ProfilerStore.js",
"patch": "@@ -191,6 +191,8 @@ export default class ProfilerStore extends EventEmitter<{\n }\n \n startProfiling(): void {\n+ this.clear();\n+\n this._bridge.send('startProfiling', {\n recordChangeDescriptions: this._s... | 2025-01-14T20:23:42 |
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 |
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 | 62855f3b8cd2523040a2380b45aee71c05470fd8 | e201299011153ea68a3a7502827ad8d6196d5a18 | stream: making DecompressionStream spec compilent for trailing junk
Introduce `ERR_TRAILING_JUNK_AFTER_STREAM_END`
error to handle unexpected data after the end of
a compressed stream. This ensures proper error
reporting when decompressing deflate or gzip
streams with trailing junk. Added tests to
verify the behavior.... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -3014,6 +3014,15 @@ category.\n The `node:trace_events` module could not be loaded because Node.js was compiled\n with the `--without-v8-platform` flag.\n \n+<a id=\"ERR_TRAILING_JUNK_AFTER_STREAM_END\"></a>\n+\n+### `ERR_TRAILING_JUNK_AFTER_STREAM_END`\n+\n+Trail... | 2025-05-26T00:38:39 |
rust-lang/rust | f4a95d35d3804e6e238785ed7b4aa252ce10bc3f | d2e3ab641ac3d4ea2e351724b22d6b9f20021b01 | std: move leftover Windows error test | [
{
"path": "library/std/src/sys/io/error/windows.rs",
"patch": "@@ -1,6 +1,9 @@\n use crate::sys::pal::{api, c};\n use crate::{io, ptr};\n \n+#[cfg(test)]\n+mod tests;\n+\n pub fn errno() -> i32 {\n api::get_last_error().code as i32\n }",
"additions": 3,
"deletions": 0
},
{
"path": "libra... | 2026-03-09T17:37:36 |
facebook/react | b3a95caf61bc716fb618997e6e9f3a0c8c9c8374 | 6099351c768670246e8b47e702545d03ddc97320 | fix(eslint-plugin-react-compiler): support v9 context api (#32045)
## Summary
This change fixes a gap in the plugin's support of eslint v9. In one
place that it's using the `SourceCode` api, it's correctly considering
v9's api. But in the other place where `SourceCode` is used, it's only
using the legacy api, which w... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts",
"patch": "@@ -121,7 +121,7 @@ const rule: Rule.RuleModule = {\n },\n create(context: Rule.RuleContext) {\n // Compat with older versions of eslint\n- const sourceCode = context.sourceCode?.text ?? context.g... | 2025-01-13T18:49:31 |
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 |
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
},
{
"path": "s... | 2025-10-29T22:22:14 |
nodejs/node | e201299011153ea68a3a7502827ad8d6196d5a18 | ab68ad031a964bcff15e074f5535e52832484047 | sqlite: handle thrown errors in result callback
This commit updates the aggregate function 'result' callback
handling to not crash when an exception is thrown.
Fixes: https://github.com/nodejs/node/issues/58425
PR-URL: https://github.com/nodejs/node/pull/58426
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Rev... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -375,7 +375,10 @@ class CustomAggregate {\n result = Local<Value>::New(isolate, agg->value);\n }\n \n- JSValueToSQLiteResult(isolate, ctx, result);\n+ if (!result.IsEmpty()) {\n+ JSValueToSQLiteResult(isolate, ctx, result);\n+ }\n+\n i... | 2025-05-25T21:49:37 |
rust-lang/rust | 13a5c24606170f3ee1e3d1351df85c191961da7e | 3ea17bec62b190b66e9fc71ea649cd533fdf58d7 | Fix compile flags | [
{
"path": "tests/crashes/146965.rs",
"patch": "@@ -1,5 +1,5 @@\n //@ known-bug: #146965\n-//@ compile-flags: --crate-type lib\n+//@ compile-flags: --crate-type lib -C opt-level=3\n \n fn conjure<T>() -> T {\n panic!()",
"additions": 1,
"deletions": 1
},
{
"path": "tests/crashes/150263.rs... | 2026-03-07T01:18:59 |
facebook/react | af8532f25121a6b4060e3edd7186f0a58812d771 | cabd8a0e700713900d9573edb162e608268d09ac | [compiler][ez] Patch compilationMode:infer object method edge case (#32055)
Fix for https://github.com/facebook/react/issues/31180 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -992,9 +992,11 @@ function returnsNonNode(\n }\n }\n },\n+ // Skip traversing all nested functions and their return statements\n ArrowFunctionExpression: skipNestedFunctions(node),\n ... | 2025-01-13T17:18:59 |
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 |
nodejs/node | e9c6004a2d580008082b3d6947c8b4c31762ee05 | 996a774ebacabc55aa321f544f4788c2b0d16bcf | test: fix test-buffer-tostring-range on allocation failure
If the test cannot allocate a buffer over 4GB, there is no point
continue testing toString() on it.
This also split the test case to a different file for clarity and
reduce interference with other cases.
PR-URL: https://github.com/nodejs/node/pull/58416
Fixe... | [
{
"path": "test/parallel/test-buffer-tostring-4gb.js",
"patch": "@@ -0,0 +1,20 @@\n+'use strict';\n+\n+// This tests that Buffer.prototype.toString() works with buffers over 4GB.\n+const common = require('../common');\n+\n+// Must not throw when start and end are within kMaxLength\n+// Cannot test on 32bit ... | 2025-05-23T21:13:39 |
facebook/react | 0bf1f39ec6906c666011c0c57aa56aa34a262daf | 056073de4c50b65807cd77ae6715c9ea8ee64277 | View Transition Refs (#32038)
This adds refs to View Transition that can resolve to an instance of:
```js
type ViewTransitionRef = {
name: string,
group: Animatable,
imagePair: Animatable,
old: Animatable,
new: Animatable,
}
```
Animatable is a type that has `animate(keyframes, options)` and
`getAnimations... | [
{
"path": ".eslintrc.js",
"patch": "@@ -589,6 +589,11 @@ module.exports = {\n WheelEventHandler: 'readonly',\n FinalizationRegistry: 'readonly',\n Omit: 'readonly',\n+ Keyframe: 'readonly',\n+ PropertyIndexedKeyframes: 'readonly',\n+ KeyframeAnimationOptions: 'readonly',\n+ GetAnimat... | 2025-01-10T16:51:37 |
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 |
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 |
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 |
nodejs/node | 996a774ebacabc55aa321f544f4788c2b0d16bcf | 8287f6748b6b62096a24e911a223cc783f4328c1 | test: skip in test-buffer-tostring-rangeerror on allocation failure
If the buffer allocation fails due to insufficient memory, there is no
point continue testing toString().
PR-URL: https://github.com/nodejs/node/pull/58415
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Michaël Zasso <targos@protonmail.co... | [
{
"path": "test/parallel/test-buffer-tostring-rangeerror.js",
"patch": "@@ -23,8 +23,22 @@ const message = {\n code: 'ERR_STRING_TOO_LONG',\n name: 'Error',\n };\n-assert.throws(() => Buffer(len).toString('utf8'), message);\n-assert.throws(() => Buffer.allocUnsafeSlow(len).toString('utf8'), message);\n-... | 2025-05-23T21:02:37 |
facebook/react | d2a1b8854d5c4bed713e7e732b598d88e3cc4858 | f2813ee33d37e20029c6698f34946d7f08eb7a95 | fix[DevTools/Tree]: only scroll to item when panel is visible (#32018)
Stacked on https://github.com/facebook/react/pull/31968. See commit on
top.
Fixes an issue with bank tree view, when we are scrolling to an item
while syncing user DOM selection. This should only have an effect on
browser extension. Added eve... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -206,8 +206,12 @@ function createComponentsPanel() {\n }\n });\n \n- // TODO: we should listen to createdPanel.onHidden to unmount some listeners\n- // and potentially stop highlighting\n+ createdPane... | 2025-01-09T18:38:49 |
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 |
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 | 8287f6748b6b62096a24e911a223cc783f4328c1 | 9239373b7ac462c8e95b4d910c2352e2eaf44ac8 | test: fix missing edge case in test-blob-slice-with-large-size
The test only cares about whether a size outside the range
of the 32-bit signed integers works with Blob.prototype.slice().
If it fails due to allocation failure when the system
does not have enough memory, the test should just be skipped.
The test previou... | [
{
"path": "test/pummel/test-blob-slice-with-large-size.js",
"patch": "@@ -1,4 +1,7 @@\n 'use strict';\n+\n+// This tests that Blob.prototype.slice() works correctly when the size of the\n+// Blob is outside the range of 32-bit signed integers.\n const common = require('../common');\n \n // Buffer with size ... | 2025-05-23T20:45:46 |
vercel/next.js | 78f6bea72f5a99ac63e237f464653ea66e1bf959 | eb8fea0fc311211b296ea925dbe74f7e2719a9f0 | Revert "[turbopack] Model `||`, `&&`, and `??` as control flow operators (#85837)" (#86432)
This reverts commit 23b741a97c963b9ee76a74366c451b9a5228facc.
<!-- 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 checklis... | [
{
"path": "turbopack/crates/turbopack-ecmascript/benches/analyzer.rs",
"patch": "@@ -41,12 +41,9 @@ pub fn benchmark(c: &mut Criterion) {\n for result in results {\n let entry = result.unwrap();\n if entry.file_type().unwrap().is_dir() {\n- let input = entry.path().join(\"inpu... | 2025-11-23T11:32:01 |
facebook/react | f2813ee33d37e20029c6698f34946d7f08eb7a95 | d6345482430952306fc83e62d4c14e2622fb1752 | [DevTools] feat[Tree]: set initial scroll offset when inspected element index is set (#31968)
Stacked on https://github.com/facebook/react/pull/31956. See [commit on
top](https://github.com/facebook/react/pull/31968/commits/ecb8df4175342cde7669cd4a6b008b3782eb5b61).
Use `initialScrollOffset` prop for `FixedSizeLi... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js",
"patch": "@@ -47,6 +47,22 @@ export type ItemData = {\n treeFocused: boolean,\n };\n \n+function calculateInitialScrollOffset(\n+ inspectedElementIndex: number | null,\n+ elementHeight: number,\n+): number | void {\n+ if ... | 2025-01-09T18:21:55 |
electron/electron | 5680c628b6718385bbd975b51ec2640aa7df226b | e57b69f106ae9c53a527038db4e8222692fa0ce7 | fix: only remove the 'v' prefix from the git tag name (#45132)
In the old version of get-version.js, it replaces the leading 'v',
i.e. |output.stdout.toString().trim().replace(/^v/g, '')|. However,
in the new version of get-git-version.py, it directly replaces all
'v'. Obviously, it does not conform to the original... | [
{
"path": "script/get-git-version.py",
"patch": "@@ -2,6 +2,7 @@\n \n import subprocess\n import os\n+import re\n \n # Find the nearest tag to the current HEAD.\n # This is equivalent to our old logic of \"use a value in package.json\" for the\n@@ -24,7 +25,8 @@\n cwd=os.path.abspath(os.path.join(os.p... | 2025-01-14T03:36:03 |
nodejs/node | d96d57d5a7cf3a897a81ed9b89d5e883803b2492 | 74acfdf65fbca92eeff69fedd123e5e0225c0d1d | src: fix build when using shared simdutf
PR-URL: https://github.com/nodejs/node/pull/58407
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "src/node_i18n.cc",
"patch": "@@ -174,7 +174,7 @@ MaybeLocal<Object> TranscodeLatin1ToUcs2(Environment* env,\n const char* source,\n const size_t source_length,\n UErrorCode* ... | 2025-05-22T18:12:42 |
vercel/next.js | 8c271102dd2619802aa90d15797790ca1ce0819c | 5bbcd7d2b6c3cecb01d59d3bad8ef84135401173 | Update Next.js auth docs examples (#86361)
<!-- 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
### Imp... | [
{
"path": "docs/01-app/02-guides/authentication.mdx",
"patch": "@@ -1355,51 +1355,96 @@ For example, consider a shared layout that fetches the user data and displays th\n \n This guarantees that wherever `getUser()` is called within your application, the auth check is performed, and prevents developers forg... | 2025-11-21T23:31:48 |
facebook/react | 54cfa95d3a83328868f9fba00d8213e6de6c7d2f | d5f3c50f584ab0212e472fc4f4d599194a0286a7 | DevTools: fix initial host instance selection (#31892)
Related: https://github.com/facebook/react/pull/31342
This fixes RDT behaviour when some DOM element was pre-selected in
built-in browser's Elements panel, and then Components panel of React
DevTools was opened for the first time. With this change, React DevT... | [
{
"path": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -345,8 +345,6 @@ function mountReactDevTools() {\n \n createBridgeAndStore();\n \n- setReactSelectionFromBrowser(bridge);\n-\n createComponentsPanel();\n createProfilerPanel();\n }",
"additions": 0,
"deletions": 2
... | 2025-01-09T18:01:07 |
rust-lang/rust | 1db5d7741dc9c2163ab44a361464a705cbb667e1 | 514f833a6b75de6e66f559efa917fc085dd9604b | address review: use Option for functions which already handle errors | [
{
"path": "src/tools/tidy/src/extra_checks/mod.rs",
"patch": "@@ -114,10 +114,11 @@ pub fn check(\n \n if python_lint || python_fmt || cpp_fmt {\n // Since python lint, format and cpp format share python env, we need to ensure python env is installed before running those checks.\n- match ... | 2026-03-09T21:37:06 |
nodejs/node | 0d3e1b3985ad0b53314bcb7bcbc550f1a67e0129 | f5ac35ee156481088136fa39a4ceffe59850c326 | doc: clarify behavior of --watch-path and --watch flags
Fixes: https://github.com/nodejs/node/issues/58113
PR-URL: https://github.com/nodejs/node/pull/58136
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Uli... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3080,6 +3080,10 @@ Use `--watch-path` to specify what paths to watch.\n This flag cannot be combined with\n `--check`, `--eval`, `--interactive`, or the REPL.\n \n+Note: The `--watch` flag requires a file path as an argument and is incompatible\n+with `--run` or inl... | 2025-05-03T10:07:24 |
vercel/next.js | d7e17617a27c169d8b6934a5638c7cb9725b83b9 | 1923ed69d4dfd5987d006dbba515e5280a94fe97 | add debug logs to onSegmentPrerenderError (#86358)
Adds logs to collectSegmentError when verbose logging is enabled to help
identify errors that occur during this phase. | [
{
"path": "packages/next/errors.json",
"patch": "@@ -946,5 +946,6 @@\n \"945\": \"createNodeStreamFromChunks cannot be used in the edge runtime\",\n \"946\": \"Failed to deserialize errors.\",\n \"947\": \"Expected `sendErrorsToBrowser` to be defined in renderOpts.\",\n- \"948\": \"Failed to serializ... | 2025-11-21T20:24:33 |
facebook/react | d16fe4be5b9b5eee0cfb0f602ad62d6b0842d253 | 8932ca32f47a1441723ae30ef6828998e9587553 | [compiler] Playground qol: shared compilation option directives with tests (#32012)
- Adds @compilationMode(all|infer|syntax|annotation) and
@panicMode(none) directives. This is now shared with our test infra
- Playground still defaults to `infer` mode while tests default to `all`
mode
- See added fixture tests | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt",
"patch": "@@ -0,0 +1,13 @@\n+import { c as _c } from \"react/compiler-runtime\"; // \n+ @compilationMode(all)\n+function nonReactFn() {\n+ const $ = _c(1);\n+ let t0;\n+ if ($[0] === Symbo... | 2025-01-09T17:38:16 |
rust-lang/rust | ca9bd0d157819aeb46dc93bd4c6e9a9446841275 | 2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b | rustdoc-json: Improve docs for `ItemEnum::item_kind`
Fixes https://github.com/rust-lang/rust/pull/153279#discussion_r2875219461 | [
{
"path": "src/rustdoc-json-types/lib.rs",
"patch": "@@ -683,7 +683,13 @@ pub enum ItemEnum {\n }\n \n impl ItemEnum {\n- /// Returns the [`ItemKind`] of this item.\n+ /// Get just the kind of this item, but with no further data.\n+ ///\n+ /// ```rust\n+ /// # use rustdoc_json_types::{ItemKin... | 2026-03-09T20:47:08 |
nodejs/node | 27edff5cb9f742b6cd4dc527b2c00f5931de61e6 | cb88e99bfec7d5d1dfada57a05f7a149461e0abf | doc: fix the order of `process.md` sections
Fixes: https://github.com/nodejs/node/issues/58402
PR-URL: https://github.com/nodejs/node/pull/58403
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -982,6 +982,28 @@ $ bash -c 'exec -a customArgv0 ./node'\n 'customArgv0'\n ```\n \n+## `process.availableMemory()`\n+\n+<!-- YAML\n+added:\n+ - v22.0.0\n+ - v20.13.0\n+changes:\n+ - version:\n+ - v24.0.0\n+ - v22.16.0\n+ pr-url: https://github.com/nod... | 2025-05-22T14:19:14 |
vercel/next.js | 09c2f3c992b9175abe72c1710e3d903a8f92a744 | d93f4c8064f57d5a8db896017a49a6eb3f7a5988 | Revert "Turbopack: add bundle-analyzer to versioning and add dependen… (#86394)
…cy (#86355)"
This reverts commit 5b97f1f7b51dddfc1df42e0bd03730f90ebc9337.
Investigating if it fixes broken publishes. | [
{
"path": "apps/bundle-analyzer/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"@next/bundle-analyzer-ui\",\n- \"version\": \"16.0.2-canary.27\",\n+ \"version\": \"16.0.2-canary.16\",\n \"private\": true,\n \"scripts\": {\n \"build\": \"cross-env NEXT_TEST_NATIVE_DIR=no next build --n... | 2025-11-21T19:40:13 |
facebook/react | 8932ca32f47a1441723ae30ef6828998e9587553 | c4595ca4c86a2a0795bf4d6d5ca4e074babf7fc3 | [playground] Partially revert #32009 (#32035)
I had forgotten that our default error reporting threshold was `none`
due to the fact that build pipelines should not throw errors. This
resets it back to throwing on all errors which mostly is the same as the
eslint plugin.
Closes #32014. | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -78,6 +78,7 @@ function invokeCompiler(\n logEvent: () => {},\n },\n environment,\n+ panicThreshold: 'all_errors',\n });\n const ast = parseInput(source, language);\n let result = transformFromAstSync(... | 2025-01-09T17:21:05 |
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 |
electron/electron | 7d05b7847943a01da3188523e720b17e67d47944 | 062d14e553fa85b14ca67b221911e82c5bc1bd12 | chore: bump chromium to 133.0.6920.0 (main) (#45055)
* chore: bump chromium in DEPS to 133.0.6902.0
* chore: bump chromium in DEPS to 133.0.6903.0
* chore: update patches
* Update PdfViewer Save File Picker to use showSaveFilePicker.
Refs https://chromium-review.googlesource.com/c/chromium/src/+/6074308
... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '133.0.6887.0',\n+ '133.0.6920.0',\n 'node_version':\n 'v22.9.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "chromium_src/BUILD.gn",
"patch... | 2025-01-10T16:52:34 |
nodejs/node | 06fb007988dba902a2fe3e716477679a9b1d699e | d824a929be810e58999af1c9260bb26d0b2d2aee | typings: remove no longer valid `FixedSizeBlobCopyJob` type
PR-URL: https://github.com/nodejs/node/pull/58305
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "typings/internalBinding/blob.d.ts",
"patch": "@@ -2,17 +2,10 @@ declare namespace InternalBlobBinding {\n interface BlobHandle {\n slice(start: number, end: number): BlobHandle;\n }\n-\n- class FixedSizeBlobCopyJob {\n- constructor(handle: BlobHandle);\n- run(): ArrayBuffer | undef... | 2025-05-13T00:20:44 |
facebook/react | 800c9db22e69680f17e238724478537282215f89 | 98418e8902d6045e5138a2e765e026ce2e4de82d | ViewTransitions in Navigation (#32028)
This adds navigation support to the View Transition fixture using both
`history.pushState/popstate` and the Navigation API models.
Because `popstate` does scroll restoration synchronously at the end of
the event, but `startViewTransition` cannot start synchronously, it
would obs... | [
{
"path": "fixtures/view-transition/server/render.js",
"patch": "@@ -20,24 +20,27 @@ export default function render(url, res) {\n console.error('Fatal', error);\n });\n let didError = false;\n- const {pipe, abort} = renderToPipeableStream(<App assets={assets} />, {\n- bootstrapScripts: [assets['... | 2025-01-08T23:57:54 |
vercel/next.js | 36f50c5a11cdd92953f711fca5fadbbe6033ec8a | bf5435972333cd7e5868a7a34f8c203f3f349445 | Send dynamic validation errors to browser via WebSocket (#85818)
By sending the dynamic validation errors to the browser via WebSocket,
instead of rendering a validation outlet into the dynamic dev render
stream, we can avoid artificially delaying the spawned validation to
implicitly wait for the different chunks (sta... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -943,5 +943,8 @@\n \"942\": \"Unexpected stream chunk while in Before stage\",\n \"943\": \"getFlightStream should always receive a ReadableStream when using the edge runtime\",\n \"944\": \"nodeStreamFromReadableStream cannot be used in the edge run... | 2025-11-21T15:10:15 |
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 | 062d14e553fa85b14ca67b221911e82c5bc1bd12 | 59ed1db9a2419e1d949838e1ae0a0f74554f2a2a | perf: cache whether or not ELECTRON_DEBUG_NOTIFICATIONS env var is set (#45143)
* perf: cache whether or not ELECTRON_DEBUG_NOTIFICATIONS env var is set
* chore: remove unused #include | [
{
"path": "shell/browser/notifications/mac/cocoa_notification.mm",
"patch": "@@ -44,7 +44,7 @@\n [notification_ setInformativeText:base::SysUTF16ToNSString(options.msg)];\n [notification_ setIdentifier:identifier];\n \n- if (getenv(\"ELECTRON_DEBUG_NOTIFICATIONS\")) {\n+ if (electron::debug_notificati... | 2025-01-09T02:46:17 |
facebook/react | 38127b281567d43972b7fb44c3fcb0d1806e7c10 | 3a5496b3f56f1c0b138811a564299ee0b64a64ba | [Fiber] Support only View Transitions v2 (#31996)
Stacked on #31975.
We're going to recommend that the primary way you style a View
Transition is using a View Transition Class (and/or Type). These are
only available in the View Transitions v2 spec. When they're not
available it's better to fallback to just not animat... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1209,19 +1209,28 @@ export function startViewTransition(\n rootContainer.nodeType === DOCUMENT_NODE\n ? rootContainer\n : rootContainer.ownerDocument;\n- // $FlowFixMe[prop-missing]\n- if (typeof owner... | 2025-01-08T18:22:15 |
vercel/next.js | bf5435972333cd7e5868a7a34f8c203f3f349445 | 29e6b0e38ca255a578103aa2d748b94d7da31d83 | Add reasons for some server-external-packages (#86254)
<!-- 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 Contribut... | [
{
"path": "packages/next/src/lib/server-external-packages.jsonc",
"patch": "@@ -13,10 +13,13 @@\n \"@node-rs/bcrypt\",\n \"@prisma/client\",\n \"@react-pdf/renderer\",\n+ // Native Node.js addons\n \"@sentry/profiling-node\",\n \"@sparticuz/chromium\",\n \"@sparticuz/chromium-min\",\n+ // Nati... | 2025-11-21T14:03:48 |
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 |
electron/electron | c2d0a28fa2e1940433db30b78b2dffbe2c20f0bc | 2745771a22dc7aec4364fec758804e0b7f230357 | ci: enable debugging mode when building electron_dist_zip (#45108) | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -69,7 +69,7 @@ runs:\n shell: bash\n run: |\n cd src\n- e build --target electron:electron_dist_zip -j $NUMBER_OF_NINJA_PROCESSES\n+ e build --target electron:electron_dist_zip -j $NUMBER_OF_NINJA_PROCESSES... | 2025-01-06T19:41:48 |
facebook/react | 3a5496b3f56f1c0b138811a564299ee0b64a64ba | a4d122f2d192fe0b6480e669cca43c8f953aaf85 | [Fiber] Use className on <ViewTransition> to assign view-transition-class (#31999)
Stacked on #31975.
This is the primary way we recommend styling your View Transitions since
it allows for reusable styling such as a CSS library specializing in
View Transitions in a way that's composable and without naming
conflicts. ... | [
{
"path": "fixtures/view-transition/package.json",
"patch": "@@ -4,15 +4,23 @@\n \"private\": true,\n \"devDependencies\": {\n \"concurrently\": \"3.1.0\",\n- \"http-proxy-middleware\": \"0.17.3\",\n- \"react-scripts\": \"0.9.5\"\n+ \"http-proxy-middleware\": \"3.0.3\",\n+ \"react-script... | 2025-01-08T18:22:06 |
golang/go | 46e5e2b09a6df80a3b6472c5f7ca5739365b6676 | 3da03566858a1676b7d928366db11e301c511b94 | runtime: define PanicBounds in funcdata.h
The comment in funcdata.h says that the constants must agree
with those in internal/abi/symtab.go. Make that so.
Change-Id: Ib64146bfb31fdecfc1cc6ae03ae746a1b4a4d22e
Reviewed-on: https://go-review.googlesource.com/c/go/+/715521
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-... | [
{
"path": "src/runtime/funcdata.h",
"patch": "@@ -12,6 +12,7 @@\n #define PCDATA_StackMapIndex 1\n #define PCDATA_InlTreeIndex 2\n #define PCDATA_ArgLiveIndex 3\n+#define PCDATA_PanicBounds 4\n \n #define FUNCDATA_ArgsPointerMaps 0 /* garbage collector blocks */\n #define FUNCDATA_LocalsPointerMaps 1",
... | 2025-10-27T23:51:01 |
vercel/next.js | 33e1764252b239f899f222ad210efa1444795f4e | 10e0828fb9a8d6dc586105b28691e94f7390c923 | Bump swc to 48 (#86240)
Upgrade swc from 45 to 48
Based on #85540
- In the AST, strings now contain a `Wtf8Atom` (= not utf8), while `Ident`s keep using the utf8 `Atom`.
- swc's comment printing logic also changed slighted, moving some comments around
- ~~Some comments are getting lost along the way and/or att... | [
{
"path": "Cargo.lock",
"patch": "@@ -319,9 +319,9 @@ dependencies = [\n \n [[package]]\n name = \"ast_node\"\n-version = \"4.0.0\"\n+version = \"5.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c4902c7f39335a2390500ee791d6cb1778e742c7b97952497ec81449a5bfa3a7\"\n+c... | 2025-11-21T11:47:13 |
electron/electron | e0f72dc332ee2503f05e7e5e8615db77e17a3783 | caf24ef417365d0a65c10b1285520de7fb051483 | chore: bump chromium to 133.0.6887.0 (main) (#44986)
* chore: bump chromium in DEPS to 133.0.6887.0
* chore: update render_widget_host_view_base.patch
trivial manual intervention needed due to header context shear
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5952851
* chore: update osr_s... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '133.0.6878.0',\n+ '133.0.6887.0',\n 'node_version':\n 'v22.9.0',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "patches/boringssl/revert_track_ssl... | 2024-12-18T06:45:19 |
nodejs/node | 0bbe5d34e74e8b4cc161a4777b161bfb917cf1e5 | d2a13695bf1661f942c51f257a9c8d778b77ff2d | test: show more information in test-http2-debug upon failure
Use spawnSyncAndAssert() so that the stderr is logged when it
doesn't match expectations.
PR-URL: https://github.com/nodejs/node/pull/58391
Refs: https://github.com/nodejs/node/issues/58353
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca... | [
{
"path": "test/parallel/test-http2-debug.js",
"patch": "@@ -1,27 +1,31 @@\n 'use strict';\n+\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n const assert = require('assert');\n-const child_process = require('child_process');\n+const { spawnSyncAndAssert ... | 2025-05-20T19:00:50 |
golang/go | 12c8d14d947ba922e19e3360ce5decd2bb848257 | 1f4d14e493516af6017ed9b467e7daf772752f98 | errors: document that the target of Is must be comparable
If target is not comparable, then errors.Is(err, target) can panic.
(Put another way, if target == target panics, then Is can panic.)
Document that the target must be comparable.
For #74488
Change-Id: I694dc4c91a608b80f044f06dd1c6ac32b8e77c9c
Reviewed-on: ht... | [
{
"path": "src/errors/wrap.go",
"patch": "@@ -25,6 +25,7 @@ func Unwrap(err error) error {\n }\n \n // Is reports whether any error in err's tree matches target.\n+// The target must be comparable.\n //\n // The tree consists of err itself, followed by the errors obtained by repeatedly\n // calling its Unwr... | 2025-10-27T19:27:12 |
vercel/next.js | e9a3ba935f9fe99fbfbd634627de28736892c976 | e393401b77dc3df8fb4a2f5582df76c05f0094a1 | Turbopack: fix import chain by determining depth locally per route (#86350)
### What?
fix the import chain showing only modules relevant to the current route
fix module graph being merged by path. It's keyed by identifier now.
also add more info to import chain, e. g. layer info. and more details in tooltip. | [
{
"path": "apps/bundle-analyzer/app/page.tsx",
"patch": "@@ -15,6 +15,7 @@ import { Input } from '@/components/ui/input'\n import { Skeleton, TreemapSkeleton } from '@/components/ui/skeleton'\n import { ToggleGroup, ToggleGroupItem } from '@/components/ui/toggle-group'\n import { AnalyzeData, ModulesData } ... | 2025-11-21T10:39:18 |
electron/electron | caf24ef417365d0a65c10b1285520de7fb051483 | ff13bcd08dc7aaa4498062e429a0ad30a2571227 | fix: add patch to fix desktopCapturer.getSources not returning electron windows on Windows (#45000)
* fix: add patch to fix desktopCapturer.getSources not returning electron window on Windows
* add chromium link
* Update patches/chromium/fix_desktop_capturer_show_own_window.patch
Co-authored-by: Keeley Hammon... | [
{
"path": "shell/browser/api/electron_api_desktop_capturer.cc",
"patch": "@@ -286,7 +286,7 @@ void DesktopCapturer::StartHandling(bool capture_window,\n capture_screen_ = false;\n capture_window_ = capture_window;\n window_capturer_ = std::make_unique<NativeDesktopMediaList>(\n- D... | 2024-12-17T23:20:44 |
facebook/react | a4d122f2d192fe0b6480e669cca43c8f953aaf85 | e30c6693e4c7f2aec25b07f5df69a87163dbee81 | Add <ViewTransition> Component (#31975)
This will provide the opt-in for using [View
Transitions](https://developer.mozilla.org/en-US/docs/Web/API/View_Transition_API)
in React.
View Transitions only trigger for async updates like `startTransition`,
`useDeferredValue`, Actions or `<Suspense>` revealing from fallback ... | [
{
"path": "fixtures/view-transition/README.md",
"patch": "@@ -0,0 +1,30 @@\n+# View Transition\n+\n+A test case for View Transitions.\n+\n+## Setup\n+\n+To reference a local build of React, first run `npm run build` at the root\n+of the React project. Then:\n+\n+```\n+cd fixtures/view-transition\n+yarn\n+ya... | 2025-01-08T17:11:18 |
nodejs/node | 38757c906d90da68ffbc6277e2d719b04c71a902 | 7c74205aa7a5c5aa9ec1b4006fdd9b1c0345e831 | test_runner: add level parameter to reporter.diagnostic
Added a parameter to allow severity-based formatting for
diagnostic messages. Defaults to 'info'.
This update enables better control over message presentation
(e.g., coloring) based on severity levels such as 'info', 'warn',
and 'error'.
Refs: https://github.com... | [
{
"path": "doc/api/test.md",
"patch": "@@ -3016,6 +3016,11 @@ defined. The corresponding declaration ordered event is `'test:start'`.\n `undefined` if the test was run through the REPL.\n * `message` {string} The diagnostic message.\n * `nesting` {number} The nesting level of the test.\n+ * `level`... | 2025-05-19T08:28:05 |
golang/go | 2c91c33e88c68a5f6cc2f10296698faa305f6267 | 73d7635fae502f63a3774e1265f739bff8778113 | crypto/subtle,cmd/compile: add intrinsics for ConstantTimeSelect and *Eq
Targeting crypto/subtle rather than
crypto/internal/fips140/subtle after discussion with Filippo.
goos: linux
goarch: amd64
pkg: crypto/subtle
cpu: AMD Ryzen 5 3600 6-Core Processor
│ /tmp/old.logs │ /tmp/new.l... | [
{
"path": "src/cmd/compile/internal/ssagen/intrinsics.go",
"patch": "@@ -1602,6 +1602,36 @@ func initIntrinsics(cfg *intrinsicBuildConfig) {\n \t\t\treturn s.newValue1(ssa.OpZeroExt8to64, types.Types[types.TUINT64], out)\n \t\t},\n \t\tsys.AMD64)\n+\n+\t/******** crypto/subtle ********/\n+\t// We implement ... | 2025-10-26T21:19:30 |
vercel/next.js | e393401b77dc3df8fb4a2f5582df76c05f0094a1 | e31608f15ff10f4da5a4635cfd8a61ec111c7a80 | fix issue - #86365 (#86366)
Fix issue [#86365](https://github.com/vercel/next.js/issues/86365)
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "packages/next/README.md",
"patch": "@@ -39,7 +39,7 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n \n ### Good First Issues:\n \n-We have a list of **[good first issues](https://github.com/vercel/next.js/labels/%22good%20first%20issue%22)** that contain bugs ... | 2025-11-21T10:15:13 |
electron/electron | dc74092a090cb6448951036e951ae0f4d775cc98 | f89813401dc5510f6ed2941db6bc42a2a1601677 | fix: better prompt not supported message in window-setup.ts (#45017)
Update window-setup.ts
The message should simply read "is not supported" or, alternatively, "is not, and will not, be supported", but not "is and will not be supported". | [
{
"path": "lib/renderer/window-setup.ts",
"patch": "@@ -15,7 +15,7 @@ export const windowSetup = (isWebView: boolean, isHiddenPage: boolean) => {\n \n // But we do not support prompt().\n window.prompt = function () {\n- throw new Error('prompt() is and will not be supported.');\n+ throw new Error... | 2024-12-16T20:38:25 |
rust-lang/rust | 44d6cd2344cd636f4ea371d56ae3d27aaa110ad6 | 64b72a1fa5449d928d5f553b01a596b78ee255d2 | Fix environ on FreeBSD with cdylib targets that use -Wl,--no-undefined .
Instead of relying on the linker to find the 'environ' symbol, use
dlsym.
Fixes #153451
Sponsored by: ConnectWise | [
{
"path": "library/std/src/sys/env/unix.rs",
"patch": "@@ -38,8 +38,25 @@ pub unsafe fn environ() -> *mut *const *const c_char {\n unsafe { libc::_NSGetEnviron() as *mut *const *const c_char }\n }\n \n+// On FreeBSD, environ comes from CRT rather than libc\n+#[cfg(target_os = \"freebsd\")]\n+pub unsafe ... | 2026-03-05T19:46:23 |
nodejs/node | ac8706196b565014b1f100a63feb973e4ec6ddde | db2aae8022d50bd6546274031ff95b12fc347358 | build: fix pointer compression builds
- Remove usage of deprecated V8::InitializeSandbox().
- External code space and pointer compression shared cage must
be enabled when pointer compression builds are enabled.
- We cannot enable the sandbox because that requires allocating
the array buffer backing stores in the s... | [
{
"path": "common.gypi",
"patch": "@@ -80,6 +80,7 @@\n # Variables controlling external defines exposed in public headers.\n 'v8_enable_map_packing%': 0,\n 'v8_enable_pointer_compression_shared_cage%': 0,\n+ 'v8_enable_external_code_space%': 0,\n 'v8_enable_sandbox%': 0,\n 'v8_enable_... | 2025-05-04T18:58:06 |
golang/go | 9a77aa4f083f7458a29c7c13adfe3d2ca8c864ea | 77dc1380308f5129952c16b6940dea7ddd4e17b9 | cmd/compile: add position info to sccp debug messages
Change-Id: Ic568dd3b2e3ebebb1b6aaa41ee78a12d4e8d3f06
Reviewed-on: https://go-review.googlesource.com/c/go/+/714221
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBo... | [
{
"path": "src/cmd/compile/internal/ssa/sccp.go",
"patch": "@@ -4,10 +4,6 @@\n \n package ssa\n \n-import (\n-\t\"fmt\"\n-)\n-\n // ----------------------------------------------------------------------------\n // Sparse Conditional Constant Propagation\n //\n@@ -118,7 +114,7 @@ func sccp(f *Func) {\n \tcon... | 2025-10-25T20:08:59 |
vercel/next.js | 897d021d96a3ffea25479b1c18335f65abb7dc91 | afec7a52ddedc107f7f8c16ea1ed836dfc633a6f | docs: csr-bailout debugging (#86359)
I think maybe these others need a hint too, let's get started with,
`errors/missing-suspense-with-csr-bailout` and `errors/prerender-error`
- errors/blocking-route.mdx
- errors/deopted-into-client-rendering.mdx
- errors/dynamic-server-error.mdx
- errors/next-prerender-crypto.mdx
-... | [
{
"path": "errors/missing-suspense-with-csr-bailout.mdx",
"patch": "@@ -173,8 +173,19 @@ module.exports = {\n \n This configuration option will be removed in a future major version.\n \n+## Debugging\n+\n+If you're having trouble locating where `useSearchParams()` is being used without a Suspense boundary, ... | 2025-11-21T10:11:12 |
electron/electron | 3aa0014d238046854c612fc5b011469a34ecdef9 | 69479b2fb7c5bbbf7e9bfff51f6867829439059c | fix: chrome.i18n unavailable in extension service workers (#45031)
https://chromium-review.googlesource.com/c/chromium/src/+/3362491 | [
{
"path": "shell/common/extensions/api/_api_features.json",
"patch": "@@ -24,20 +24,6 @@\n \"action.setBadgeTextColor\": {\n \"channel\": \"stable\"\n },\n- \"tabs\": {\n- \"channel\": \"stable\",\n- \"extension_types\": [\"extension\"],\n- \"contexts\": [\"privileged_extension\"]\n- },\n... | 2024-12-16T14:46:20 |
nodejs/node | 39ab68b2c1790677281921fe2aa461670cdb79ee | 73e7bd1c0e3e22874d1217ca718bb32ec4c05fd4 | readline: add stricter validation for functions called after closed
PR-URL: https://github.com/nodejs/node/pull/58283
Fixes: https://github.com/nodejs/node/issues/57678
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/main/repl.js",
"patch": "@@ -45,7 +45,6 @@ if (process.env.NODE_REPL_EXTERNAL_MODULE) {\n }\n repl.on('exit', () => {\n if (repl._flushing) {\n- repl.pause();\n return repl.once('flushHistory', () => {\n process.exit();\n }... | 2025-05-18T19:46:38 |
rust-lang/rust | 342ad0401a16aebfa2e2160a099764168a4fe2f5 | 98e7077b903559d7a4fafb775cd5292cc9427b67 | ast_passes: unsupported arch w/ scalable vectors
Emit an error when attempting to compile a `#[rustc_scalable_vector]`
type for a architecture that fundamentally doesn't support scalable
vectors. Ultimately this is just a diagnostic improvement for an internal
attribute as users should never be doing this. | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -1371,11 +1371,16 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n ItemKind::Struct(ident, generics, vdata) => {\n self.with_tilde_const(Some(TildeConstReason::Struct { span: item.span }), |this| {\n ... | 2026-03-09T12:39:47 |
golang/go | 53be78630a25cfe53a1bf3e97e000bbe97848286 | dec2b4c83dd8b86b56e901f832819e76ff6969df | cmd/compile: use topo-sort in prove to correctly learn facts while walking once
Fixes #68857
Change-Id: Ideb359cc6f1550afb4c79f02d25a00d0ae5e5c50
Reviewed-on: https://go-review.googlesource.com/c/go/+/714920
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Jo... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/allocators.go",
"patch": "@@ -122,6 +122,11 @@ func genAllocators() {\n \t\t\ttyp: \"[]ID\",\n \t\t\tbase: \"LimitSlice\",\n \t\t},\n+\t\t{\n+\t\t\tname: \"UintSlice\",\n+\t\t\ttyp: \"[]uint\",\n+\t\t\tbase: \"LimitSlice\",\n+\t\t},\n \t}\n \n \tw := new(bytes.... | 2025-10-25T15:00:18 |
facebook/react | 6efbc0897f08d688c614baa205f1e1625b3a7c83 | 7b402084af3f43284eed3c7c3155762a871fc817 | [playground] Use default compiler config (#32009)
The playground's compilation mode is currently set to 'all' along with
reporting all errors.
This tends to be misleading since people usually expect a 1:1 match
between how the playground works with what the compiler does in their
codebase, eg https://github.com/react... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -78,8 +78,6 @@ function invokeCompiler(\n logEvent: () => {},\n },\n environment,\n- compilationMode: 'all',\n- panicThreshold: 'all_errors',\n });\n const ast = parseInput(source, language);\n let ... | 2025-01-07T16:53:27 |
electron/electron | e2e71502b19114f91b9f622745c52b07ff8708a6 | be1a3dce83739ddd5fd916615a08c13eb9db7766 | fix: custom spell-checker stuck in infinite loop (#45001)
`ReadUnicodeCharacter` updates index to the last character read, and not after it. We need to manually increment it to move to the next character.
It also doesn't validate that the index is valid, so we need to check that index is within bounds.
Refs: #44... | [
{
"path": "shell/renderer/api/electron_api_spell_check_client.cc",
"patch": "@@ -32,7 +32,9 @@ namespace {\n \n bool HasWordCharacters(const std::u16string& text, size_t index) {\n base_icu::UChar32 code;\n- while (base::ReadUnicodeCharacter(text.c_str(), text.size(), &index, &code)) {\n+ while (index <... | 2024-12-13T16:47:29 |
vercel/next.js | afec7a52ddedc107f7f8c16ea1ed836dfc633a6f | 5b97f1f7b51dddfc1df42e0bd03730f90ebc9337 | Turbopack: remove Asset supertrait from Module trait. Modules don't have content (#86339)
Turbopack: remove Asset supertrait from Module trait. Modules don't have content
remove unneeded Asset implementation
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoot... | [
{
"path": "crates/next-core/src/next_client_reference/ecmascript_client_reference/ecmascript_client_reference_module.rs",
"patch": "@@ -4,9 +4,9 @@ use anyhow::{Context, Result, bail};\n use indoc::writedoc;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{IntoTraitRef, ResolvedVc, ValueToString, Vc};... | 2025-11-21T09:24:14 |
nodejs/node | 6d61175db038c5802d2f7c243f3f16c0a748178a | 974773572e3b2ab1f17c6c79f3421c5cff812b02 | deps: V8: backport 1d3362c55396
Original commit message:
[float16array] Turn flag on by default
Float16Array has shipped in blink since M135. It is unlikely it'll
unship by now, so turn the flag on by default.
Bug: 42203953
Change-Id: Ibd9de407b8810dd7bcdb46194fe04fc290ff8fb8
Reviewed-on: ht... | [
{
"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.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n... | 2025-05-06T21:40:37 |
golang/go | dec2b4c83dd8b86b56e901f832819e76ff6969df | 916e682d5167faad1bb961ec28cac74f05f145f7 | runtime: avoid bound check in freebsd binuptime
Fixes #76062
Change-Id: I683c1232aaeac12b0b3688472bb277adb95ad542
Reviewed-on: https://go-review.googlesource.com/c/go/+/715180
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/runtime/vdso_freebsd.go",
"patch": "@@ -54,6 +54,9 @@ func binuptime(abs bool) (bt bintime) {\n \t\t}\n \n \t\tcurr := atomic.Load(&timekeepSharedPage.current) // atomic_load_acq_32\n+\t\tif curr >= uint32(len(timehands)) {\n+\t\t\treturn zeroBintime\n+\t\t}\n \t\tth := &timehands[curr]\n \t\... | 2025-10-27T09:47:20 |
facebook/react | 7b402084af3f43284eed3c7c3155762a871fc817 | 3314162535c45360ee178d7bf1dc03c291f45930 | Fix notify target, add lines (#32006) | [
{
"path": ".github/workflows/discord_notify.yml",
"patch": "@@ -1,22 +1,21 @@\n name: Discord Notify\n \n on:\n- pull_request:\n+ pull_request_target:\n types: [ labeled ]\n- \n+\n jobs:\n notify:\n- if: ${{ github.event.label.name == 'React Core Team' }}\n- runs-on: ubuntu-latest\n- ... | 2025-01-07T14:34:18 |
vercel/next.js | 5b97f1f7b51dddfc1df42e0bd03730f90ebc9337 | c42d0e3d27b4b3af4a0054261d5968ba5e6fb72e | Turbopack: add bundle-analyzer to versioning and add dependency (#86355)
### What?
fix lerna config and add dependency to make turborepo happy | [
{
"path": "apps/bundle-analyzer/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"@next/bundle-analyzer-ui\",\n- \"version\": \"16.0.2-canary.16\",\n+ \"version\": \"16.0.2-canary.27\",\n \"private\": true,\n \"scripts\": {\n \"build\": \"cross-env NEXT_TEST_NATIVE_DIR=no next build --n... | 2025-11-21T07:32:18 |
nodejs/node | 974773572e3b2ab1f17c6c79f3421c5cff812b02 | 70bfc398e971d05bd3bf2ef313949f1ddb6d0b48 | deps: V8: cherry-pick 4f38995c8295
Original commit message:
[explicit-resource-management] Turn flag on by default
This feature has shipped since M134 on the blink side, and is highly
unlikely to be unshipped now, so flip the flag on.
Bug: 42203506
Change-Id: I9554cea721983464b150c0de70b58a4b50f... | [
{
"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.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-05-05T17:35:01 |
rust-lang/rust | 225b7e001247ff1f6bbfffa884a078a5a3545f8c | 085c58f2c0c7db692a2eaf2b8970ff474eed9183 | fix ICE in `const_c_variadic` when passing ZSTs | [
{
"path": "compiler/rustc_const_eval/src/interpret/call.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_hir::find_attr;\n use rustc_middle::ty::layout::{IntegerExt, TyAndLayout};\n use rustc_middle::ty::{self, AdtDef, Instance, Ty, VariantDef};\n use rustc_middle::{bug, mir, span_bug};\n-use rustc_target::callco... | 2026-03-04T10:36:25 |
electron/electron | be1a3dce83739ddd5fd916615a08c13eb9db7766 | a5b433988433adb9481e90a80cd7642041b6f8ed | build: use github actions for windows (#44136)
* build: test windows runner
* build: try build windows on windows?
* build: take win/cross changes
* build: use bash as default shell always
* build: configure git for windows build tools
* build: bash as default
* build: configure windows correctly
... | [
{
"path": ".gitattributes",
"patch": "@@ -1,6 +1,9 @@\n # `git apply` and friends don't understand CRLF, even on windows. Force those\n # files to be checked out with LF endings even if core.autocrlf is true.\n *.patch text eol=lf\n+DEPS text eol=lf\n+yarn.lock text eol=lf\n+script/zip_manifests/*.manifest ... | 2024-12-12T16:51:24 |
golang/go | 916e682d5167faad1bb961ec28cac74f05f145f7 | 2835b994fb8c7125180d912a457308d64a30542f | cmd/internal/obj, cmd/asm: reclassify the offset of memory access operations on loong64
This CL also fixes the encoding error of LL/SC[V] instruction and
adds the handling of offset greater than 16 bits in MOV{W/V}P instructions.
Change-Id: I7a8fab4b68a6839da81c5e59af1f42289d00ef61
Reviewed-on: https://go-review.goog... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -467,6 +467,7 @@ func TestLOONG64Encoder(t *testing.T) {\n \ttestEndToEnd(t, \"loong64\", \"loong64enc3\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc4\")\n \ttestEndToEnd(t, \"loong64\", \"loong64enc5\")\n+\ttestEndToEnd(t, \"loong64\", ... | 2025-09-24T09:21:40 |
facebook/react | 83be48b9dee25737063ca64880f82ef9fea11737 | defffdbba43f89b95d9f67a4fb0fa146c1211734 | [tests] fix hidden use() warnings (#31984)
`spyOnDev` is such a footgun. | [
{
"path": "packages/react-reconciler/src/__tests__/ReactUse-test.js",
"patch": "@@ -27,6 +27,7 @@ let waitForPaint;\n let assertLog;\n let waitForAll;\n let waitForMicrotasks;\n+let assertConsoleErrorDev;\n \n describe('ReactUse', () => {\n beforeEach(() => {\n@@ -51,6 +52,7 @@ describe('ReactUse', () => ... | 2025-01-06T19:12:35 |
vercel/next.js | 1dd580dad8e8977dddb9876fc260558c567618d2 | f7b7f3c14ffeff685a2ad4a6d5df292fab687979 | docs: add example for enabling both AVIF and WebP image formats for better image optimization (#86191)
## Title
docs: add example for enabling both AVIF and WebP image formats
## Description
### What?
This PR enhances the image component documentation by adding examples
showing how to enable both AVIF and WebP image... | [
{
"path": "docs/01-app/03-api-reference/02-components/image.mdx",
"patch": "@@ -752,10 +752,21 @@ module.exports = {\n }\n ```\n \n+You can also enable both AVIF and WebP formats together. AVIF will be preferred for browsers that support it, with WebP as a fallback:\n+\n+```js filename=\"next.config.js\"\n+... | 2025-11-20T22:27:07 |
nodejs/node | 70bfc398e971d05bd3bf2ef313949f1ddb6d0b48 | 6bfc525cf05aa3cdc7d99065d1765a673eec7cc5 | deps: V8: cherry-pick 044b9b6f589d
Original commit message:
[explicit-resource-management] disallow using in switch cases
This CL disallows `using` and `await using` in switch cases.
This was a normative change that got consensus in TC39 meetings:
https://github.com/rbuckton/ecma262/pull/14
Bug:... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2025-05-01T23:57:26 |
golang/go | d8a32f3d4b093d6a0d2235bf729bbef1d0b489d2 | b2af92270f5e19c759b94912470a32b5e44a5b2e | go/types, types2: wrap Named.fromRHS into Named.rhs
In debug mode, the Named.rhs method asserts that Named is in a state
with Named.fromRHS populated.
This caught a missing call to Named.unpack in validtype, which has been
added.
Change-Id: Id3f95f78f03d98a6efe87af6ac24f2ac2e285f96
Reviewed-on: https://go-review.goo... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -562,6 +562,16 @@ func (t *Named) methodIndex(name string, foldCase bool) int {\n \treturn -1\n }\n \n+// rhs returns [Named.fromRHS].\n+//\n+// In debug mode, it also asserts that n is in an appropriate state.\n+func (n *Named) rhs() Type {... | 2025-10-23T16:15:21 |
electron/electron | a5b433988433adb9481e90a80cd7642041b6f8ed | 6961e9458a521ac76d7966e983e82c972d88d595 | fix: add missing index arg in `navigationHistory.canGoToOffset` (#44989)
fix: add missing arg | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -514,9 +514,9 @@ WebContents.prototype.canGoForward = function () {\n };\n \n const canGoToOffsetDeprecated = deprecate.warnOnce('webContents.canGoToOffset', 'webContents.navigationHistory.canGoToOffset');\n-WebContents.prototype.canGoToOffset = func... | 2024-12-12T15:56:27 |
facebook/react | 9627d71c5050c7665a44e499fc643acce8a8a5e4 | 301a18a6afeaea9c6113d7e459025ba69f436b24 | fix: `react-compiler-runtime` should be cjs (#31993) | [
{
"path": "compiler/packages/react-compiler-runtime/scripts/build.js",
"patch": "@@ -29,7 +29,7 @@ const config = {\n outfile: path.join(__dirname, '../dist/index.js'),\n bundle: true,\n external: ['react'],\n- format: argv.p === 'browser' ? 'esm' : 'cjs',\n+ format: 'cjs',\n platform: argv.p,\n ... | 2025-01-06T14:06:09 |
nodejs/node | 6bfc525cf05aa3cdc7d99065d1765a673eec7cc5 | 754d28e34fa218bc6e5266729e2d33e2ecb59bb1 | deps: V8: cherry-pick d2ad518a0b57
Original commit message:
[serializer] serialize ExternalPointers in InterceptorInfo properly
Previously the ObjectSerializer didn't serialize the ExternalPointers
in the InterceptorInfo properly, but this case can be shadowed by
the fact that they get promoted to RO... | [
{
"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.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2025-05-14T16:19:32 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.