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
electron/electron
dd5b36f5574278a59068c61e9115b3aa2e83d19b
8201623d9298155c6c3f8174b257d13fe5784edb
fix: clang variable configuration in generated node headers (#44189) * fix: clang variable configuration in generated node headers * chore: restore value in common.gypi
[ { "path": "patches/node/.patches", "patch": "@@ -53,3 +53,4 @@ build_don_t_redefine_win32_lean_and_mean.patch\n build_compile_with_c_20_support.patch\n add_v8_taskpirority_to_foreground_task_runner_signature.patch\n cli_remove_deprecated_v8_flag.patch\n+build_restore_clang_as_default_compiler_on_macos.patch...
2024-10-11T14:22:56
facebook/react
d19ba8ecdd04639630d0ddcf6ed4ce316482a58d
1631855f4303cc8585205307a56c69e3b7248bb4
[react-compiler-runtime] Support React 17 peer dependency (#31336) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a p...
[ { "path": "compiler/packages/react-compiler-runtime/package.json", "patch": "@@ -9,7 +9,7 @@\n \"src\"\n ],\n \"peerDependencies\": {\n- \"react\": \"^18.2.0 || ^19.0.0\"\n+ \"react\": \"^17.0.0 || ^18.0.0 || ^19.0.0\"\n },\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config...
2024-10-24T18:08:57
vercel/next.js
137dbec701dee2b6b09d2d97b0f98665b6a148d5
1db1762a67771d6b247a46a83396abcac13939e8
Turbopack: chore: Remove some dead MagicAny serialization code from turbo_tasks::value (#85577) Noticed this was dead while I was looking through how we might integrate bincode. We only ever use `any_serialization` and not `magic_serialization`. In theory, `magic_serialization` is slightly better because it can inclu...
[ { "path": "turbopack/crates/turbo-tasks/src/value_type.rs", "patch": "@@ -2,24 +2,18 @@ use std::{\n any::{Any, type_name},\n fmt::{self, Debug, Display, Formatter},\n hash::Hash,\n- sync::Arc,\n };\n \n use auto_hash_map::{AutoMap, AutoSet};\n use serde::{Deserialize, Serialize};\n use traci...
2025-10-30T22:15:27
facebook/react
2dc5bebd46d5254f9a02fd58d408acb33c288639
b4cbdc5a7c18672807e119692f99f1cf751242fd
Fix error handling in `resolveClientReference` (#31332) When a React Server Consumer Manifest does not include an entry for a client reference ID, we must not try to look up the export name (or `'*'`) for the client reference. Otherwise this will fail with `TypeError: Cannot read properties of undefined (reading '....
[ { "path": "packages/react-server-dom-turbopack/src/client/ReactFlightClientConfigBundlerNode.js", "patch": "@@ -62,19 +62,19 @@ export function resolveClientReference<T>(\n metadata: ClientReferenceMetadata,\n ): ClientReference<T> {\n const moduleExports = bundlerConfig[metadata[ID]];\n- let resolvedM...
2024-10-23T15:36:40
electron/electron
8201623d9298155c6c3f8174b257d13fe5784edb
d93285dde1bb8b2184e262a447875e87d471574f
test: fix visibility-state-spec.ts flaky test (#44037) * test: refactor visibility-state-spec * ci: shard tests * test: update split-tests for use on Windows * test: run visibility-state-spec.ts first
[ { "path": "appveyor-woa.yml", "patch": "@@ -45,10 +45,16 @@ environment:\n matrix:\n \n - job_name: Build Arm on X64 Windows\n- - job_name: Test On Windows On Arm Hardware\n+ - job_name: Test On Windows On Arm Hardware 1\n job_depends_on: Build Arm on X64 Windows\n APPVEYOR_BUILD_WOR...
2024-10-11T14:00:22
nodejs/node
af85f3f169b5ce151ad4662cc74775e8c2973e1d
5077ea41491d555b44675f86502d4a91850dcbfd
repl: fix multiline history editing string order PR-URL: https://github.com/nodejs/node/pull/57874 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/readline/interface.js", "patch": "@@ -467,9 +467,15 @@ class Interface extends InterfaceConstructor {\n }\n \n // Convert newlines to a consistent format for history storage\n- [kNormalizeHistoryLineEndings](line, from, to) {\n+ [kNormalizeHistoryLineEndings](line, from, to, re...
2025-04-16T15:01:38
vercel/next.js
e7fbab4daa58e5d502ffa4963c9a6f1698a0f194
e58657f6bdc15919ab74e700b388daff4e4cf9bf
Turbopack: Make tasks deterministic (#85524) ### What? Fix Equal implementation on a bunch of structs. Make tasks deterministic
[ { "path": "turbopack/crates/turbopack-core/src/changed.rs", "patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use turbo_tasks::{\n Completion, Completions, ResolvedVc, TryJoinIterExt, Vc,\n- graph::{GraphTraversal, NonDeterministic},\n+ graph::{AdjacencyMap, GraphTraversal, NonDeterministic},\n };...
2025-10-30T12:55:50
facebook/react
b4cbdc5a7c18672807e119692f99f1cf751242fd
9daabc0bf97805be23f6131be4d84d063a3ff446
remove terser from react-compiler-runtime build (#31326) ## Summary This fixes a minor nit I have about the `react-compiler-runtime` package in that the published code is minified. I assume most consumers will minify their own bundles so there's no real advantage to minifying it as part of the build. For my p...
[ { "path": "compiler/packages/react-compiler-runtime/rollup.config.js", "patch": "@@ -11,7 +11,6 @@ import commonjs from '@rollup/plugin-commonjs';\n import json from '@rollup/plugin-json';\n import path from 'path';\n import process from 'process';\n-import terser from '@rollup/plugin-terser';\n import bann...
2024-10-22T23:49:10
golang/go
d5b950399de01a0e28eeb48d2c8474db4aad0e8a
53845004d647e16b3de7c74e50cffaca77e028e9
cmd/cgo: fix unaligned arguments typedmemmove crash on iOS Irregularly typedmemmove and bulkBarrierPreWrite crashes on unaligned arguments. By aligning the arguments this is fixed. Fixes #46893 Change-Id: I7beb9fdc31053fcb71bee6c6cb906dea31718c56 GitHub-Last-Rev: 46ae8b96889644aab60ea4284cf447a740354c6a GitHub-Pull-...
[ { "path": "src/cmd/cgo/internal/testout/out_test.go", "patch": "@@ -0,0 +1,144 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package out_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes...
2025-09-30T21:53:11
electron/electron
3d2f68a9df2946074e4412b8ab31d4468a4baf9f
d51ef7d7946381e3bfdd48ca51309b4fb5ad03aa
refactor: spanify image utils (#44127) * refactor: electron::util::AddImageSkiaRepFromJPEG() takes a span arg * refactor: electron::util::AddImageSkiaRepFromPNG() takes a span arg * refactor: electron::util::AddImageSkiaRepFromBuffer() takes a span arg * feat: add Node-buffer-to-base-span helper function *...
[ { "path": "shell/common/api/electron_api_native_image.cc", "patch": "@@ -30,6 +30,7 @@\n #include \"shell/common/gin_helper/function_template_extensions.h\"\n #include \"shell/common/gin_helper/object_template_builder.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/node_util.h\"\n ...
2024-10-10T13:34:55
nodejs/node
5077ea41491d555b44675f86502d4a91850dcbfd
4b2b3c01b40b6ccbf80e1d252e0d544397ba00a6
deps: update amaro to 0.5.2 PR-URL: https://github.com/nodejs/node/pull/57871 Fixes: https://github.com/nodejs/node/issues/57471 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
[ { "path": "deps/amaro/dist/package.json", "patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.11.15\",\n+ \"version\": \"1.11.21\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",", "ad...
2025-04-16T10:34:19
vercel/next.js
e51b136afb13d98c8a2598153ca383c101f28583
d7d9790027512c7047a31ddbfc94afdb1d4fea30
[test] Consolidate identical snapshots across different bundlers (#85532) I noticed that we fixed some of the differences in error stacks and source frames between bundlers, which allows us to consolidate duplicate snapshots. To accomplish this, I asked Claude to write an AST-based script to find and deduplicate the a...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -111,38 +111,20 @@ describe('Cache Components Errors', () => {\n { isMinified: !isDebugPrerender }\n )\n \n- if (isTurbopack) {\n- if (isDebugPrerender) {\n- ...
2025-10-30T10:36:42
facebook/react
9daabc0bf97805be23f6131be4d84d063a3ff446
ae90522bc6ea80d87f22e845024dc82e2c05e3d5
`react-hooks/rules-of-hooks`: Add support for `do/while` loops (#28714) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submittin...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js", "patch": "@@ -755,6 +755,30 @@ const tests = {\n `,\n errors: [loopError('useHookInsideLoop')],\n },\n+ {\n+ code: normalizeIndent`\n+ // Invalid because it's dangerous and might not warn othe...
2024-10-22T20:07:10
electron/electron
78fa4777261edafb27f228669465de1e80161ee4
dbbdf55493fbd4083690b62aaf0aa39aa7d2500f
fix: -Wunsafe-buffer-usage warning in HasWordCharacters() (#44133)
[ { "path": "shell/renderer/api/electron_api_spell_check_client.cc", "patch": "@@ -15,6 +15,7 @@\n #include \"base/containers/contains.h\"\n #include \"base/logging.h\"\n #include \"base/numerics/safe_conversions.h\"\n+#include \"base/strings/utf_string_conversion_utils.h\"\n #include \"base/task/single_threa...
2024-10-09T18:02:00
golang/go
53845004d647e16b3de7c74e50cffaca77e028e9
bbdff9e8e1fca772a13acb0c4c7828cfe246d403
net/http/httputil: deprecate ReverseProxy.Director The Director function has been superseded by Rewrite. Rewrite avoids fundamental security issues with hop-by-hop header handling in the Director API and has better default handling of X-Forwarded-* headers. Fixes #73161 Change-Id: Iadaf3070e0082458f79fb892ade51cb7ce...
[ { "path": "api/next/73161.txt", "patch": "@@ -0,0 +1 @@\n+pkg net/http/httputil, type ReverseProxy struct, Director //deprecated #73161", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/net/http/httputil/73161.md", "patch": "@@ -0,0 +...
2025-10-02T16:42:57
rust-lang/rust
06f959c6e6b956b6c996cfdc844815caf5f99bc1
debbabedb3637aa7643f012019e85a5c40fc43f8
fix clippy on master
[ { "path": "src/tools/rust-analyzer/xtask/src/codegen/grammar/ast_src.rs", "patch": "@@ -189,9 +189,9 @@ pub(crate) fn generate_kind_src(\n }\n }\n });\n- PUNCT.iter().zip(used_puncts).filter(|(_, used)| !used).for_each(|((punct, _), _)| {\n+ if let Some(punct) = PUNCT.iter().zi...
2026-03-06T01:40:59
nodejs/node
c9c61a3a7da6acf15f1ae7eab1606878d4d2ee0b
0a1d5d353bdd18c8beb30991d77ff2925fc5f767
doc: fix typo in `module.md` PR-URL: https://github.com/nodejs/node/pull/57889 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Qingyu Deng <i@ayase-lab.com>
[ { "path": "doc/api/module.md", "patch": "@@ -1185,7 +1185,7 @@ The final value of `format` must be one of the following:\n | `'commonjs'` | Load a Node.js CommonJS module | {string\\|ArrayBuffer\\|TypedArray\\|null\\|undefined} |\n | `'json'` | Load a JSON fi...
2025-04-14T15:11:29
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
bbdff9e8e1fca772a13acb0c4c7828cfe246d403
4008e07080ef215e46f48e5e2f6b5d37d6d9cb9f
net/http: update bundled x/net/http2 and delete obsolete http2inTests http2inTests is no longer needed after go.dev/cl/708135 and should be deleted. To prevent errors in future vendored dependency updates, h2_bundle.go is also updated together in this change. Change-Id: I7b8c3f6854203fab4ec639a2a268df0cd2b1dee7 Revie...
[ { "path": "src/go.mod", "patch": "@@ -4,7 +4,7 @@ go 1.26\n \n require (\n \tgolang.org/x/crypto v0.42.0\n-\tgolang.org/x/net v0.44.0\n+\tgolang.org/x/net v0.44.1-0.20251002015445-edb764c2296f\n )\n \n require (", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "src/go...
2025-10-02T16:41:25
electron/electron
dbbdf55493fbd4083690b62aaf0aa39aa7d2500f
b5227b4a1760a0966fc74e177d58633587556365
fix: -Wunsafe-buffer-usage warning in WriteAsciiChunk() (#44134) * fix: -Wunsafe-buffer-usage warning in WriteAsciiChunk() * chore: add // SAFETY comment to explain UNSAFE_BUFFERS() use
[ { "path": "shell/common/heap_snapshot.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/heap_snapshot.h\"\n \n+#include \"base/containers/span.h\"\n #include \"base/files/file.h\"\n #include \"base/memory/raw_ptr.h\"\n #include \"v8/include/v8-profiler.h\"\n@@ -24,8 +25,13 @@ class HeapSnapshotOut...
2024-10-09T17:18:19
vercel/next.js
89cd2058a6b2ff711a7237b0ba5003b73b4649c1
920b2c0073c519d43a6b6b087c08aaf55e9c80b1
[turbopack] Move generation of `cacheLife` types out of the webpack plugin and into the dev bundler directly (#85539) Ensure that users configuring custom `cacheLife` configs with Typescript get support with turbopack This follows the same pattern as typed-routes, so generation can happen during `next type-gen` and a...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -2155,7 +2155,6 @@ export default async function getBaseWebpackConfig(\n dev,\n isEdgeServer,\n pageExtensions: config.pageExtensions,\n- cacheLifeConfig: config.cacheLife,\n originalRewrites...
2025-10-30T09:42:59
rust-lang/rust
6b7dbff2356b7dccc078c374ddcfad710d03810a
4d314065a4e3e8d9b6823948c98a3441f5e2b55a
coretest in miri: fix using unstable libtest features
[ { "path": "src/bootstrap/src/core/build_steps/test.rs", "patch": "@@ -741,7 +741,13 @@ impl Step for Miri {\n \n // Run it again for mir-opt-level 4 to catch some miscompilations.\n if builder.config.test_args().is_empty() {\n- cargo.env(\"MIRIFLAGS\", \"-O -Zmir-opt-level=4 -Cdeb...
2026-03-05T21:09:35
nodejs/node
0a1d5d353bdd18c8beb30991d77ff2925fc5f767
2204587d76dd424b3b1c73f68ade75e0b91b96df
crypto: revert dangerous uses of std::string_view An `std::string_view v` is a `const char* v.data()` along with an `std::size_t v.size()` that guarantees that `v.size()` contiguous elements of type `char` can be accessed relative to the pointer `v.data()`. One of the main reasons behind the existence of `std::strin...
[ { "path": "deps/ncrypto/engine.cc", "patch": "@@ -44,15 +44,15 @@ ENGINE* EnginePointer::release() {\n return ret;\n }\n \n-EnginePointer EnginePointer::getEngineByName(const std::string_view name,\n+EnginePointer EnginePointer::getEngineByName(const char* name,\n ...
2025-04-15T12:09:22
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
vercel/next.js
920b2c0073c519d43a6b6b087c08aaf55e9c80b1
f0b97b7e334ad93f82d63860c9560105c1139cd7
[test] Remove `maxRetries` and `hardError` parameters (#85536)
[ { "path": "test/e2e/app-dir/actions/app-action.test.ts", "patch": "@@ -2,7 +2,6 @@ import { FileRef, nextTestSetup } from 'e2e-utils'\n import {\n assertHasRedbox,\n retry,\n- check,\n waitFor,\n getRedboxSource,\n getDistDir,\n@@ -527,17 +526,29 @@ describe('app-dir action handling', () => {\n \...
2025-10-30T09:27:03
golang/go
0e4e2e68323df08d9e4c876e5abc5b549bd247f5
f03c392295cfd57c29c92fcc300181f8016cf5ac
runtime: skip TestGoroutineLeakProfile under mayMoreStackPreempt This may be the long-term fix, but we first need to understand if this just makes the tests flaky, or if it's revealing an actual underlying issue. I'm leaning toward the former. If it is the former, ideally we just make the tests robust (wait longer, ma...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -6,12 +6,20 @@ package runtime_test\n \n import (\n \t\"fmt\"\n+\t\"internal/testenv\"\n+\t\"os\"\n \t\"regexp\"\n \t\"strings\"\n \t\"testing\"\n )\n \n func TestGoroutineLeakProfile(t *testing.T) {\n+\tif strings.Contains(os.Getenv(\"GOFLA...
2025-10-02T19:15:34
electron/electron
b5227b4a1760a0966fc74e177d58633587556365
08d315da14615d6e4a096199156e94e76597abec
fix: -Wunsafe-buffer-usage warnings in GetNextZoomLevel() (#44149) fixup e8948397 really fix the warning this time
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -118,20 +118,20 @@ void SetZoomLevelForWebContents(content::WebContents* web_contents,\n content::HostZoomMap::SetZoomLevel(web_contents, level);\n }\n \n-double GetNextZoomLevel(const double level, const bool out) {\n+double GetNextZo...
2024-10-09T14:12:48
nodejs/node
b2405e9b075e5637f250cf57e93c0bd6f3189f9b
11bb7cdb07028a0655a2580344a67c15f7165295
src: migrate from deprecated SnapshotCreator constructor Previously we have been using the variant of SnapshotCreator that only passes the external references instead of v8::Isolate::CreateParams and it's about to be deprecated. Switch to using the new constructor that takes a fully CreateParams instead. This also ma...
[ { "path": "lib/internal/buffer.js", "patch": "@@ -39,6 +39,13 @@ const {\n },\n } = internalBinding('util');\n \n+const {\n+ namespace: {\n+ isBuildingSnapshot,\n+ },\n+ addAfterUserSerializeCallback,\n+} = require('internal/v8/startup_snapshot');\n+\n // Temporary buffers to convert numbers.\n cons...
2024-10-09T16:09:40
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
vercel/next.js
1b9eb60878cabfae1af8673d9a4edbafc170d93a
418cddf7e30e9818bbaaab11c159147defbc7967
[docs] Fix a typo (#85492) Fix a small typo
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/proxy.mdx", "patch": "@@ -622,7 +622,7 @@ export const config = {\n \n > **Good to know**:\n >\n-> - Even when `_next/data` is excluded in a negative matcher pattern, proxy will still be invoked for `_next/data` routes. This is intentional behavior...
2025-10-30T04:22:32
electron/electron
4cf69f396ff3d2657a802d8038bfa0d53b3d302d
bcbc8d3bb2e8705bc6b36d4479f18e25648ad8b1
fix: context shear in cli_remove_deprecated_v8_flag.patch (#44148) fix: patch shear in cli_remove_deprecated_v8_flag.patch
[ { "path": "patches/node/cli_remove_deprecated_v8_flag.patch", "patch": "@@ -18,22 +18,22 @@ Reviewed-By: Michaël Zasso <targos@protonmail.com>\n Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>\n \n diff --git a/doc/api/cli.md b/doc/api/cli.md\n-index 8f32a44ad41314dce2e4b58b318e4b5a7530b802..10dc8da655690d1c...
2024-10-08T14:54:33
golang/go
f03c392295cfd57c29c92fcc300181f8016cf5ac
707454b41fa1fea7e0286b1370dea47d3422b2cb
runtime: fix aix/ppc64 library initialization AIX sets the argc and argv parameters in R14 and R15, but _rt0_ppc64x_lib expects them to be in R3 and R4. Also, call reginit in _rt0_ppc64x_lib. These issues were oversights from CL 706395 which went unnoticed because there if no LUCI aix/ppc64 builder (see #67299). Cha...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -21,6 +21,9 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\tR4, _rt0_ppc64x_lib_argv<>(SB)\n \n \t// Synchronous initialization.\n+\tMOVD\t$runtime·reginit(SB), R12\n+\tMOVD\tR12, CTR\n+\tBL\t(CTR)\n \tMOVD\t$runtime·libpreinit(SB), R12\n \tMOVD\tR...
2025-10-01T08:59:53
rust-lang/rust
2093158de7fe26e2f30dfaed1034c3fa79779db0
6f54d591c3116ee7f8ce9321ddeca286810cc142
refactor: move `check_align` to `parse_alignment` * refactor: move `check_align` from check_attrs.rs to `parse_alignment` rel: attribute parser rework * fix: fix error messages * test: fix test * fix: fix invalid error message * ops(test): Fix CI
[ { "path": "compiler/rustc_attr_parsing/src/attributes/repr.rs", "patch": "@@ -1,4 +1,4 @@\n-use rustc_abi::Align;\n+use rustc_abi::{Align, Size};\n use rustc_ast::{IntTy, LitIntType, LitKind, UintTy};\n use rustc_hir::attrs::{IntType, ReprAttr};\n \n@@ -229,7 +229,7 @@ fn parse_repr_align<S: Stage>(\n ...
2026-03-05T18:46:00
nodejs/node
29af9cea7f233f2aa2ac052a86149293cdd9f13b
86c2505441f0ebfd119b32de39b11ec54cd0ba9d
crypto: fix misleading positional argument The fourth positional argument of `createCipherBase` is `true` when called from within the `Cipheriv` constructor and `false`when called from within the `Decipheriv` constructor. This value is then passed to the `CipherBase::New()` method, which treats it as follows: arg...
[ { "path": "lib/internal/crypto/cipher.js", "patch": "@@ -112,21 +112,21 @@ function getUIntOption(options, key) {\n return -1;\n }\n \n-function createCipherBase(cipher, credential, options, decipher, iv) {\n+function createCipherBase(cipher, credential, options, isEncrypt, iv) {\n const authTagLength =...
2025-04-13T23:22:02
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
vercel/next.js
1bca3db0bff3ceb7f78968d18e0f4ad9a393130d
94dfab3fdac5f1631ecf808011756abf7b2b5b09
fix: redirect should always return updated router state (#85533) When a server action triggers a redirect, it will return the RSC payload for the destination state in a single roundtrip. This lets us update the UI without needing to waterfall when getting the target page's data. We reject the server action with a spec...
[ { "path": "packages/next/src/client/components/redirect-boundary.tsx", "patch": "@@ -48,6 +48,13 @@ export class RedirectErrorBoundary extends React.Component<\n if (isRedirectError(error)) {\n const url = getURLFromRedirectError(error)\n const redirectType = getRedirectTypeFromError(error)\...
2025-10-29T23:02:16
electron/electron
bcbc8d3bb2e8705bc6b36d4479f18e25648ad8b1
aa40e817c853a5e71ab59ce2cb29b8ee258c0d59
chore: bump chromium to 131.0.6762.0 (main) (#44117) * chore: bump chromium in DEPS to 131.0.6756.0 * chore: update disable_hidden.patch no code changes; just handling upstream context shear https://chromium-review.googlesource.com/c/chromium/src/+/5887019 * chore: update feat_expose_raw_response_headers_f...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6754.0',\n+ '131.0.6762.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2024-10-07T23:06:47
golang/go
633dd1d475e7346b43d87abc987a8c7f256e827d
8ad27fb656ab162546137b512c61f6a26a90a6c5
encoding/json: fix Decoder.InputOffset regression in goexperiment.jsonv2 The Decoder.InputOffset method was always ambiguous about the exact offset returned since anything between the end of the previous token to the start of the next token could be a valid result. Empirically, it seems that the behavior was to repor...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -557,3 +557,67 @@ func TestTokenTruncation(t *testing.T) {\n \t\t}\n \t}\n }\n+\n+func TestDecoderInputOffset(t *testing.T) {\n+\tconst input = ` [\n+\t\t[ ] , [ \"one\" ] , [ \"one\" , \"two\" ] ,\n+\t\t{ } , { \"alpha\" : \"bravo\" } , { \"alpha\"...
2025-09-15T19:56:11
nodejs/node
a4843f4a470001f3668678030b32917909705f2d
a42bca5fa77a461b37aac4c726c38a8202def634
src: improve error message for invalid child stdio type in spawn_sync PR-URL: https://github.com/nodejs/node/pull/57589 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed...
[ { "path": "src/spawn_sync.cc", "patch": "@@ -1055,7 +1055,10 @@ Maybe<int> SyncProcessRunner::ParseStdioOption(int child_fd,\n return Just(AddStdioInheritFD(child_fd, inherit_fd));\n }\n \n- UNREACHABLE(\"invalid child stdio type\");\n+ Utf8Value stdio_type(env()->isolate(), js_type);\n+ fprintf(st...
2025-03-21T22:08:48
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
vercel/next.js
c0c75e4aaa8ece2c9e789e2e3f150d7487b60bbc
1e53071f778ac79f78979e497fad40c13dee759f
Avoid proxying React modules through workUnitStore (#85486) Today the `captureOwnerStack()` function is provided to shared utilities through an AsyncLocalStorage that scopes the method from the appropriate React instance. This is so that external code like patches to sync IO methods can still generate errors with the ...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -955,7 +955,6 @@ async function prospectiveRuntimeServerPrerender(\n renderResumeDataCache,\n prerenderResumeDataCache,\n hmrRefreshHash: undefined,\n- captureOwnerStack: undefined,\n // We only need task sequenc...
2025-10-29T16:55:51
golang/go
3f451f2c54c87db8b8f30e4d5224933f7895f453
be0fed8a5fc4e34f2c6caf503830bcdf904ded54
testing/synctest: fix inverted test failure message in TestContextAfterFunc Fixes #75685 Change-Id: I5592becfde6aaca3d7f0e2f09bc7a9785228523e GitHub-Last-Rev: 0ff7bd31ecfc23222dae70194621397330f3c2da GitHub-Pull-Request: golang/go#75687 Reviewed-on: https://go-review.googlesource.com/c/go/+/708275 Reviewed-by: Alan D...
[ { "path": "src/testing/synctest/example_test.go", "patch": "@@ -66,7 +66,7 @@ func TestContextAfterFunc(t *testing.T) {\n \t\tcancel()\n \t\tsynctest.Wait()\n \t\tif !afterFuncCalled {\n-\t\t\tt.Fatalf(\"before context is canceled: AfterFunc not called\")\n+\t\t\tt.Fatalf(\"after context is canceled: AfterF...
2025-10-01T12:46:16
nodejs/node
a42bca5fa77a461b37aac4c726c38a8202def634
dfaded80e1fef69e2de2fc987130cd12638ef02d
readline: fix unicode line separators being ignored PR-URL: https://github.com/nodejs/node/pull/57591 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/readline/interface.js", "patch": "@@ -78,8 +78,15 @@ const { StringDecoder } = require('string_decoder');\n const kHistorySize = 30;\n const kMaxUndoRedoStackSize = 2048;\n const kMincrlfDelay = 100;\n-// \\r\\n, \\n, or \\r followed by something other than \\n\n-const lineEnding = /...
2025-03-22T18:47:55
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
vercel/next.js
f3656691c28c346f9d0fa4d7906378d9a4896057
e3b3b1a9ab4ed338b64f57362efd52bfcdfa3cf4
[test] Use `--debug-build-paths` instead of `NEXT_PRIVATE_APP_PATHS` (#85504) With `--debug-build-paths` being added in #85052, we can now use this CLI flag in tests, instead of setting the private environment variable `NEXT_PRIVATE_APP_PATHS`. Related to this change, this PR fixes how we print the dev, start and bui...
[ { "path": "package.json", "patch": "@@ -165,6 +165,7 @@\n \"@types/react\": \"19.2.2\",\n \"@types/react-dom\": \"19.2.1\",\n \"@types/relay-runtime\": \"14.1.13\",\n+ \"@types/shell-quote\": \"1.7.1\",\n \"@types/string-hash\": \"1.1.1\",\n \"@types/trusted-types\": \"2.0.3\",\n ...
2025-10-29T13:03:42
electron/electron
ab1488a1be78f46d222519e90292c2269e6cfc82
122685194a5642b73367e823aadf3942b0290099
chore: bump chromium to 131.0.6754.0 (main) (#44110) * chore: bump chromium in DEPS to 131.0.6754.0 * chore: update gin_enable_disable_v8_platform.patch fix minor context shear Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5901115 * chore: e patches all --------- Co-authored-by: ele...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6752.0',\n+ '131.0.6754.0',\n 'node_version':\n 'v20.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-10-03T17:35:03
golang/go
fcb893fc4b615774f8cdd050e17ad227998e512a
19cc1022ba4e9ddf172c04107fa613e6d50a7eba
cmd/compile/internal/ssa: remove redundant "type:" prefix check Remove redundant "type:" prefix check on symbol names in isFixedLoad, also refactor some duplicate code into methods. Change-Id: I8358422596eea8c39d1a30a554bd0aae8b570038 Reviewed-on: https://go-review.googlesource.com/c/go/+/701275 Reviewed-by: Keith Ra...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -2059,12 +2059,12 @@ func isFixedLoad(v *Value, sym Sym, off int64) bool {\n \t\treturn false\n \t}\n \n-\tif strings.HasPrefix(lsym.Name, \"type:\") {\n+\tif ti := lsym.TypeInfo(); ti != nil {\n \t\t// Type symbols do not contain information...
2025-09-05T14:48:48
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
nodejs/node
09ecd2e84a2d7f507d26742912d729d5dc5c81f0
6a7b005a07a0912260e328c6397317b5b862ffde
fs: added test for missing call to uv_fs_req_cleanup Added a unit test for testing the memory usage of readFileSync. Test is looking specifically for the the issue caused by failing to free the filepath buffer in fs::ReadFileUtf8(), but it will also catch other significant memory leaks in readFileSync() as well. Refs...
[ { "path": "test/pummel/test-fs-read-file-sync-utf8-memory.js", "patch": "@@ -0,0 +1,54 @@\n+'use strict';\n+const common = require('../common');\n+if (common.isIBMi)\n+ common.skip('On IBMi, the rss memory always returns zero');\n+\n+// This test verifies that readFileSync does not leak memory when reading...
2025-04-11T15:09:51
vercel/next.js
e3b3b1a9ab4ed338b64f57362efd52bfcdfa3cf4
0adb4986a081c36a6e4ff32e2bf9f85daf5c31c3
[test] Avoid needless start/stop from using `createSandbox` (#85507) `createSandbox` fully isolates the returned session from the existing Next instance by restarting the server. This is wasteful if the existing instance is already started. Some tests called `nextTestSetup()` without `skipStart` which got fixed in th...
[ { "path": "test/development/acceptance-app/app-hmr-changes.test.ts", "patch": "@@ -19,6 +19,7 @@ describe('Error overlay - RSC build errors', () => {\n 'image-size': '^1.0.2',\n autoprefixer: '^10.4.13',\n },\n+ skipStart: true,\n })\n \n // TODO: The error overlay is not closed when ...
2025-10-29T12:55:45
golang/go
08afc50bea9a94e86adfc8cd852c6ae5b698cdaa
97da068774d5aa9147e63eb146350145c73bfc3d
mime: extend "builtinTypes" to include a more complete list of common types Implement all agreed upon types, using IANA's listed media types to decide when there is a disagreement in type. Except in the case of `.wav` where `audio/wav` is used. Fixes #69530 Change-Id: Iec99a6ceb534073be83c8390f48799bec3e4cfc7 GitHu...
[ { "path": "src/mime/type.go", "patch": "@@ -17,7 +17,7 @@ var (\n \tmimeTypesLower sync.Map // map[string]string; \".z\" => \"application/x-compress\"\n \n \t// extensions maps from MIME type to list of lowercase file\n-\t// extensions: \"image/jpeg\" => [\".jpg\", \".jpeg\"]\n+\t// extensions: \"image/jpeg...
2025-09-25T21:00:45
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
nodejs/node
6a7b005a07a0912260e328c6397317b5b862ffde
d0a5bd676fe77d745addf99187041cf899603ca5
fs: add missing call to uv_fs_req_cleanup Always call uv_fs_req_cleanup after calling uv_fs_open instead of just when uv_fs_open returns a negative result. I referenced ReadFileSync from node:js2c when making this change. https://github.com/bnoordhuis made the same suggestion based on the PR https://github.com/nodejs...
[ { "path": "src/node_file.cc", "patch": "@@ -2711,10 +2711,10 @@ static void ReadFileUtf8(const FunctionCallbackInfo<Value>& args) {\n FS_SYNC_TRACE_END(open);\n if (req.result < 0) {\n uv_fs_req_cleanup(&req);\n- // req will be cleaned up by scope leave.\n return env->ThrowUVExcepti...
2025-04-09T20:51:27
vercel/next.js
1558dbefc27b84e6f64fe492a33a3f16b0179dc4
d27f18f390ce2ac5728fb902a004381d876e85bd
[test] Add test cases for dynamic caches without suspense boundaries (#85500) When defining a `cacheLife` with an expire time below 5 minutes or a revalidate time of 0 we consider the `'use cache'` function dynamic during prerendering, i.e. it will be excluded from the static shell. Similarly, accessing runtime `param...
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -2658,6 +2658,331 @@ describe('Cache Components Errors', () => {\n })\n }\n })\n+\n+ describe('cacheLife with expire < 5 minutes', () => {\n+ if (isNextDev) {\n+ //...
2025-10-29T12:34:26
electron/electron
122685194a5642b73367e823aadf3942b0290099
684e345f6864164e4aef6562d63c3468dbe87799
build: add import/order eslint rule (#44085) * build: add import/order eslint rule * chore: run lint:js --fix
[ { "path": ".eslintrc.json", "patch": "@@ -19,7 +19,40 @@\n \"prefer-const\": [\"error\", {\n \"destructuring\": \"all\"\n }],\n- \"n/no-callback-literal\": \"off\"\n+ \"n/no-callback-literal\": \"off\",\n+ \"import/newline-after-import\": \"error\",\n+ \"import/order\": [\"error\",...
2024-10-03T02:10:44
rust-lang/rust
072bd694adda1ad5c0fb69291c6a5a534dc50923
70d86e3abeecf3a655264d9a716c5d08160176b7
Fix ICEs due to incomplete typechecking on struct literals with syntax errors.
[ { "path": "compiler/rustc_hir_typeck/src/expr.rs", "patch": "@@ -2203,14 +2203,18 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n };\n self.typeck_results.borrow_mut().fru_field_types_mut().insert(expr.hir_id, fru_tys);\n }\n- rustc_hir::StructTailExpr::NoneWith...
2026-03-05T17:50:13
golang/go
97da068774d5aa9147e63eb146350145c73bfc3d
300d9d2714164e455abc7990d52de9de6b084df1
cmd/compile: eliminate nil checks on .dict arg The first arg of a generic function is the dictionary. This dictionary is never nil, but it gets a nil check becuase the dict arg is treated as a slice during construction. cmp.Compare[go.shape.int] was: 00006 (+41) TESTB AX, (AX) 00007 (+52) CMPQ CX, BX 00008 (52) JGT ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2079,6 +2079,9 @@\n \t&& warnRule(fe.Debug_checknil(), v, \"removed nil check\")\n \t=> ptr\n \n+// .dict args are always non-nil.\n+(NilCheck ptr:(Arg {sym}) _) && isDictArgSym(sym) => ptr\n+\n // Nil checks of nil checks are redund...
2025-09-08T05:21:15
nodejs/node
038d82980ab26cd79abe4409adc2fecad94d7c93
67786c127008ed735d5b3d776e9b0ac9f68d36cd
doc: fix deprecation type for `DEP0148` PR-URL: https://github.com/nodejs/node/pull/57785 Refs: https://github.com/nodejs/node/pull/40121 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3064,11 +3064,11 @@ changes:\n description: Documentation-only deprecation.\n -->\n \n-Type: Runtime\n+Type: End-of-Life\n \n Using a trailing `\"/\"` to define subpath folder mappings in the\n-[subpath exports][] or [subpath imports][] fields is deprec...
2025-04-09T14:36:40
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
vercel/next.js
ad6907a8a37e930639af071203f4ce49a5d69ee5
34dd8d42fc06371831e2ed3f578e08eff3710d90
docs: example are incorrect async function exports only (#85453)
[ { "path": "docs/01-app/03-api-reference/01-directives/use-cache.mdx", "patch": "@@ -83,14 +83,14 @@ Any non-serializable arguments, props, or closed-over values will turn into refe\n For example, a cached function can take in JSX as a `children` prop and return `<div>{children}</div>`, but it won't be able ...
2025-10-29T08:12:46
electron/electron
684e345f6864164e4aef6562d63c3468dbe87799
9df092e034f25cdbe035f942ec4adc46f1e85190
fix: deprecated API and -Wunsafe-buffer-usage warnings in AsarFileValidator (#44068) * refactor: const correctness * refactor: extract-method AsarFileValidator::EnsureHashExists() * refactor: replace use of deprecated crypto API https://crbug.com/364687923 * refactor: use span API in AsarFileValidator::OnR...
[ { "path": "shell/browser/net/asar/asar_file_validator.cc", "patch": "@@ -5,10 +5,12 @@\n #include \"shell/browser/net/asar/asar_file_validator.h\"\n \n #include <algorithm>\n+#include <array>\n #include <string>\n #include <utility>\n #include <vector>\n \n+#include \"base/containers/span.h\"\n #include \"b...
2024-10-02T20:44:28
golang/go
300d9d2714164e455abc7990d52de9de6b084df1
a846bb0aa523c8781248161b63bc2ab6a245cec1
runtime: initialise debug settings much earlier in startup process This is necessary specifically to set the value of `debug.decoratemappings` sufficiently early in the startup sequence that all memory ranges allocated can be named appropriately using the new Linux-specific naming API introduced in #71546. Example ou...
[ { "path": "src/runtime/decoratemappings_test.go", "patch": "@@ -0,0 +1,72 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package runtime_test\n+\n+import (\n+\t\"os\"\n+\t\"regexp\"\...
2025-09-18T14:54:57
nodejs/node
67786c127008ed735d5b3d776e9b0ac9f68d36cd
ada4abf2d143f14e40177bb11f54a06f5b95c355
test_runner: improve --test-timeout to be per test Previously `--test-timeout` is set on per test execution, this is obviously a bug as per test execution is hard to be expected, this patch addresses the issue by setting `timeout` from per execution to per test. This patch also fixes a minor issue that `--test-timeou...
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -191,6 +191,7 @@ class FileTest extends Test {\n column: 1,\n file: resolve(this.name),\n };\n+ this.timeout = null;\n }\n \n #skipReporting() {", "additions": 1, "deletions": 0, "language": "JavaScript" }, {...
2025-04-09T14:36:19
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
vercel/next.js
34dd8d42fc06371831e2ed3f578e08eff3710d90
62bc243bfa06cd69254e8ac190342e5884ca694c
[turbopack] fix build of empty entries of pages (#84873)
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -552,6 +552,12 @@ export async function createPagesMapping({\n // added or removed.\n const root = isDev && pagesDir ? PAGES_DIR_ALIAS : 'next/dist/pages'\n \n+ // If there are no user pages routes, treat this as app-dir-only mode...
2025-10-29T02:36:43
rust-lang/rust
25c779800409ee5066e0a7cfb6a112a2f737b154
96f2261db1cc7367962a0c82599fe26edd82b414
Create new `Diagnostic` type for panic calls without literals
[ { "path": "compiler/rustc_lint/src/non_fmt_panic.rs", "patch": "@@ -1,5 +1,6 @@\n use rustc_ast as ast;\n-use rustc_errors::{Applicability, msg};\n+use rustc_errors::{Applicability, Diag, DiagCtxtHandle, Diagnostic, Level, msg};\n+use rustc_hir::def_id::DefId;\n use rustc_hir::{self as hir, LangItem};\n use...
2026-03-05T11:11:56
electron/electron
9df092e034f25cdbe035f942ec4adc46f1e85190
93dd9fc17be47dab6840e801d2d9560e24d1281b
fix: remove use of deprecated API base::Hash() (#44076)
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -70,8 +70,8 @@ void DebugLog(std::string_view log_msg) {\n LOG(INFO) << log_msg;\n }\n \n-std::wstring GetTag(const std::string& notification_id) {\n- return base::NumberToWString(base::Hash(notification_id));\n+std...
2024-10-02T20:36:06
golang/go
a846bb0aa523c8781248161b63bc2ab6a245cec1
7c8166d02d36a5dfcdbe3dd1b148412cceacf9f2
errors: add AsType Fixes #51945 Change-Id: Icda169782e796578eba728938134a85b5827d3b6 GitHub-Last-Rev: c6ff335ee1ffb6b7975141795a4632a55247299d GitHub-Pull-Request: golang/go#75621 Reviewed-on: https://go-review.googlesource.com/c/go/+/707235 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Damien Neil <dne...
[ { "path": "api/next/51945.txt", "patch": "@@ -0,0 +1 @@\n+pkg errors, func AsType[$0 error](error) ($0, bool) #51945", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/errors/51945.md", "patch": "@@ -0,0 +1,2 @@\n+The new [AsType] func...
2025-09-29T16:57:53
nodejs/node
ada4abf2d143f14e40177bb11f54a06f5b95c355
bc09144aa640d2485196f779733d10b84e755b60
http2: fix check for `frame->hd.type` According to the comment, this should be checking whether `frame->hd.type` is `NGHTTP2_GOAWAY`, i.e. `0x07` and not `0x03`. PR-URL: https://github.com/nodejs/node/pull/57644 Refs: https://github.com/nodejs/node/commit/1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b Reviewed-By: Matteo C...
[ { "path": "src/node_http2.cc", "patch": "@@ -1211,7 +1211,7 @@ int Http2Session::OnFrameNotSent(nghttp2_session* handle,\n // closed but the Http2Session will still be up causing a memory leak.\n // Therefore, if the GOAWAY frame couldn't be send due to\n // ERR_SESSION_CLOSING we should force c...
2025-04-09T11:48:11
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
rust-lang/rust
5701d13840031ed3061281e43794f631f41a44a6
6b1ee2c7018e97189c06a1734937da0bf1dd32a8
refactor `PointeeInfo` Make `size`/`align` always correct rather than conditionally on the `safe` field. This makes it less error prone and easier to work with for `MaybeDangling` / potential future pointer kinds like `Aligned<_>`.
[ { "path": "src/base.rs", "patch": "@@ -10,7 +10,7 @@ use rustc_data_structures::profiling::SelfProfilerRef;\n use rustc_index::IndexVec;\n use rustc_middle::ty::TypeVisitableExt;\n use rustc_middle::ty::adjustment::PointerCoercion;\n-use rustc_middle::ty::layout::FnAbiOf;\n+use rustc_middle::ty::layout::{Fn...
2026-02-19T17:42:24
vercel/next.js
62590c408102967f5fe7a2a6545618f46bae7fcb
d35c7366b874750832af27c8d191bba5a54b820e
Update E2E tests workflow (#85485) Adds an option to allow continuing tests on error to find all failures in single run also marks jobs as failed if any test failed while running.
[ { "path": ".github/workflows/integration_tests_reusable.yml", "patch": "@@ -91,7 +91,7 @@ jobs:\n afterBuild: |\n # e2e and ${{ inputs.test_type }} tests with `node run-tests.js`\n \n- export NEXT_TEST_CONTINUE_ON_ERROR=TRUE\n+ export NEXT_TEST_CONTINUE_ON_ERROR=true\n ex...
2025-10-29T00:35:14
electron/electron
5b34138db8b338d6192d17f74fa9119d0667b245
1fc2064f6a2f93ea2f2ceae42b73962134c9af8d
build: fix relative file read during npm publish (#44088)
[ { "path": "script/release/bin/publish-to-npm.ts", "patch": "@@ -12,7 +12,7 @@ import { getAssetContents } from '../get-asset';\n import { createGitHubTokenStrategy } from '../github-token';\n import { ELECTRON_ORG, ELECTRON_REPO, ElectronReleaseRepo, NIGHTLY_REPO } from '../types';\n \n-const rootPackageJso...
2024-10-02T00:09:57
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
nodejs/node
bc09144aa640d2485196f779733d10b84e755b60
d6b062cb92b151727eae6b770038878ee5d1b16d
module: fix incorrect formatting in require(esm) cycle error message Fixes: https://github.com/nodejs/node/issues/57451 PR-URL: https://github.com/nodejs/node/pull/57453 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jake Yuesong Li <jake.yues...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -416,8 +416,8 @@ class ModuleLoader {\n if (parentFilename) {\n message += ` (from ${parentFilename})`;\n }\n- message += 'A cycle involving require(esm) is disallowed to maintain ';\n- message += 'invariants madated ...
2025-04-09T11:47:58
golang/go
eaf2345256613dfbda7e8e69e5f845c4209246c6
4b7773356515c178f0af859b952b4b3a78f0813d
cmd/link: use a .def file to mark exported symbols on Windows Binutils defaults to exporting all symbols when building a Windows DLL. To avoid that we were marking symbols with __declspec(dllexport) in the cgo-generated headers, which instructs ld to export only those symbols. However, that approach makes the headers ...
[ { "path": "src/cmd/cgo/internal/testcshared/cshared_test.go", "patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"bytes\"\n \t\"cmd/cgo/internal/cgotest\"\n+\t\"cmp\"\n \t\"debug/elf\"\n \t\"debug/pe\"\n \t\"encoding/binary\"\n@@ -272,7 +273,7 @@ func createHeaders() error {\n \t\t// which results in the...
2025-09-22T13:48:36
vercel/next.js
d35c7366b874750832af27c8d191bba5a54b820e
2757ae5f7370f1801abd382a4097d56cd87857d3
fix: staleTimes.static should consistently enforce a 30s minimum (#85479) When the tree response sends back a static staleTime, we had handling to ensure that it was at minimum 30s, because anything less would mean we'd be discarding static cache entries more frequently than necessary. Currently a value of 0 would res...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/navigate-reducer.ts", "patch": "@@ -15,15 +15,17 @@ import {\n navigate as navigateUsingSegmentCache,\n NavigationResultTag,\n type NavigationResult,\n+ getStaleTimeMs,\n } from '../../segment-cache'\n \n // These values are set b...
2025-10-28T23:51:25
rust-lang/rust
312055fad562f3a20e88e3863676c2461a3fb3fe
7cefcb41ff7e27f3619bfecff429f72b5f3bface
refactor `PointeeInfo` Make `size`/`align` always correct rather than conditionally on the `safe` field. This makes it less error prone and easier to work with for `MaybeDangling` / potential future pointer kinds like `Aligned<_>`.
[ { "path": "compiler/rustc_abi/src/lib.rs", "patch": "@@ -2145,22 +2145,22 @@ pub enum PointerKind {\n }\n \n /// Encodes extra information we have about a pointer.\n+///\n /// Note that this information is advisory only, and backends are free to ignore it:\n /// if the information is wrong, that can cause U...
2026-02-19T17:42:24
electron/electron
15c8759ee0620fa373b82ae468cda03b77568b72
06bce8166b7df401d31829bcdf1f95450a1fcd4d
fix: -Wunsafe-buffer-usage warnings in WebFrameRenderer::ExecuteJavaScript() (#44053)
[ { "path": "shell/renderer/api/electron_api_web_frame.cc", "patch": "@@ -9,6 +9,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/containers/span.h\"\n #include \"base/memory/memory_pressure_listener.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"components/spellcheck/...
2024-10-01T17:06:02
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
d6b062cb92b151727eae6b770038878ee5d1b16d
dc035bbc9b310ff8067bc0dad22230978489c061
doc: list DOMException as a potential error raised by Node.js PR-URL: https://github.com/nodejs/node/pull/57783 Refs: https://github.com/nodejs/node/pull/57735 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jason...
[ { "path": "doc/api/errors.md", "patch": "@@ -4,23 +4,28 @@\n \n <!--type=misc-->\n \n-Applications running in Node.js will generally experience four categories of\n-errors:\n+Applications running in Node.js will generally experience the following\n+categories of errors:\n \n * Standard JavaScript errors suc...
2025-04-09T10:50:40
golang/go
4b7773356515c178f0af859b952b4b3a78f0813d
4e9006a716533fe1c7ee08df02dfc73078f7dc19
internal/syscall/windows: regenerate GetFileSizeEx GetFileSizeEx was generated before mkwinsyscall was updated to use SyscallN. Regenerate to use the new style. Fixes #75642 Change-Id: Ia473a167633b67fb75b5762d693848ecee425a7e Reviewed-on: https://go-review.googlesource.com/c/go/+/707615 Reviewed-by: Roland Shoemake...
[ { "path": "src/internal/syscall/windows/zsyscall_windows.go", "patch": "@@ -328,7 +328,7 @@ func GetFileInformationByHandleEx(handle syscall.Handle, class uint32, info *byt\n }\n \n func GetFileSizeEx(handle syscall.Handle, size *int64) (err error) {\n-\tr1, _, e1 := syscall.Syscall(procGetFileSizeEx.Addr()...
2025-09-29T06:37:35
vercel/next.js
d8cde2a57d586bfe7db588d8bfe4ff3d6830a4a7
afbdae65c073ab79f39e260e605103a149407061
fix: build CLI output not displaying Proxy (Middleware) when nodejs runtime (#85403)
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -4268,6 +4268,7 @@ export default async function build(\n pageExtensions: config.pageExtensions,\n buildManifest,\n middlewareManifest,\n+ functionsConfigManifest,\n hasGSPAndRevalidateZero,\n ...
2025-10-28T23:17:09
electron/electron
06bce8166b7df401d31829bcdf1f95450a1fcd4d
6f88f0c7958f99c674ab9e7c6b78f322dbd65e96
fix: -Wunsafe-buffer-usage warnings in ElectronAccessibilityUI ctor (#44055) fix: -Wunsafe-buffer-usage warnings in ElectronAccessibilityUI constructor
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -359,8 +359,7 @@ ElectronAccessibilityUI::ElectronAccessibilityUI(content::WebUI* web_ui)\n \n // Add required resources.\n html_source->UseStringsJs();\n- html_source->AddResourcePaths(\n- base::make_span(kAccessibilityResources...
2024-10-01T17:05:46
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
golang/go
4e9006a716533fe1c7ee08df02dfc73078f7dc19
047c2ab841e2d2233d0bef420d1b5ecb545a380a
crypto/tls: quote protocols in ALPN error message Quote the protocols sent by the client when returning the ALPN negotiation error message. Fixes CVE-2025-58189 Fixes #75652 Change-Id: Ie7b3a1ed0b6efcc1705b71f0f1e8417126661330 Reviewed-on: https://go-review.googlesource.com/c/go/+/707776 Auto-Submit: Roland Shoemake...
[ { "path": "src/crypto/tls/handshake_server.go", "patch": "@@ -357,7 +357,7 @@ func negotiateALPN(serverProtos, clientProtos []string, quic bool) (string, erro\n \tif http11fallback {\n \t\treturn \"\", nil\n \t}\n-\treturn \"\", fmt.Errorf(\"tls: client requested unsupported application protocols (%s)\", cl...
2025-09-29T17:11:56
nodejs/node
dc035bbc9b310ff8067bc0dad22230978489c061
437c6aac16a3b1bb8674fbe0b1709bf949105c01
zlib: fix pointer alignment The function AllocForBrotli prefixes the allocated memory with its size, and returns a pointer to the region after it. This pointer can however no longer be suitably aligned. Correct this by allocating the maximum of the the size of the size_t and the max alignment. On Arm 32bits the size_...
[ { "path": "src/node_zlib.cc", "patch": "@@ -608,7 +608,8 @@ class CompressionStream : public AsyncWrap, public ThreadPoolWork {\n }\n \n static void* AllocForBrotli(void* data, size_t size) {\n- size += sizeof(size_t);\n+ constexpr size_t offset = std::max(sizeof(size_t), alignof(max_align_t));\n+...
2025-04-09T10:24:13
vercel/next.js
94e5181856a6b3137eef02ec1329ef902f27c2c8
1b2d42d67e62b30ef84bcc32744a30e81c834b25
fix: Rspack throw error when using ForceCompleteRuntimePlugin (#85221) TODO: Rspack currently does not support the hooks and chunk methods required by `ForceCompleteRuntimePlugin`. Temporarily disable `ForceCompleteRuntimePlugin` when using Rspack as the bundler. This plugin ensures complete webpack runtime is avail...
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1965,7 +1965,9 @@ export default async function getBaseWebpackConfig(\n plugins: [\n // In prod Webpack will already have a runtime for all reachable chunks.\n // During dev, it will update the runtime as chunks come in whi...
2025-10-28T18:51:19
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
nodejs/node
10f081e5493b05bd1453a62e50f940bc2e680217
f3ba30524510fb2734b050813b89e59275c888dd
test: fix the decimal fractions explaination PR-URL: https://github.com/nodejs/node/pull/57732 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-util-getcallsites.js", "patch": "@@ -29,7 +29,7 @@ const assert = require('node:assert');\n );\n }\n \n-// Guarantee dot-left numbers are ignored\n+// Guarantee dot-right numbers are ignored\n {\n const callSites = getCallSites(3.6);\n assert.strictEqual(callSites.length,...
2025-04-02T14:53:27
electron/electron
61565465fdebecf294286f40cbeab78d4160e272
7ebc427bf5d6c04ecc4b382a97bc2c28ab7934c9
build: convert all release scripts to typescript (#44035) * build: convert all release scripts to typescript * fix test imports * build: fix version bumper export * refactor: use as const * spec: fix bad type spec
[ { "path": "package.json", "patch": "@@ -25,7 +25,6 @@\n \"buffer\": \"^6.0.3\",\n \"chalk\": \"^4.1.0\",\n \"check-for-leaks\": \"^1.2.1\",\n- \"dotenv-safe\": \"^4.0.4\",\n \"dugite\": \"^2.7.1\",\n \"eslint\": \"^8.57.1\",\n \"eslint-config-standard\": \"^17.1.0\",\n@@ -57,7 +56...
2024-10-01T00:55:27
vercel/next.js
a986e1731d60ed02749ab0fb64fe581dc35e04a5
406721415df918d4eda14a54d1866569aeb5765b
Fix crash when suspending in Components using `useActionQueue` (#85459)
[ { "path": "packages/next/src/client/components/use-action-queue.ts", "patch": "@@ -22,6 +22,12 @@ export function dispatchAppRouterAction(action: ReducerActions) {\n dispatch(action)\n }\n \n+const __DEV__ = process.env.NODE_ENV !== 'production'\n+const promisesWithDebugInfo: WeakMap<\n+ Promise<AppRoute...
2025-10-28T17:00:50
golang/go
047c2ab841e2d2233d0bef420d1b5ecb545a380a
ae8eba071b228dd9e05de0b0c338f3d941a0a43f
cmd/link: don't pass -Wl,-S on Solaris Solaris linker's -S has a different meaning. Fixes #75637. Change-Id: I51e641d5bc6d7f64ab5aa280090c70ec787a1fbf Reviewed-on: https://go-review.googlesource.com/c/go/+/707096 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: D...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -386,7 +386,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() {\n+\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linke...
2025-09-26T13:45:08
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
b92f77a094effd36c7ef2629f59aff6df50b6d9c
b39699100e7847e46b4af86b3a61868290cb6413
doc: fix typo in writing-docs PR-URL: https://github.com/nodejs/node/pull/57776 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "doc/contributing/writing-docs.md", "patch": "@@ -1,6 +1,6 @@\n # How to write documentation for the Node.js project\n \n-This document refers to the Node.js API documentation that gets deployed to [nodejs.org/en/doc][]\n+This document refers to the Node.js API documentation that gets deployed to ...
2025-04-08T19:30:54
electron/electron
1d4b86cb3e2d5a8725eefd8f227ac5a221994a7c
77f7ba96ca8cb6248291cfb78bb66384d6e983b3
fix: -Wunsafe-buffer-usage warnings in AddComponentResourceEntries() (#44024) fix: -Wunsafe-buffer-usage warnings in ElectronComponentExtensionResourceManager::AddComponentResourceEntries() just replace pointer-and-length args with a span
[ { "path": "shell/browser/extensions/electron_component_extension_resource_manager.cc", "patch": "@@ -24,10 +24,9 @@ namespace extensions {\n \n ElectronComponentExtensionResourceManager::\n ElectronComponentExtensionResourceManager() {\n- AddComponentResourceEntries(kComponentExtensionResources,\n- ...
2024-09-30T16:01:24
vercel/next.js
406721415df918d4eda14a54d1866569aeb5765b
976a2222f0dfb9cd01fd83439bffca5bf10cf49d
Turbopack: correctly trace files with npm (#85323) The `.contains("/node_modules/")` condition didn't work for npm, where the path might be `"node_modules/.prisma/client"` This fixes cases of the following error with Prisma and npm ``` Prisma Client could not locate the Query Engine for runtime "rhel-openssl-3.0....
[ { "path": "crates/next-api/src/module_graph.rs", "patch": "@@ -568,14 +568,7 @@ async fn validate_pages_css_imports(\n .map(async |issue| {\n // We allow imports of global CSS files which are inside of `node_modules`.\n Ok(\n- if !issue\n- .m...
2025-10-28T16:45:04
golang/go
ae8eba071b228dd9e05de0b0c338f3d941a0a43f
fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01
cmd/link: use correct length for pcln.cutab The pcln.cutab slice holds uint32 elements, as can be seen in the runtime.moduledata type. The slice was being created with the len (and cap) set to the size of the slice, which means that the count was four times too large. This patch sets the correct len/cap. This doesn't...
[ { "path": "src/cmd/link/internal/ld/symtab.go", "patch": "@@ -645,7 +645,7 @@ func (ctxt *Link) symtab(pcln *pclntab) []sym.SymKind {\n \tsliceSym(pcln.funcnametab)\n \n \t// The cutab slice\n-\tsliceSym(pcln.cutab)\n+\tslice(pcln.cutab, uint64(ldr.SymSize(pcln.cutab))/4)\n \n \t// The filetab slice\n \tsli...
2025-09-29T04:25:24
rust-lang/rust
169dd72d476b415a974f8c37416af1bb80f29de3
f8704be04fe1150527fc2cf21dd44327f0fe87fb
Fix obtaining def_id from unresolved segment
[ { "path": "compiler/rustc_hir_analysis/src/delegation.rs", "patch": "@@ -572,17 +572,15 @@ fn get_delegation_user_specified_args<'tcx>(\n .opt_delegation_generics()\n .expect(\"Lowering delegation\");\n \n- let get_segment = |hir_id: HirId| -> (&'tcx PathSegment<'tcx>, DefId) {\n+ let ...
2026-03-05T07:38:56
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