repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | 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 |
nodejs/node | 3d22cdb7130cbf98e447e2f3f8b61e4ce8725e2c | a63126409ad4334dd5d838c39806f38c020748b9 | src: remove fast API for InternalModuleStat
There are several motivation for removing this:
1. The implementation does not align with InternalModuleStat,
most noticably it does not namespace the path or convert
it to UTF-16 before using it with std::filesystem::path
on Windows which could crash on non-Englis... | [
{
"path": "src/node_file.cc",
"patch": "@@ -64,7 +64,6 @@ using v8::Array;\n using v8::BigInt;\n using v8::Context;\n using v8::EscapableHandleScope;\n-using v8::FastApiCallbackOptions;\n using v8::FunctionCallbackInfo;\n using v8::FunctionTemplate;\n using v8::HandleScope;\n@@ -1073,32 +1072,6 @@ static vo... | 2025-06-03T10:15:39 |
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 |
facebook/react | ae90522bc6ea80d87f22e845024dc82e2c05e3d5 | 45804af18d589fd2c181f3b020f07661c46b73ea | chore: remove unsued deps from React Compiler Babel plugin (#31315)
<!--
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/package.json",
"patch": "@@ -18,16 +18,11 @@\n \"lint\": \"yarn eslint src\"\n },\n \"dependencies\": {\n- \"@babel/generator\": \"7.2.0\",\n- \"@babel/types\": \"^7.19.0\",\n- \"chalk\": \"4\",\n- \"invariant\": \"^2.2.4\",\n- ... | 2024-10-22T17:51:58 |
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 |
nodejs/node | 22685b8aafdea488e9f83c298cbb297581341158 | 91b3bd3fe62a0cf158c7c3dab8eb7997780f49d2 | lib: graduate error codes that have been around for years
PR-URL: https://github.com/nodejs/node/pull/58541
Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Revi... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -1796,8 +1796,6 @@ time.\n \n ### `ERR_INPUT_TYPE_NOT_ALLOWED`\n \n-> Stability: 1 - Experimental\n-\n The `--input-type` flag was used to attempt to execute a file. This flag can\n only be used with input via `--eval`, `--print`, or `STDIN`.\n \n@@ -3095,17 +3093... | 2025-06-03T03:35:18 |
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 |
rust-lang/rust | 7ec050ac609988a083b42d66b7ed33dc513b5597 | 05ac9d4da294072ed7518524cc8c66f4db6959be | Fix tests and tidy up wtf-8 failures
Co-authored-by: TKanX <124454788+TKanX@users.noreply.github.com> | [
{
"path": "library/core/src/wtf8.rs",
"patch": "@@ -487,6 +487,9 @@ unsafe fn slice_unchecked(s: &Wtf8, begin: usize, end: usize) -> &Wtf8 {\n #[inline(never)]\n fn slice_error_fail(s: &Wtf8, begin: usize, end: usize) -> ! {\n let len = s.len();\n+ if begin > len {\n+ panic!(\"start byte index... | 2026-03-11T02:49:18 |
facebook/react | 45804af18d589fd2c181f3b020f07661c46b73ea | 69d4b800a6c31561bd928eef4a4592fdb38471cb | [flow] Eliminate usage of more than 1-arg `React.AbstractComponent` in React codebase (#31314)
<!--
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 mandato... | [
{
"path": ".eslintrc.js",
"patch": "@@ -569,6 +569,7 @@ module.exports = {\n React$Node: 'readonly',\n React$Portal: 'readonly',\n React$Ref: 'readonly',\n+ React$RefSetter: 'readonly',\n ReadableStreamController: 'readonly',\n ReadableStreamReader: 'readonly',\n RequestInfo: 'rea... | 2024-10-21T23:17:41 |
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 |
nodejs/node | 2be863be08ff9f16eae6bb907388c354c55c3bfc | eb159a8cfd04c1a63c874e3d70b42b916604ef99 | dns: fix dns query cache implementation
PR-URL: https://github.com/nodejs/node/pull/58404
Refs: https://github.com/nodejs/node/pull/57640
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com> | [
{
"path": "src/cares_wrap.cc",
"patch": "@@ -879,9 +879,9 @@ void ChannelWrap::Setup() {\n }\n \n /* We do the call to ares_init_option for caller. */\n- const int optmask =\n- ARES_OPT_FLAGS | ARES_OPT_TIMEOUTMS |\n- ARES_OPT_SOCK_STATE_CB | ARES_OPT_TRIES;\n+ const int optmask = ARES_OPT_F... | 2025-06-02T15:29:36 |
facebook/react | 65a56d0e99261481c721334a3ec4561d173594cd | f11bd3439cfd0e95c490a58059562b781c34c3bb | Fix timing issue with fake promise resolving sync (#31304) | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1078,7 +1078,7 @@ function loadServerReference<A: Iterable<any>, T>(\n if (!metaData.bound) {\n return (requireModule(serverReference): any);\n } else {\n- promise = metaData.bound;\n+ promise = Promise.resolve... | 2024-10-20T06:35:15 |
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,
"language": "Unknown"
},
{
"path": "chromiu... | 2025-01-10T16:52:34 |
facebook/react | f11bd3439cfd0e95c490a58059562b781c34c3bb | 251b666dedde430b7767e1745e71155db8ec585d | Fix types (#31303) | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1073,11 +1073,16 @@ function loadServerReference<A: Iterable<any>, T>(\n metaData.id,\n );\n \n- let promise = preloadModule(serverReference);\n- if (!promise && !metaData.bound) {\n- return (requireModule(serverReferen... | 2024-10-20T06:23:31 |
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 |
nodejs/node | ef9cd8f062565842ba52450093a87cd4498926dd | 9dc41f27f4a07604a69d817b903f87083ba56b34 | build,win: fix dll build
Fixes: https://github.com/nodejs/node/issues/58208
PR-URL: https://github.com/nodejs/node/pull/58357
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_builtins.cc",
"patch": "@@ -64,6 +64,11 @@ BuiltinLoader::BuiltinLoader()\n #endif // HAVE_AMARO\n }\n \n+std::ranges::keys_view<std::ranges::ref_view<const BuiltinSourceMap>>\n+BuiltinLoader::GetBuiltinIds() const {\n+ return std::views::keys(*source_.read());\n+}\n+\n bool BuiltinLoa... | 2025-06-02T11:23:28 |
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 | d57217544aa2e98ff6370b8bf5f6aafb253fa642 | 35b63ca90db4d5abe3bba6e5a47466d2c7b5a836 | [fixture] Update compiler to use latest package (#31289)
Pins the compiler to the latest version in our fixture app. | [
{
"path": "compiler/fixtures/runtime-compat/app-18/package.json",
"patch": "@@ -11,7 +11,7 @@\n },\n \"dependencies\": {\n \"react\": \"^18.3.1\",\n- \"react-compiler-runtime\": \"0.0.0-experimental-8d8e73f-20241009\",\n+ \"react-compiler-runtime\": \"19.0.0-beta-9ee70a1-20241017\",\n \"re... | 2024-10-18T17:32:26 |
rust-lang/rust | 05ac9d4da294072ed7518524cc8c66f4db6959be | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | Remove string content from panics
String content can be useful for debugging panics, particularly when you
are working on a small codebase where you can infer more about the path
taken through your program based on the content of the string.
In production deployments that upload crashes for centralized debugging,
str... | [
{
"path": "library/alloctests/tests/str.rs",
"patch": "@@ -612,14 +612,14 @@ mod slice_index {\n data: \"abcdef\";\n good: data[4..4] == \"\";\n bad: data[4..3];\n- message: \"begin > end (4 > 3)\";\n+ message: \"byte range starts at 4 but ends at 3\... | 2026-03-10T21:26:20 |
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 |
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 |
nodejs/node | d89657c29e69043289ae0f75d87cca634d396bff | 4513e9c50fe5a380a211402b34a637261064aa69 | http2: add diagnostics channel 'http2.server.stream.error'
Signed-off-by: Darshan Sen <raisinten@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58512
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "doc/api/diagnostics_channel.md",
"patch": "@@ -1253,6 +1253,13 @@ Emitted when a stream is created on the server.\n \n Emitted when a stream is started on the server.\n \n+`http2.server.stream.error`\n+\n+* `stream` {ServerHttp2Stream}\n+* `error` {Error}\n+\n+Emitted when an error occurs during ... | 2025-06-01T13:08:20 |
facebook/react | b8ae38f88b70f8a0ea96421a4355266aafefee7f | 1ce58ddd672ea67631bc52e85be32962b24df6ae | Audit try/finally around console patching (#31286)
Otherwise if something errors they can be left patched.
[Review without
whitespace](https://github.com/facebook/react/pull/31286/files?w=1) | [
{
"path": "packages/react-devtools-shared/src/backend/shared/DevToolsComponentStackFrame.js",
"patch": "@@ -82,105 +82,104 @@ export function describeNativeComponentFrame(\n const previousDispatcher = currentDispatcherRef.H;\n currentDispatcherRef.H = null;\n disableLogs();\n+ try {\n+ // NOTE: ke... | 2024-10-18T16:05:20 |
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 |
rust-lang/rust | ed25d008a0e3c848d5c9d3724002cae154d44843 | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | Tweak E0599 note
When not finding a method for a type, but finding it for a single other impl, special case the output to emit a single message instead of a list.
```
error[E0599]: no associated item named `C` found for struct `Fail<i32, u32>` in the current scope
--> $DIR/wrong-projection-self-ty-invalid-bivariant... | [
{
"path": "compiler/rustc_hir_typeck/src/method/suggest.rs",
"patch": "@@ -14,7 +14,7 @@ use rustc_data_structures::sorted_map::SortedMap;\n use rustc_data_structures::unord::UnordSet;\n use rustc_errors::codes::*;\n use rustc_errors::{\n- Applicability, Diag, MultiSpan, StashKey, listify, pluralize, str... | 2026-03-11T00:43:04 |
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 |
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 |
nodejs/node | 705bcc2a006400f4f31803de0e126a1092e07478 | 62ba6196d40c12f56c34f38cecab061dfd4681cc | module: move Module._debug to end-of-life
Was runtime deprecated 7 years ago. Probably safe to remove now.
PR-URL: https://github.com/nodejs/node/pull/58473
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -1769,14 +1769,17 @@ not handle all certificate subjects correctly and should not be used.\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58473\n+ description: End-of-Life.\n - version: v9.0.0\n ... | 2025-05-26T17:57:17 |
facebook/react | a3d9ea05bf01f3c3d7aedc2d938c581ad11fd14a | 77b637d61200eef4dca4cbe4258da358d6337c7b | Delete `__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED` from React Native Renderer (#31276)
## Summary
The React Native Renderer exports a
`__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED` property with a
single method that has no remaining call sites:
`computeComponentStackForErrorReporting`
This PR c... | [
{
"path": "packages/react-native-renderer/src/ReactNativeRenderer.js",
"patch": "@@ -26,7 +26,6 @@ import {\n defaultOnRecoverableError,\n } from 'react-reconciler/src/ReactFiberReconciler';\n // TODO: direct imports like some-package/src/* are bad. Fix me.\n-import {getStackByFiberInDevAndProd} from 'rea... | 2024-10-16T18:19:01 |
rust-lang/rust | 73fe905f3c43f8829c36b04eb52ba534e448fa53 | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | Detect inherent method behind deref being shadowed by trait method
```
error[E0277]: the trait bound `Rc<RefCell<S>>: Borrow<S>` is not satisfied
--> $DIR/shadowed-intrinsic-method-deref.rs:16:22
|
LL | let sb : &S = &s.borrow();
| ^^^^^^ the trait `Borrow<S>` is not implemented for `R... | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -3178,6 +3178,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n self.suggest_tuple_wrapping(err, root_obligation, obligation);\n }\n+ self.suggest_shadowed_inherent_method(err,... | 2026-03-10T21:53:03 |
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,
"language": "Unknown"
},
{
"path": "patches... | 2024-12-18T06:45:19 |
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 |
nodejs/node | 7622f0d050c66bd02f578536529b3c494cf58878 | 0854aa33244dc5e058631070e5a8dd037241438a | src: fix FIPS init error handling
If `--enable-fips` or `--force-fips` fails to be applied during
`ProcessFipsOptions()`, the node process might exit with
`ExitCode::kNoFailure` because `ERR_GET_REASON(ERR_peek_error())` can
return `0` since `ncrypto::testFipsEnabled()` does not populate the
OpenSSL error queue.
You ... | [
{
"path": "src/node.cc",
"patch": "@@ -1167,10 +1167,7 @@ InitializeOncePerProcessInternal(const std::vector<std::string>& args,\n }\n #endif\n if (!crypto::ProcessFipsOptions()) {\n- // XXX: ERR_GET_REASON does not return something that is\n- // useful as an exit code at all.\n- resu... | 2025-05-30T11:23:57 |
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 | be94b108264e30873d4b679771e07ce14491e413 | 6c4bbc783286bf6eebd9927cb52e8fec5ad4dd74 | [Flight] Enable sync stack traces for errors and console replay (#31270)
This was gated behind `enableOwnerStacks` since they share some code
paths but it's really part of `enableServerComponentLogs`.
This just includes the server-side regular stack on Error/replayed logs
but doesn't use console.createTask and do... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -46,6 +46,7 @@ import {\n enableRefAsProp,\n enableFlightReadableStream,\n enableOwnerStacks,\n+ enableServerComponentLogs,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -1928,7 +1929,7 @@ function resolveErrorDev(\n ... | 2024-10-16T14:57:08 |
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 |
nodejs/node | a8e9f634d3e5b0fb1a5c3f5e22a8193adba30cff | 4eeb78b999067573b40893ace174b13035fb370b | src: fix possible dereference of null pointer
There is a CHECK_NOT_NULL check before dereferencing node_env on
line 710 in the "if" block, but there is no CHECK_NOT_NULL check before
dereferencing node_env on line 721. Maybe it makes sense to put
CHECK_NOT_NULL right after calling the Environment::GetCurrent function.... | [
{
"path": "src/node_api.cc",
"patch": "@@ -704,9 +704,9 @@ void napi_module_register_by_symbol(v8::Local<v8::Object> exports,\n napi_addon_register_func init,\n int32_t module_api_version) {\n node::Environment* node_env = node::Envir... | 2025-05-29T20:01:48 |
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 | 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 |
facebook/react | 6c4bbc783286bf6eebd9927cb52e8fec5ad4dd74 | 838258144652ab2ef0cbe54d03e9bdd454348d48 | [Re-land] Make prerendering always non-blocking (#31268)
Follows https://github.com/facebook/react/pull/31238
___
This is a partial re-land of
https://github.com/facebook/react/pull/31056. We saw breakages surface
after the original land and had to revert. Now that they've been fixed,
let's try this again. Th... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js",
"patch": "@@ -744,7 +744,7 @@ describe('ReactDOMFiberAsync', () => {\n // Because it suspended, it remains on the current path\n expect(div.textContent).toBe('/path/a');\n });\n- assertLog([]);\n+ assertLog(gate('... | 2024-10-15T20:47:02 |
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 |
nodejs/node | 8e2fb67bd9a4af907b359930a9e06d6343303c25 | da079e0350975bded5182cd0320e01381a944e33 | test: mark `test-http2-debug` as flaky on LinuxONE
PR-URL: https://github.com/nodejs/node/pull/58494
Refs: https://github.com/nodejs/node/issues/58353
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James ... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -41,6 +41,10 @@ test-esm-loader-hooks-inspect-wait: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54534\n test-runner-run-watch: PASS, FLAKY\n \n+[$system==linux && $arch==s390x]\n+# https://github.com/nodejs/node/issues/58353\n+test-http2-debu... | 2025-05-28T11:47:08 |
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 |
facebook/react | c7c68ef842639f8535942b6247ef758221d289fb | 9806a4b0d4e659863f3f04d32da50f545c7199a8 | React DevTools 6.0.0 -> 6.0.1 (#31263)
Changes in this release:
* Fix React Compiler badging ([poteto](https://github.com/poteto) in
[#31196](https://github.com/facebook/react/pull/31196))
* fix[react-devtools]: fixed timeline profiler tests
([hoxyq](https://github.com/hoxyq) in
[#31261](https://github.com/face... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"6.0.0\",\n+ \"version\": \"6.0.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2024-10-15T13:15:26 |
golang/go | b2af92270f5e19c759b94912470a32b5e44a5b2e | 92decdcbaaef89e93163bb54885aa52fb5a13881 | go/types, types2: verify stateMask transitions in debug mode
Recently, we've changed the representation of Named type state from
an integer to a bit mask, which is a bit more complicated. To make
sure we uphold state invariants, we are adding a verification step
on each state transition.
This uncovered a few places w... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -215,7 +215,7 @@ func NewNamed(obj *TypeName, underlying Type, methods []*Func) *Named {\n // All others:\n // Effectively, nothing happens.\n func (n *Named) unpack() *Named {\n-\tif n.stateHas(unpacked | lazyLoaded) { // avoid locking belo... | 2025-10-22T18:04:09 |
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 |
facebook/react | 9806a4b0d4e659863f3f04d32da50f545c7199a8 | ec2bf022450107a77cc2850ec96b9173fc6f40eb | [DevTools] Fix React Compiler badging (#31196)
In #31140 we switched over the uMC polyfill to use memo instead of state
since memo would FastRefresh properly. However this busted devtools'
badging of compiled components; this PR fixes it.
TODO: tests
Co-authored-by: Ruslan Lesiutin <rdlesyutin@gmail.com>
----... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -599,6 +599,8 @@ export function getInternalReactConstants(version: string): {\n !shouldSkipForgetCheck &&\n // $FlowFixMe[incompatible-type] fiber.updateQueue is mixed\n (fiber.updateQueue?.memoCache !=... | 2024-10-15T11:53:45 |
golang/go | 189f2c08cc769fdc98d28ec536010b6f119e645f | f619b4a00d6a7ce2fbb84729cdfe764697cb2171 | time: rewrite IsZero method to use wall and ext fields
Using wall and ext fields will be more efficient.
Fixes #76001
Change-Id: If2b9f597562e0d0d3f8ab300556fa559926480a0
GitHub-Last-Rev: 4a91948413079047cb6c382ed29844f456f3064d
GitHub-Pull-Request: golang/go#76006
Reviewed-on: https://go-review.googlesource.com/c/g... | [
{
"path": "src/time/time.go",
"patch": "@@ -260,7 +260,11 @@ func (t *Time) mono() int64 {\n // IsZero reports whether t represents the zero time instant,\n // January 1, year 1, 00:00:00 UTC.\n func (t Time) IsZero() bool {\n-\treturn t.sec() == 0 && t.nsec() == 0\n+\t// If hasMonotonic is set in t.wall, t... | 2025-10-27T04:43:32 |
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 |
nodejs/node | 47081ee21c9ee9954dfb059b590399cd4bf0f4d2 | f77a96cd760086b659683d8f5ed90954cf933124 | src: fix -Wreturn-stack-address error
PR-URL: https://github.com/nodejs/node/pull/58439
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "src/node_config_file.cc",
"patch": "@@ -23,7 +23,7 @@ std::optional<std::string_view> ConfigReader::GetDataFromArgs(\n } else if (it->starts_with(flag_path)) {\n // Case: \"--experimental-config-file=foo\"\n if (it->size() > flag_path.size() && (*it)[flag_path.size()] == '=') {\n-... | 2025-05-28T13:56:20 |
facebook/react | ec2bf022450107a77cc2850ec96b9173fc6f40eb | 13411e4589f3d999727c5322781e2dd7bef3b256 | fix[react-devtools]: fixed timeline profiler tests (#31261)
Fixes tests against React 18 after
https://github.com/facebook/react/pull/31154:
- Set `supportsTimeline` to true for `Store`.
- Execute `store.profilerStore.startProfiling` after `legacyRender`
import, because this is where `react-dom` is imported and re... | [
{
"path": "packages/react-devtools-shared/src/__tests__/TimelineProfiler-test.js",
"patch": "@@ -1280,13 +1280,13 @@ describe('Timeline profiler', () => {\n });\n \n describe('when profiling', () => {\n- beforeEach(() => {\n- utils.act(() => store.profilerStore.startProfiling());\n- ... | 2024-10-15T11:46:05 |
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 |
golang/go | ca379b1c562c22889b73a17915688e35cbb5ceb9 | 83a44bde645eb56495504a2d3845fa1c1ccf7aa5 | cmd/go: remove loaderstate dependency
This change removes the dependency on the module loader state from the
`QueryMatchesMainModulesError.Error()` method.
This commit is part of the overall effort to eliminate global
modloader state.
Change-Id: I47241587a0bf9b578931628f35ed3b936a0cb04a
Reviewed-on: https://go-revie... | [
{
"path": "src/cmd/go/internal/modget/get.go",
"patch": "@@ -735,7 +735,12 @@ func (r *resolver) queryNone(loaderstate *modload.State, ctx context.Context, q\n \t\t\t\t// However, neither of those behaviors would be consistent with the\n \t\t\t\t// plain meaning of the query. To try to reduce confusion, rej... | 2025-10-24T16:52:37 |
facebook/react | 13411e4589f3d999727c5322781e2dd7bef3b256 | 6cf8518505b198c58c950976174b1642760d48ee | [Re-land] Make prerendering always non-blocking: Add missing feature flag checks (#31238)
This is a partial re-land of
https://github.com/facebook/react/pull/31056. We saw breakages surface
after the original land and had to revert. Now that they've been fixed,
let's try this again. This time we'll split up the com... | [
{
"path": "packages/react-reconciler/src/ReactFiberCompleteWork.js",
"patch": "@@ -42,6 +42,7 @@ import {\n enableRenderableContext,\n passChildrenWhenCloningPersistedNodes,\n disableLegacyMode,\n+ enableSiblingPrerendering,\n } from 'shared/ReactFeatureFlags';\n \n import {now} from './Scheduler';\n... | 2024-10-14T18:12:23 |
nodejs/node | 3877800ffb60e64b02466907f9a4978c5c5b01a4 | 5a2344310434f6c5ebba92fc885d073bd9909ba1 | doc,src,test: fix typos
PR-URL: https://github.com/nodejs/node/pull/58477
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Review... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -2625,7 +2625,7 @@ changes:\n - v23.4.0\n - v22.13.0\n pr-url: https://github.com/nodejs/node/pull/55897\n- description: Snapsnot testing is no longer experimental.\n+ description: Snapshot testing is no longer experimental.\n -->\n \n Regenerates t... | 2025-05-28T08:18:47 |
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 | 0afbeb510269dc4aaaff733166085eba42144712 | 7b506d106fce234b165ea6322e5ee1356490220e | runtime: add ppc and s390 to linux 32 bits syscall build constraints for gccgo
Theses are not supported by the go compiler but it may helps porting to gccgo.
This is similar to reverting CL 712740 however unlike reverting:
- it fixes the build tags so that 32 & 64 bits
constraints are complement of each other
- it ... | [
{
"path": "src/runtime/os_linux_futex32.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build linux && (386 || arm || mips || mipsle)\n+//go:build linux && (386 || arm || mips || mipsle || (gccgo && (ppc || ... | 2025-10-23T08:47:58 |
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 |
facebook/react | 6cf5bd90135823d249fb5270896f238d04ec296c | 9c525ea44aef36b614c8dac2f351ebec0917606c | [compiler] Allow refs to be lazily initialized during render
Summary:
The official guidance for useRef notes an exception to the rule that refs cannot be accessed during render: to avoid recreating the ref's contents, you can test that the ref is uninitialized and then initialize it using an if statement:
```
if (ref... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -7,8 +7,8 @@\n \n import {CompilerError, ErrorSeverity} from '../CompilerError';\n import {\n+ BlockId,\n HIRFunction,\n- Identifier,\n IdentifierId,\n Place,\n SourceLocation,\n@@ ... | 2024-10-11T23:14:32 |
nodejs/node | 52430b9839c31f846a788125efda82887d115e21 | de57d9b4393c74185693286280397965603439fa | benchmark: fix broken fs.cpSync benchmark
PR-URL: https://github.com/nodejs/node/pull/58472
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "benchmark/fs/bench-cpSync.js",
"patch": "@@ -8,7 +8,10 @@ const tmpdir = require('../../test/common/tmpdir');\n const bench = common.createBenchmark(main, {\n n: [1, 100, 10_000],\n dereference: ['true', 'false'],\n- force: ['true', 'false'],\n+ // When `force` is `true` the `cpSync` functi... | 2025-05-27T16:53:04 |
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 |
golang/go | 9926e1124e5dd6397f16f36456aedbee101bc6f3 | 2c4fd7b2cd08234fe13c0e9de8d42dba33086a81 | cmd/go: use local state object in `bug.runBug`
This commit modifies `bug.runBug` to construct a new modload.State
object using the new constructor instead of the current global
`modload.LoaderState` variable.
This commit is part of the overall effort to eliminate global
modloader state.
[git-generate]
cd src/cmd/go/... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -42,16 +42,17 @@ func init() {\n }\n \n func runBug(ctx context.Context, cmd *base.Command, args []string) {\n+\tmoduleLoaderState := modload.NewState()\n \tif len(args) > 0 {\n \t\tbase.Fatalf(\"go: bug takes no arguments\")\n \t}\n-\twork.BuildInit(... | 2025-10-08T23:56:51 |
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 |
facebook/react | 9c525ea44aef36b614c8dac2f351ebec0917606c | 2011074ab8fc6182a2ad0af2766409c1e15f7fc4 | Bump micromatch from 4.0.5 to 4.0.8 in /compiler (#31186)
Bumps [micromatch](https://github.com/micromatch/micromatch) from 4.0.5
to 4.0.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/micromatch/micromatch/releases">micromatch's
releases</a>.</em></p>
<blockquote>
... | [
{
"path": "compiler/yarn.lock",
"patch": "@@ -3527,12 +3527,12 @@ brace-expansion@^2.0.1:\n dependencies:\n balanced-match \"^1.0.0\"\n \n-braces@^3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity... | 2024-10-11T20:29:34 |
electron/electron | 2c698d3f75614ae7942b593b9ad3ead63b05a3e9 | cf5a4640f5e888138e8c122adcee23b73801d3ee | fix: context-menu emitted twice (#44978)
* fix: context-menu emitted twice
* refactor: simplify disabling draggable regions
* cleanup | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -371,6 +371,9 @@ namespace electron::api {\n \n namespace {\n \n+// Global toggle for disabling draggable regions checks.\n+bool g_disable_draggable_regions = false;\n+\n constexpr std::string_view CursorTypeToString(\n ui::mojom::... | 2024-12-11T16:42:48 |
nodejs/node | c969649535b7cdbc2c89a0aac0a7676bacd0b7da | bbc059378bbb1b0a415472fdf44edfa8f675b9a4 | zlib: remove mentions of unexposed Z_TREES constant
`Z_TREES` is never exposed on `DefineZlibConstants()`, hence it shall be
removed.
This fix is applicable to v18+.
Refs: https://github.com/nodejs/node/blob/main/src/node_zlib.cc
PR-URL: https://github.com/nodejs/node/pull/58371
Reviewed-By: Yagiz Nizipli <yagiz@niz... | [
{
"path": "doc/api/zlib.md",
"patch": "@@ -615,7 +615,6 @@ Allowed flush values.\n * `zlib.constants.Z_FULL_FLUSH`\n * `zlib.constants.Z_FINISH`\n * `zlib.constants.Z_BLOCK`\n-* `zlib.constants.Z_TREES`\n \n Return codes for the compression/decompression functions. Negative\n values are errors, positive val... | 2025-05-27T03:00:30 |
golang/go | ccf4192a313ec46380c70369537085eacaa17fa8 | f5403f15f021521ed82d91e8f28a6865d9aeab34 | cmd/go: make ImportMissingError work with local state
This change adds fields to the type `ImportMissingError` so
that the `Error()` method can be called without accessing the global
`LoaderState` variable.
This commit is part of the overall effort to eliminate global
modloader state.
Change-Id: Ib313faeb27ae44e9ac6... | [
{
"path": "src/cmd/go/internal/modload/import.go",
"patch": "@@ -29,10 +29,14 @@ import (\n )\n \n type ImportMissingError struct {\n-\tPath string\n-\tModule module.Version\n-\tQueryErr error\n-\n+\tPath string\n+\tModule module.Version\n+\tQueryErr error\n+\tmodContaini... | 2025-10-03T04:50:03 |
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 |
facebook/react | 2011074ab8fc6182a2ad0af2766409c1e15f7fc4 | 09111202d617477b63507b41e8b6c3101b4afd87 | Bump json5 from 2.2.1 to 2.2.3 in /compiler (#31185)
Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/json5/json5/releases">json5's
releases</a>.</em></p>
<blockquote>
<h2>v2.2.3</h2>
<ul>
<li>Fix: jso... | [
{
"path": "compiler/yarn.lock",
"patch": "@@ -6186,12 +6186,7 @@ json-stable-stringify-without-jsonify@^1.0.1:\n resolved \"https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651\"\n integrity sha512-B... | 2024-10-11T20:29:18 |
nodejs/node | bbc059378bbb1b0a415472fdf44edfa8f675b9a4 | e7255b6bab2b6ddc379bc79aa45343ecd2c125b4 | esm: implement import.meta.main
Boolean value to check if an ES Module is the entrypoint of the
current process.
Implements: #57226
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/57804
Fixes: https://github.com/nodejs/node/issues/57226
Reviewed-By: James M... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -400,6 +400,35 @@ import { readFileSync } from 'node:fs';\n const buffer = readFileSync(new URL('./data.proto', import.meta.url));\n ```\n \n+### `import.meta.main`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+> Stability: 1.0 - Early development\n+\n+* {boolea... | 2025-05-26T22:31:54 |
golang/go | f5403f15f021521ed82d91e8f28a6865d9aeab34 | a26f860fa4fee16f77e0ed13eb8286168b3bf097 | debug/pe: check for zdebug_gdb_scripts section in testDWARF
The debug_gdb_scripts sectino may or may not be compressed. Check
for both.
For #76022.
Change-Id: I7541e0aa2b90f6b3b694e02d3dfa99f9019a9e5a
Reviewed-on: https://go-review.googlesource.com/c/go/+/714461
Reviewed-by: David Chase <drchase@google.com>
LUCI-Try... | [
{
"path": "src/debug/pe/file_test.go",
"patch": "@@ -413,7 +413,7 @@ func testDWARF(t *testing.T, linktype int) {\n \n \tvar foundDebugGDBScriptsSection bool\n \tfor _, sect := range f.Sections {\n-\t\tif sect.Name == \".debug_gdb_scripts\" {\n+\t\tif sect.Name == \".debug_gdb_scripts\" || sect.Name == \".z... | 2025-10-24T20:27:15 |
facebook/react | 70fb1363912a35fc59c1bf648b963c3a0b719b97 | fbfe37ee4010d36dad795d9144bb88fbeb8e1419 | Fix limit without owner stacks (#31179)
Move out of gate. | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -3465,6 +3465,8 @@ function renderConsoleValue(\n if (element._owner != null) {\n outlineComponentInfo(request, element._owner);\n }\n+ doNotLimit.add(element.props);\n+\n if (enableOwnerStacks)... | 2024-10-10T18:52:33 |
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 |
electron/electron | cf5a4640f5e888138e8c122adcee23b73801d3ee | 3bd5f14cee3ba62a654a37af76b92110e886630f | chore: bump chromium to 133.0.6878.0 (main) (#44831)
* chore: bump chromium in DEPS to 133.0.6858.0
* chore: bump chromium in DEPS to 133.0.6860.0
* chore: update patches
v8/revert_fastapi_remove_dynamic_overload_resolution.patch had some additions due to https://chromium-review.googlesource.com/c/v8/v8/+/602... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '133.0.6852.0',\n+ '133.0.6878.0',\n 'node_version':\n 'v22.9.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "build/r... | 2024-12-10T19:16:07 |
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 |
golang/go | 747fe2efedfdc43f797b4fc1672e29ff7a01ec6a | 94f47fc03f4c916decb7f1387fcf56eae388f7cf | encoding/json/v2: fix typo in documentation about errors.AsType
CL 708495 mass migrated the stdlib to use errors.AsType.
It rewrote the documentation, but uses the non-pointer type
of SemanticError or SyntacticError, which is invalid since
the Error method is declared on the pointer receiver.
Also, call errors.AsType... | [
{
"path": "src/encoding/json/jsontext/state.go",
"patch": "@@ -24,7 +24,8 @@ import (\n // The name of a duplicate JSON object member can be extracted as:\n //\n //\terr := ...\n-//\tif serr, ok := errors.AsType[jsontext.SyntacticError](err); ok && serr.Err == jsontext.ErrDuplicateName {\n+//\tserr, ok := e... | 2025-10-24T17:55:48 |
facebook/react | fbfe37ee4010d36dad795d9144bb88fbeb8e1419 | 77f438931f3da3bfe3dff91825737f06f2637f79 | [compiler] Test fixture: non-reactive phi creates 'dangling ref' scope (#31103) | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-invalid-phi-as-dependency.expect.md",
"patch": "@@ -0,0 +1,91 @@\n+\n+## Input\n+\n+```javascript\n+import {CONST_TRUE, Stringify, mutate, useIdentity} from 'shared-runtime';\n+\n+/**\n+ * Fixture showing an edge ca... | 2024-10-10T16:23:44 |
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 |
electron/electron | 578c1e5dae1cb341c97d329902abc089b4f7c612 | 208dc568d8541d3cdd0fbebc17c348447ba0ae0d | fix: build failure when PDF viewer is disabled (#44960)
* fix: unused variable warning when the PDF viewer is disabled
* fix: unused function error when PDF viewer is disabled
error: unused function ParseManifest [-Werror,-Wunused-function] | [
{
"path": "shell/browser/extensions/electron_extension_system.cc",
"patch": "@@ -87,6 +87,7 @@ void ElectronExtensionSystem::InitForRegularProfile(bool extensions_enabled) {\n management_policy_ = std::make_unique<ManagementPolicy>();\n }\n \n+#if BUILDFLAG(ENABLE_PDF_VIEWER)\n namespace {\n \n std::uniqu... | 2024-12-06T08:54:04 |
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 |
golang/go | cf7c1a4cbb917b6c5d80d1d9443a40cb7720db75 | 2b8eded4f4fd3d421d1fb9af68c774142abcf208 | [dev.simd] cmd/compile, simd: add SHA features
This CL also fixed some bugs left in CL 712181.
Change-Id: I9cb6cd9fbaef307f352809bf21b8fec3eb62721a
Reviewed-on: https://go-review.googlesource.com/c/go/+/712361
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1955,6 +1955,18 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPTERNLOGQ512load:\n \t\tp = simdV31loadResultInArg0Imm8(s, v)\n \n+\tcase ssa.OpAMD64SHA1MSG1128,\n+\t\tssa.OpAMD64SHA1MSG2128,\n+\t\tssa.OpAMD... | 2025-10-16T16:07:32 |
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 |
electron/electron | 208dc568d8541d3cdd0fbebc17c348447ba0ae0d | 687a59b43b10fe384f25454da350ede01bc83370 | fix: `context-menu` event with `BaseWindows` (#44940)
fix: context-menu event with BaseWindows | [
{
"path": "docs/api/menu.md",
"patch": "@@ -72,7 +72,7 @@ The `menu` object has the following instance methods:\n #### `menu.popup([options])`\n \n * `options` Object (optional)\n- * `window` [BrowserWindow](browser-window.md) (optional) - Default is the focused window.\n+ * `window` [BaseWindow](base-win... | 2024-12-04T21:35:28 |
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 | 2b8eded4f4fd3d421d1fb9af68c774142abcf208 | c75965b666edf8399fc0c56ba0b94c2a4f5e7070 | [dev.simd] simd/_gen: parse SHA features from XED
To parse SHA feature instructions from XED, this CL added some utility
to decode fixed reg operands.
SHA512 parsing will be in next CL as we don't have SHA512 cpu features
in src/internal/cpu/cpu.go yet.
Change-Id: Id14cced57eab2ca9e75693a201f4ce7c04981587
Reviewed-o... | [
{
"path": "src/simd/_gen/simdgen/xed.go",
"patch": "@@ -22,9 +22,10 @@ import (\n )\n \n const (\n-\tNOT_REG_CLASS = 0 // not a register\n-\tVREG_CLASS = 1 // classify as a vector register; see\n-\tGREG_CLASS = 2 // classify as a general register\n+\tNOT_REG_CLASS = iota // not a register\n+\tVREG_CLA... | 2025-10-15T19:17:35 |
rust-lang/rust | 86da9312dc68ffb72cd1d28a99946dc4d37690c1 | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | mir-opt: Drop invalid debuginfos after SingleUseConsts. | [
{
"path": "compiler/rustc_middle/src/mir/statement.rs",
"patch": "@@ -1050,11 +1050,12 @@ impl<'tcx> StmtDebugInfos<'tcx> {\n self.0.extend_from_slice(debuginfos);\n }\n \n- pub fn retain<F>(&mut self, f: F)\n- where\n- F: FnMut(&StmtDebugInfo<'tcx>) -> bool,\n- {\n- self.... | 2026-03-10T14:15:04 |
electron/electron | 158a87d4941dc050c75f79b142e505c0d1578e6a | 229c2a8f50605289d2eb616ff113ac65144037b9 | fix: modernize-use-equals-default warnings (#44935)
fix: use '= default' to define a trivial destructor [modernize-use-equals-default] | [
{
"path": "shell/browser/auto_updater.h",
"patch": "@@ -43,7 +43,7 @@ class Delegate {\n const std::string& update_url) {}\n \n protected:\n- virtual ~Delegate() {}\n+ virtual ~Delegate() = default;\n };\n \n class AutoUpdater {",
"additions": 1,
"deletions": 1,
... | 2024-12-03T22:25:48 |
vercel/next.js | 24033486b5115c94871659b3f22e76ee292df9ca | e07cc5cc51a8e3b18a74b7ee7bf1999ae910043b | next-analyze: improve network error visuals (#86222)
This improves how network errors (such as when the bundle analyzer error server is shut down) are shown.
Fixes PACK-5877

 isValid(certType int, currentChain []*Certificate, opts *V\n \t\t}\n \t}\n \n-\tmaxConstraintComparisons := opts.MaxConstraintComparisions\n-\tif maxConstraintComparisons == 0 {\n-\t\tmaxConstraintComparisons = 2500... | 2025-10-20T18:04:38 |
rust-lang/rust | 005a1eddd724bd6d3e01f66497b42164052e17ea | a7bcfc149f9b5bb871c3730086bbea5dfabd16b4 | internal: Fix test_loading_rust_analyzer when rust-project.json is present
load_workspace_at() looks at parent directories. If rust-analyzer is
in a directory (e.g. a monorepo) where a parent directory contains a
rust-project.json, that configuration wins over the Cargo.toml and the
test fails.
One easy way of testin... | [
{
"path": "src/tools/rust-analyzer/crates/load-cargo/src/lib.rs",
"patch": "@@ -744,16 +744,25 @@ mod tests {\n \n #[test]\n fn test_loading_rust_analyzer() {\n- let path = Path::new(env!(\"CARGO_MANIFEST_DIR\")).parent().unwrap().parent().unwrap();\n+ let cargo_toml_path = Path::new(e... | 2026-03-10T17:43:34 |
electron/electron | 5324c0e6c3a0de4ce0a3efeabc978217df074d93 | 2222920429b37248ecc9fa3ebb0d1171b7f39196 | docs: fix grammar in `app.relaunch` docs (#44920) | [
{
"path": "docs/api/app.md",
"patch": "@@ -514,20 +514,20 @@ and `will-quit` events will not be emitted.\n * `args` string[] (optional)\n * `execPath` string (optional)\n \n-Relaunches the app when current instance exits.\n+Relaunches the app when the current instance exits.\n \n By default, the new ins... | 2024-12-03T17:56:09 |
facebook/react | 2ef407937b724a3af5b8ca4d082ecee5005d731b | 16ac71a650d8ec9f24cd0bd6ebbe9c6d2edf9cb8 | [compiler] Scaffold fixture apps (#31164)
Scaffold empty apps to consume the fixture lib.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31164).
* #31167
* #31166
* #31165
* __->__ #31164
* ... | [
{
"path": "compiler/fixtures/runtime-compat/app-18/.gitignore",
"patch": "@@ -0,0 +1,24 @@\n+# Logs\n+logs\n+*.log\n+npm-debug.log*\n+yarn-debug.log*\n+yarn-error.log*\n+pnpm-debug.log*\n+lerna-debug.log*\n+\n+node_modules\n+dist\n+dist-ssr\n+*.local\n+\n+# Editor directories and files\n+.vscode/*\n+!.vscod... | 2024-10-10T15:33:02 |
vercel/next.js | e07cc5cc51a8e3b18a74b7ee7bf1999ae910043b | 5b62dd8504650ab03a960039b86f63c5dcc22ef5 | [turbopack] Refactor the analyzer to fix a few issues and prepare to split it up (#86265)
# Refactor Analyzer State Management in Turbopack
This PR refactors the state management in the Turbopack ECMAScript analyzer to improve code organization and maintainability. The changes include:
- Introduced a `LexicalContext... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -357,8 +357,6 @@ pub fn create_graph(\n eval_context,\n effects: Default::default(),\n hoisted_effects: Default::default(),\n- early_return_stack: Default::default(),\n- ... | 2025-11-20T19:07:35 |
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 |
facebook/react | 16ac71a650d8ec9f24cd0bd6ebbe9c6d2edf9cb8 | b781c9f564d05c7ceaf5d8af2e26966601c0a669 | Fix prepare-prerelease script (#31159) | [
{
"path": "scripts/release/prepare-release-from-npm-commands/confirm-stable-version-numbers.js",
"patch": "@@ -30,9 +30,7 @@ const run = async ({skipPackages}, versionsMap) => {\n \n let version = bestGuessVersion;\n if (\n- skipPackages.some(skipPackageName =>\n- packageNames.includes(s... | 2024-10-10T15:24:51 |
electron/electron | 06612cf5d49ee8571f08d375d2e77c926404afb6 | 49b294628c4b3b8fa4b49349d5972a3f823c3839 | chore: remove unused isolate argument from Cookies constructor (#44907)
* chore: remove unused isolate argument from Cookies constructor
unused since the ginify cookies refactor in Mar 2020, commit 22202255
* fix: constructor only takes one arg now, so mark it explicit | [
{
"path": "shell/browser/api/electron_api_cookies.cc",
"patch": "@@ -292,8 +292,8 @@ std::string StringToCookieSameSite(const std::string* str_ptr,\n \n gin::WrapperInfo Cookies::kWrapperInfo = {gin::kEmbedderNativeGin};\n \n-Cookies::Cookies(v8::Isolate* isolate, ElectronBrowserContext* browser_context)\n-... | 2024-12-02T16:34:21 |
vercel/next.js | 5ca1aa7f90c1d73103d1bf6687d3c9f4fae3201f | 3f4db01dbc1921d366a125a298850d5afaee88a7 | Turbopack: perf: Fix unused argument filtering optimization in turbo-tasks for `self` arguments (#86231)
Should fix https://github.com/vercel/next.js/pull/86203
## Validation
I ran:
```
rm -rf .next && NEXT_TURBOPACK_TASK_STATISTICS=~/stats-with-fix.json pnpm next build --turbopack --experimental-build-mode=compile... | [
{
"path": "Cargo.lock",
"patch": "@@ -9383,6 +9383,7 @@ dependencies = [\n \"proc-macro2\",\n \"quote\",\n \"regex\",\n+ \"rstest\",\n \"rustc-hash 2.1.1\",\n \"syn 2.0.104\",\n ]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/crates/turbo-tasks-back... | 2025-11-20T16:57:11 |
rust-lang/rust | e9d76c811afceb4a76452339a9abb4d986753c4b | 5e1d741a1debd2541e5dd3274fa85b0c921a445a | fix: `match_same_arms` FP with associated consts | [
{
"path": "clippy_utils/src/consts.rs",
"patch": "@@ -841,7 +841,8 @@ impl<'tcx> ConstEvalCtxt<'tcx> {\n && ty.span.ctxt() == self.ctxt.get()\n && ty_name.ident.span.ctxt() == self.ctxt.get()\n && matches!(ty_path.res, Res::PrimTy(_))\n- ... | 2026-03-10T15:40:48 |
electron/electron | 493e3c4537bfa70405a2da998503e82594eada14 | b2ce5296af4b4039877825b71e3b75db21ab66f8 | fix: don't use deprecated ui::MouseEvent constructor (#44868)
* refactor: do not use deprecated gfx::Point constructor for MouseEvent
Deprecated in https://chromium-review.googlesource.com/c/1444251
* refactor: use WebInputEvent::GetTypeAsUiEventType() instead of rolling our own
Added in https://chromium-revi... | [
{
"path": "shell/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -56,31 +56,6 @@ namespace {\n const float kDefaultScaleFactor = 1.0;\n \n ui::MouseEvent UiMouseEventFromWebMouseEvent(blink::WebMouseEvent event) {\n- ui::EventType type = ui::EventType::kUnknown;\n- switch (event.GetType()) {\n- ... | 2024-12-02T16:13:38 |
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.