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
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
c1e6e49d5d3f3fb927f1bfd1b453d8e7c906c6ac
7fbf54bfebf9243550177bc6871d80e58bedf1a6
fmt: reduce Errorf("x") allocations to match errors.New("x") For unformatted strings, it comes up periodically that there are more allocations using fmt.Errorf("x") compared to errors.New("x"). People cite it as a reason to switch code using fmt.Errorf to use errors.New instead. Three examples from the last few weeks...
[ { "path": "src/fmt/errors.go", "patch": "@@ -6,6 +6,7 @@ package fmt\n \n import (\n \t\"errors\"\n+\t\"internal/stringslite\"\n \t\"slices\"\n )\n \n@@ -19,7 +20,22 @@ import (\n // order they appear in the arguments.\n // It is invalid to supply the %w verb with an operand that does not implement\n // the...
2025-10-03T14:59:54
electron/electron
527efc01a4d989e973ed96042c890b820bb7b649
6c1b377192039733935ce8b5561576d985cbc56c
fix: -Wunsafe-buffer-usage warnings when read()ing and write()ing integers (#44185)
[ { "path": "shell/browser/electron_browser_main_parts_posix.cc", "patch": "@@ -25,6 +25,18 @@ namespace electron {\n \n namespace {\n \n+// write |ref|'s raw bytes to |fd|.\n+template <typename T>\n+void WriteValToFd(int fd, const T& ref) {\n+ base::span<const uint8_t> bytes = base::byte_span_from_ref(ref);...
2024-10-11T19:29: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
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
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
1d62e92567a858b18f4e7e0c24e071c039dd3edf
4fca79833fcdd0dc19bb0feba8715a0def3d07be
test/codegen: make sure assignment results are used. Some tests make assignments to an argument without reading it. With CL 708865, they are treated as dead stores and are removed. Make sure the results are used. Fixes #75745. Fixes #75746. Change-Id: I05580beb1006505ec1550e5fa245b54dcefd10b9 Reviewed-on: https://go...
[ { "path": "test/codegen/constants.go", "patch": "@@ -7,7 +7,7 @@\n package codegen\n \n // A uint16 or sint16 constant shifted left.\n-func shifted16BitConstants(out [64]uint64) {\n+func shifted16BitConstants() (out [64]uint64) {\n \t// ppc64x: \"MOVD\\t[$]8193,\", \"SLD\\t[$]27,\"\n \tout[0] = 0x0000010008...
2025-10-04T15:32:33
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
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
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
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
golang/go
719dfcf8a8478d70360bf3c34c0e920be7b32994
f3312124c2370c2f64a7f9ad29732ec30209647a
cmd/compile: redo arm64 LR/FP save and restore Instead of storing LR (the return address) at 0(SP) and the FP (parent's frame pointer) at -8(SP), store them at framesize-8(SP) and framesize-16(SP), respectively. We push and pop data onto the stack such that we're never accessing anything below SP. The prolog/epilog ...
[ { "path": "src/cmd/compile/abi-internal.md", "patch": "@@ -576,19 +576,19 @@ A function's stack frame, after the frame is created, is laid out as\n follows:\n \n +------------------------------+\n+ | return PC |\n+ | frame pointer on entry | ← R29 points to\n | ... loc...
2025-05-17T22:05:56
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
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
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
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
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
golang/go
f3312124c2370c2f64a7f9ad29732ec30209647a
24416458c21a48d83f34d3c2242d892e002bcd6c
runtime: remove batching from spanSPMC free Added in CL 700496, freeSomeSpanSPMCs attempts to bound tail latency by processing at most 64 entries at a time, as well as returning early if it notices a preemption request. Both of those are attempts to reduce tail latency, as we cannot preempt the function while it holds...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -2046,8 +2046,7 @@ func gcSweep(mode gcMode) bool {\n \t\tprepareFreeWorkbufs()\n \t\tfor freeSomeWbufs(false) {\n \t\t}\n-\t\tfor freeSomeSpanSPMCs(false) {\n-\t\t}\n+\t\tfreeDeadSpanSPMCs()\n \t\t// All \"free\" events for this mark/sweep cycle have\n \t\t// no...
2025-10-06T18:38:47
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
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
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
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
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
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
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
golang/go
c2fb15164bdb9d44a302771be613fbef5faa4a8e
ac2ec82172799b88c057bb9ded6fe24e7909e860
testing/synctest: remove Run Run (experimental) is replaced by Test. Fixes #74012 Change-Id: I1721e1edfbcb4f1fe2159dc0430a13685b2d08c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/709355 Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com> Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Damien Neil...
[ { "path": "src/testing/synctest/run.go", "patch": "@@ -1,16 +0,0 @@\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-//go:build goexperiment.synctest\n-\n-package synctest\n-\n-import \"i...
2025-10-05T22:17:40
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
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
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
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
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
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
golang/go
ac2ec82172799b88c057bb9ded6fe24e7909e860
e74b224b7c7b7511fe37686d81a6e33d40fdeb17
runtime: bump thread count slack for TestReadMetricsSched This test is *still* flaky, but it appears to be just mayMoreStackPreempt and the thread count *occasionally* exceeds the original (and arbitrary) thread count slack by exactly 1. Bump the thread count slack by one. We can investigate further and bump it again...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -84,7 +84,12 @@ func SchedMetrics() {\n \n \t// threadsSlack is the maximum number of threads left over\n \t// from the runtime (sysmon, the template thread, etc.)\n-\tconst threadsSlack = 4\n+\t// Certain build modes may also cause the...
2025-10-03T16:23:10
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
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
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
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
golang/go
e74b224b7c7b7511fe37686d81a6e33d40fdeb17
3a05e7b0325eb71fede880f67db63d192f2fa0e1
crypto/tls: streamline BoGo testing w/ -bogo-local-dir If -bogo-local-dir is provided but doesn't exist, populate it with a git checkout of the BoringSSL repo at the correct SHA. Without any -bogo-local-dir argument the BoGo TLS handshake test will fetch the BoringSSL source at a specific SHA as a Go module in a r/o ...
[ { "path": "src/crypto/tls/bogo_shim_test.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/base64\"\n \t\"encoding/json\"\n \t\"encoding/pem\"\n+\t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n \t\"html/template\"\n@@ -541,6 +542,7 @@ func orderlyShutdown(tlsConn *Conn) {\n }\n \n func TestBogoSuite(t *testin...
2025-07-11T14:42:22
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
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
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
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
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
golang/go
3a05e7b0325eb71fede880f67db63d192f2fa0e1
2a71af11fc7e45903be9ab84e59c668bb051f528
spec: close tag Close an "a" tag. While we are here, fix some escapes. Change-Id: I16040eff0d4beeef6230aec8fcf4315f0efd13a4 GitHub-Last-Rev: 3ba7b9f7478f54338bd3ca7ac55cc2ad1ffcb3a4 GitHub-Pull-Request: golang/go#75760 Reviewed-on: https://go-review.googlesource.com/c/go/+/708517 Reviewed-by: Sean Liao <sean@liao.dev...
[ { "path": "doc/go_spec.html", "patch": "@@ -3173,7 +3173,7 @@ <h3 id=\"Composite_literals\">Composite literals</h3>\n \n <p>\n Unless the LiteralType is a type parameter,\n-its <a href=\"#Underlying_types\">underlying type\n+its <a href=\"#Underlying_types\">underlying type</a>\n must be a struct, array, sl...
2025-10-05T11:57: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
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
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
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
ee5369b003b17b34aa6417cf8c9b702f1cd76da1
1bca4c1673f5d90822086f34aed6de4a9bea2d93
cmd/link: add LIBRARY statement only with -buildmode=cshared When creating a .def file for Windows linking, add a LIBRARY statement only when building a DLL with -buildmode=cshared. That statement is documented to instruct the linker to create a DLL, overriding any other flag that might indicate building an executable...
[ { "path": "src/cmd/link/internal/ld/pe.go", "patch": "@@ -1758,7 +1758,9 @@ func peCreateExportFile(ctxt *Link, libName string) (fname string) {\n \tfname = filepath.Join(*flagTmpdir, \"export_file.def\")\n \tvar buf bytes.Buffer\n \n-\tfmt.Fprintf(&buf, \"LIBRARY %s\\n\", libName)\n+\tif ctxt.BuildMode == ...
2025-10-03T09:18:47
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
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
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
38b26f29f1f97d24afc852b9f4eee829341ee682
003b5ce1bc15cf265e74ba1ec4eb7cf801e49986
cmd/compile: remove stores to unread parameters Currently, we remove stores to local variables that are not read. We don't do that for arguments. But arguments and locals are essentially the same. Arguments are passed by value, and are not expected to be read in the caller's frame. So we can remove the writes to them ...
[ { "path": "src/cmd/compile/internal/ssa/deadstore.go", "patch": "@@ -7,6 +7,7 @@ package ssa\n import (\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/obj\"\n )\n \n // dse does dead-store elimination on the Function.\n@@ -213,7 +214,7 @@ func elimDeadAutosGeneric(f *F...
2025-09-22T14:57:29
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
rust-lang/rust
1f94e979fb9b09f4df5483ce549fb96574be1e6e
f8704be04fe1150527fc2cf21dd44327f0fe87fb
Fix some comments about dataflow analysis. Mostly in the examples in `initialized.rs`. In particular, the `EverInitializedPlaces` example currently doesn't cover how it's initialization sites that are tracked, rather than local variables (that's the `b_0`/`b_1` distinction in the example.)
[ { "path": "compiler/rustc_middle/src/mir/basic_blocks.rs", "patch": "@@ -65,7 +65,7 @@ impl<'tcx> BasicBlocks<'tcx> {\n \n /// Returns basic blocks in a reverse postorder.\n ///\n- /// See [`traversal::reverse_postorder`]'s docs to learn what is preorder traversal.\n+ /// See [`traversal::reve...
2025-10-22T03:28:05
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
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
b95dbe6a3a79a459173557a3b670eb6cb2c6d060
b0837e0f2451bfe420b082109f259122bf676298
fix: Proxy not picked up on Windows (#85443) Proxy is not being picked up during prod on Windows. It is because of two reasons: 1. `isAtConventionLevel` condition was false as the dir was `\\` in Windows, but was checking with explicit `/`. 2. `page` value passed to `getStaticInfoIncludingLayouts` function was in `\\...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -764,6 +764,7 @@ jobs:\n node run-tests.js \\\n test/e2e/app-dir/app/index.test.ts \\\n test/e2e/app-dir/app-edge/app-edge.test.ts \\\n+ test/e2e/app-dir/proxy-runtime-nodejs/proxy-runtime-nodejs.test.ts \\\n...
2025-10-28T13:44:12
golang/go
003b5ce1bc15cf265e74ba1ec4eb7cf801e49986
d91148c7a8b2d774ddea5c66c170d24937195df5
cmd/compile: fix SIMD const rematerialization condition This CL fixes a condition for the previous fix CL 704056. Cherry-picked from the dev.simd branch. This CL is not necessarily SIMD specific. Apply early to reduce risk. Test is SIMD specific so not included for now. Change-Id: I1f1f8c6f72870403cb3dff14755c43385d...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2561,22 +2561,25 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\t// Handle incompa...
2025-09-19T18:38:25
rust-lang/rust
e26974ca33aa322bbc60db5d1010899e40f6d624
b55e20ad905a336395ca80863488d0827712d067
bootstrap: minimal fix for ./x install src with build.docs = false When running the `install src` command I'm seeing failures as the `builder.doc_out(host)` directory does not exist. This is because `match_paths_to_steps_and_run()` doesn't actually build any documentation as the `paths.is_empty()` causes an early retu...
[ { "path": "src/bootstrap/src/core/build_steps/dist.rs", "patch": "@@ -87,6 +87,12 @@ impl Step for Docs {\n // from a shared directory.\n builder.run_default_doc_steps();\n \n+ // In case no default doc steps are run for host, it is possible that `<host>/doc` directory\n+ // is...
2026-01-08T22:35:43
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
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
vercel/next.js
456d8e7b8c0f1f11fa9d290ccc916c6c686d5081
0b6fe158c61fec5f30289856a3d1c078b0be7022
fix: ensure req.query is writable (#81573) ### What? - Upgrade development dependency **Express** to the latest version (5.1.0). - Replace direct assignment of `apiReq.query` with `Object.defineProperty` to ensure the property is writable, enumerable, and configurable. ### Why? - To use the most up-to-date and suppor...
[ { "path": "packages/next/src/server/api-utils/node/api-resolver.ts", "patch": "@@ -355,8 +355,14 @@ export async function apiResolver(\n \n // Parsing of cookies\n setLazyProp({ req: apiReq }, 'cookies', getCookieParser(req.headers))\n- // Parsing query string\n- apiReq.query = query\n+ // ...
2025-10-28T11:15:05
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
golang/go
ad3db2562edf23cb4fb9a909ea11d57b65e304fb
18cd4a1fc7d5387ae91ffc23328e4fc81f93681d
cmd/compile: handle rematerialized op for incompatible reg constraint This CL fixes an issue raised by contributor dominikh@. Cherry-picked from the dev.simd branch. This CL is not necessarily SIMD specific. Apply early to reduce risk. Test is SIMD specific so not included for now. Change-Id: I941b330a6ba6f6c120c699...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2561,7 +2561,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p...
2025-09-16T03:27:41
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
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
vercel/next.js
0b6fe158c61fec5f30289856a3d1c078b0be7022
61b285e52842e3a458b5efb442f71123d8813ae8
[test] Exclude Next.js internal stack frames from cache-component-error CLI output assertions (#85421)
[ { "path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts", "patch": "@@ -226,44 +226,15 @@ describe('Cache Components Errors', () => {\n }\n } else {\n if (isDebugPrerender) {\n- // expect(output).toMatchInlineSnapshot(`\n- ...
2025-10-28T09:21:26
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
golang/go
1caa95acfa9d516eb3bc26292b5601bea25a4e79
ec70d1902355f10e0ab4788334b80db11ab69785
cmd/compile: enhance prove to deal with double-offset IsInBounds checks For chunked iterations (useful for, but not exclusive to, SIMD calculations) it is common to see the combination of ``` for ; i <= len(m)-4; i += 4 { ``` and ``` r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3] `` Prove did not handle the case of l...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+...
2025-09-03T17:09:32
nodejs/node
b39699100e7847e46b4af86b3a61868290cb6413
1e95107b163ae3ea4c75bab7be6e67a1142ad1dc
doc: clarify examples section in REPL doc The current examples presented at the bottom of the REPL doc have two issues: - they look like they're part of the section above (on how to run multiple REPL instances in the same process) but they are not - the alert informing readers not to use the second example ...
[ { "path": "doc/api/repl.md", "patch": "@@ -909,30 +909,204 @@ to connect to both Unix and TCP sockets.\n By starting a REPL from a Unix socket-based server instead of stdin, it is\n possible to connect to a long-running Node.js process without restarting it.\n \n-For an example of running a \"full-featured\...
2025-04-08T18:25:41
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
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
vercel/next.js
333c30b86b593f3d4e2e2864317fbb0aea580cd0
c72b4263af70bda1cf0a70ccdfd25c34e10c72a5
fix(next/image): swap dependencies (#85419) Swapping `is-local-address` for `ipaddr.js`
[ { "path": "packages/next/package.json", "patch": "@@ -270,8 +270,8 @@\n \"icss-utils\": \"5.1.0\",\n \"ignore-loader\": \"0.1.2\",\n \"image-size\": \"1.2.1\",\n+ \"ipaddr.js\": \"2.2.0\",\n \"is-docker\": \"2.0.0\",\n- \"is-local-address\": \"2.2.2\",\n \"is-wsl\": \"2.2.0\",\n ...
2025-10-28T00:08:01
golang/go
10e796884905d23ab2419cc158769e8fdc73de4e
ab043953cbd6e3cd262548710f35f05924aa8f32
cmd/compile: accounts rematerialize ops's output reginfo This CL implements the check for rematerializeable value's output regspec at its remateralization site. It has some potential problems, please see the TODO in regalloc.go. Fixes #70451. Cherry-picked from the dev.simd branch. This CL is not necessarily SIMD sp...
[ { "path": "src/cmd/compile/internal/ssa/func.go", "patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli...
2025-08-12T16:53:44
nodejs/node
1540fc6a37e42fe002d3061a516431741e8e6d3d
b2ab1a2c417a575cbcd3f05d0a65677fd8cb02c0
src: improve error handling in `node_env_var.cc` PR-URL: https://github.com/nodejs/node/pull/57767 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "src/node_env_var.cc", "patch": "@@ -436,15 +436,14 @@ static Intercepted EnvGetter(Local<Name> property,\n MaybeLocal<String> value_string =\n env->env_vars()->Get(env->isolate(), property.As<String>());\n \n- bool has_env = !value_string.IsEmpty();\n TraceEnvVar(env, \"get\", property...
2025-04-07T22:37:25
vercel/next.js
5e282808c0d5dd72124c718e54e863b7ace4b623
1b45163bce3dab30d7a79dff95238b84016b54c2
remove unstable_forceStale prefetch option & restore `prefetch={true}` functionality (#85411) `prefetch={true}` with `cacheComponents` was opting into runtime prefetching, with `unstable_forceStale` preserving the old behavior of fetching the full (stale) data. However we only intended to expose runtime prefetching vi...
[ { "path": "packages/next/src/client/app-dir/link.tsx", "patch": "@@ -153,7 +153,7 @@ type InternalLinkProps = {\n * </Link>\n * ```\n */\n- prefetch?: boolean | 'auto' | null | 'unstable_forceStale'\n+ prefetch?: boolean | 'auto' | null\n \n /**\n * (unstable) Switch to a full prefetch on ho...
2025-10-27T19:59:45
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
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
nodejs/node
08a7df83379a9d222d21dad86c05320b3e4baab4
e06a2ad21f84fef3fa06f6a3e664296e89c4d72e
src: improve error handling in node_http2 PR-URL: https://github.com/nodejs/node/pull/57764 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/node_http2.cc", "patch": "@@ -426,8 +426,13 @@ Http2Priority::Http2Priority(Environment* env,\n Local<Value> weight,\n Local<Value> exclusive) {\n Local<Context> context = env->context();\n- int32_t parent_ = parent->Int32Value(cont...
2025-04-05T18:40:07
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
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
nodejs/node
e06a2ad21f84fef3fa06f6a3e664296e89c4d72e
588770630da693d26e25361f66f6fd245b0a41c1
src: improve error handing in node_messaging PR-URL: https://github.com/nodejs/node/pull/57760 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -491,8 +491,12 @@ Maybe<bool> Message::Serialize(Environment* env,\n Local<Object> entry = entry_val.As<Object>();\n // See https://github.com/nodejs/node/pull/30339#issuecomment-552225353\n // for details.\n- if (entry->HasPrivate(context, env-...
2025-04-05T18:07:52
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
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
golang/go
ebb72bef44a0e125c7f900a04af6538e3c39dfc6
c54dc1418b6fbff4176aaaffcc9fab6f1ad631a6
cmd/compile: don't treat devel compiler as a released compiler The compiler has a logic to print different messages on internal compiler error depending on whether this is a released version of Go. It hides the panic stack trace if it is a released version. It does this by checking the version and see if it has a "go"...
[ { "path": "src/cmd/compile/internal/base/print.go", "patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers...
2025-06-20T16:02:18
nodejs/node
588770630da693d26e25361f66f6fd245b0a41c1
a5877d014c7214807a80369d0e90b30417c9b993
src: improve error handling in crypto_x509 Avoiding use of ToLocalChecked PR-URL: https://github.com/nodejs/node/pull/57757 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/crypto/crypto_x509.cc", "patch": "@@ -854,7 +854,20 @@ MaybeLocal<Object> X509Certificate::New(Environment* env,\n if (!ctor->NewInstance(env->context()).ToLocal(&obj))\n return MaybeLocal<Object>();\n \n- new X509Certificate(env, obj, std::move(cert), issuer_chain);\n+ Local<Object> ...
2025-04-05T17:17:27
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
68e60c33ca7d67cc3fb93c57597b1870c98b8eba
2a4737927b553b652eb47f5f65829d3a3b624ea2
Fix grammatical errors in updating data documentation (#85067) <!-- 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 C...
[ { "path": "docs/01-app/01-getting-started/08-updating-data.mdx", "patch": "@@ -14,7 +14,7 @@ You can update data in Next.js using React's [Server Functions](https://react.de\n \n ## What are Server Functions?\n \n-A **Server Function** is an asynchronous function that runs on the server. They can be called ...
2025-10-27T18:16:05
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
nodejs/node
a5877d014c7214807a80369d0e90b30417c9b993
b6a10f75b3d3fcc770750281e2bcdc9bf205de11
src: improve error handling in callback.cc Avoiding use of v8 `Checked()` APIs where appropriate. Few other style cleanups PR-URL: https://github.com/nodejs/node/pull/57758 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/api/callback.cc", "patch": "@@ -13,6 +13,7 @@ using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n using v8::MaybeLocal;\n+using v8::Number;\n using v8::Object;\n using v8::String;\n using v8::Undefined;\n@@ -51,7 +52,7 @@ InternalCallbackScope::InternalCallbackScope(Environment* ...
2025-04-05T17:43:33
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
2a4737927b553b652eb47f5f65829d3a3b624ea2
777b8fa227702c341f82c4bbc5b6f1085b56d6bd
Fix typo in Fast Refresh documentation (#85352) Small grammar fix for fast-refresh.mdx <!-- 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...
[ { "path": "docs/03-architecture/fast-refresh.mdx", "patch": "@@ -3,7 +3,7 @@ title: Fast Refresh\n description: Fast Refresh is a hot module reloading experience that gives you instantaneous feedback on edits made to your React components.\n ---\n \n-Fast refresh is a React feature integrated into Next.js t...
2025-10-27T18:14:45
nodejs/node
b85505d450e3a401cf0d13c096abfc75a7932105
a2de5b9150da60c77144bb5333371eaca3fab936
dns: restore dns query cache ttl Fixes: https://github.com/nodejs/node/issues/57636 Co-authored-by: Robert Nagy <ronagy@icloud.com> PR-URL: https://github.com/nodejs/node/pull/57640 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Tim Perry <pimterry@gma...
[ { "path": "src/cares_wrap.cc", "patch": "@@ -778,6 +778,7 @@ void ChannelWrap::Setup() {\n options.sock_state_cb_data = this;\n options.timeout = timeout_;\n options.tries = tries_;\n+ options.qcache_max_ttl = 0;\n \n int r;\n if (!library_inited_) {", "additions": 1, "deletions": 0, ...
2025-04-07T11:43:14
electron/electron
77f7ba96ca8cb6248291cfb78bb66384d6e983b3
af58931efa834e78fd21eba2670c3f70d9ebb7f8
fix: -Wunsafe-buffer-usage in electron::SetFontDefaults() (#44014) * refactor: reduce code duplication in WebContentsPreferences::OverrideWebkitPrefs() * refactor: limit scope of web_preferences temporary in ElectronBrowserClient::OverrideWebkitPrefs() * chore: savepoint * chore: savepoint * chore: savepoi...
[ { "path": "shell/browser/font_defaults.cc", "patch": "@@ -4,12 +4,12 @@\n \n #include \"shell/browser/font_defaults.h\"\n \n-#include <array>\n #include <string>\n #include <string_view>\n \n-#include \"base/strings/strcat.h\"\n-#include \"base/strings/utf_string_conversions.h\"\n+#include \"base/containers...
2024-09-30T13:09:36
vercel/next.js
777b8fa227702c341f82c4bbc5b6f1085b56d6bd
f6d171968a2aa1e30b314ca20adb14fce27bb43e
docs: Fix typo in SEO section of loading.mdx (#85301) The second “used” seems unnecessary. <!-- 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) ...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/loading.mdx", "patch": "@@ -86,7 +86,7 @@ In the same folder, `loading.js` will be nested inside `layout.js`. It will auto\n ### SEO\n \n - For bots that only scrape static HTML, and cannot execute JavaScript like a full browser, such as Twitterbot...
2025-10-27T18:08:14
nodejs/node
93644d512694fd9f4a3b25f50c918fff455e42fd
7d45c346bbdf643a93d0247fee9f91c06b24aec7
src: improve StringBytes error handling PR-URL: https://github.com/nodejs/node/pull/57706 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "src/api/encoding.cc", "patch": "@@ -8,6 +8,8 @@ namespace node {\n using v8::HandleScope;\n using v8::Isolate;\n using v8::Local;\n+using v8::MaybeLocal;\n+using v8::TryCatch;\n using v8::Value;\n \n enum encoding ParseEncoding(const char* encoding,\n@@ -133,20 +135,30 @@ enum encoding ParseEncod...
2025-04-06T17:19:44
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
electron/electron
af58931efa834e78fd21eba2670c3f70d9ebb7f8
eb40d2cbfafea4ae8dfac9090d099b368f4ed3eb
chore: bump chromium to 131.0.6744.0 (main) (#43948) * chore: bump chromium in DEPS to 131.0.6738.0 * chore: bump chromium in DEPS to 131.0.6740.0 * 5889025: [LaCrOS] Remove LaCrOS screen capturer. | https://chromium-review.googlesource.com/c/chromium/src/+/5889025 * https://boringssl.googlesource.com/borings...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6734.0',\n+ '131.0.6744.0',\n 'node_version':\n 'v20.17.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2024-09-30T12:54:44
vercel/next.js
87fc1b9d455f639b5fa39c87f1aaa96236b242c2
8cdd4eada78bb8894a9007ccac37fe0828a6f83c
Fix duplicate .next/types `include` on Windows (#85400)
[ { "path": "packages/next/src/lib/typescript/writeConfigurationDefaults.ts", "patch": "@@ -1,4 +1,5 @@\n import { readFileSync, writeFileSync } from 'fs'\n+import * as path from 'path'\n import { bold, cyan, white } from '../picocolors'\n import * as CommentJson from 'next/dist/compiled/comment-json'\n impor...
2025-10-27T17:08:15