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 |
|---|---|---|---|---|---|
nodejs/node | 56d8dc120c4bd3178c9855cd97216b37a3f6821a | a46af03e244bfe9bf9149054bcfe870290c55167 | lib: add warning when binding inspector to public IP
Add `isLoopback` function to `internal/net` module to check if a given
host is a loopback address.
Add a warning when binding the inspector to a public IP with an open
port, as it allows external hosts to connect to the inspector.
Fixes: https://github.com/nodejs/... | [
{
"path": "lib/inspector.js",
"patch": "@@ -18,6 +18,8 @@ const {\n ERR_INSPECTOR_NOT_WORKER,\n } = require('internal/errors').codes;\n \n+const { isLoopback } = require('internal/net');\n+\n const { hasInspector } = internalBinding('config');\n if (!hasInspector)\n throw new ERR_INSPECTOR_NOT_AVAILABLE... | 2024-11-05T22:22:58 |
electron/electron | 6e4d90fcdbfff7eb1d445edf6ad7312c2fc7ded0 | fd8d9f06fd9b1154836f9c76a02f651ddf8cd603 | fix: ensure bounds stability in `OnWidgetBoundsChanged` (#43431)
* fix: ensure bounds stability in OnWidgetBoundsChanged
* Update shell/browser/native_window_views.cc
Co-authored-by: Charles Kerr <charles@charleskerr.com>
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -22,6 +22,7 @@\n \n #include \"base/containers/contains.h\"\n #include \"base/memory/raw_ref.h\"\n+#include \"base/numerics/ranges.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"content/public/browser/desktop_media_id.h\"\... | 2024-08-23T15:02:05 |
vercel/next.js | 8bc8dc343c30fdc263fcf719fbc99febe0fe4c93 | 56db4345f2eca501712d1963b78521a68a73803e | docs: Add missing codemod docs (#84980)
- middleware-to-proxy
- remove-unstable-prefix | [
{
"path": "docs/01-app/02-guides/upgrading/codemods.mdx",
"patch": "@@ -40,6 +40,69 @@ This codemod removes the `experimental_ppr` Route Segment Config from App Router\n - export const experimental_ppr = true;\n ```\n \n+#### Remove `unstable_` prefix from stabilized API\n+\n+##### `remove-unstable-prefix`\... | 2025-10-17T11:20:17 |
golang/go | d9751166a6872e05afee5087cee2f360344bd2f9 | 4eb5c6e07b56b75033d98941c8fadd3304ee4965 | [dev.simd] cmd/compile: handle rematerialized op for incompatible reg constraint
This CL fixes an issue raised by contributor dominikh@.
Change-Id: I941b330a6ba6f6c120c69951ddd24933f2f0b3ec
Reviewed-on: https://go-review.googlesource.com/c/go/+/704056
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.i... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2576,7 +2576,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 |
facebook/react | abc0b712aaa8498c70ff221cda19bc0cdc287f38 | 3f4391d5896b419b93f58103d153b67906460c2a | [ci] Fix sizebot job omitting build_and_lint dependency
ghstack-source-id: 3d457818c9812e320ddbd2bb3f35d5b2e3b92bdc
Pull Request resolved: https://github.com/facebook/react/pull/30392 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -565,7 +565,7 @@ jobs:\n \n sizebot:\n name: Run sizebot\n- needs: download_base_build_for_sizebot\n+ needs: [build_and_lint, download_base_build_for_sizebot]\n runs-on: ubuntu-latest\n steps:\n - uses: actions/... | 2024-07-18T21:35:53 |
rust-lang/rust | 4ff2a24441d9bf9702b3ee2c4805a3439e873420 | e492d022858076a414ad42139e05cb43e0d238b6 | Fix ICE in `swap_binop()`
Make `swap_binop()` a method of `HirEqInterExpr`, and use the proper
typeck to check the type of an expression. | [
{
"path": "clippy_utils/src/hir_utils.rs",
"patch": "@@ -505,7 +505,7 @@ impl HirEqInterExpr<'_, '_, '_> {\n (ExprKind::Block(l, _), ExprKind::Block(r, _)) => self.eq_block(l, r),\n (ExprKind::Binary(l_op, ll, lr), ExprKind::Binary(r_op, rl, rr)) => {\n l_op.node == r... | 2026-03-03T21:38:58 |
nodejs/node | afe3909483a2d5ae6b847055f544da40571fb28d | 96403793a183c1e6a369a694e1b252e197f268cb | util: avoid run debug when enabled is false
it can improve performace 700x faster
PR-URL: https://github.com/nodejs/node/pull/57494
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jordan Harband <ljharb@gmail.com> | [
{
"path": "lib/internal/util/debuglog.js",
"patch": "@@ -62,7 +62,7 @@ function lazyUtilColors() {\n return utilColors;\n }\n \n-function debuglogImpl(enabled, set, args) {\n+function debuglogImpl(enabled, set) {\n if (debugImpls[set] === undefined) {\n if (enabled) {\n const pid = process.pid... | 2025-03-21T00:00:52 |
electron/electron | ca0837c85201690648821aa13473a15c70a21f6e | 1aeca6fd0e988cfc4f82322a19da034f190134b3 | chore: fix typos in 'shell/' folder. (#43373) | [
{
"path": "shell/browser/api/electron_api_session.cc",
"patch": "@@ -261,7 +261,7 @@ class ClearDataTask {\n }\n \n private:\n- // An individiual |content::BrowsingDataRemover::Remove...| operation as part\n+ // An individual |content::BrowsingDataRemover::Remove...| operation as part\n // of a full ... | 2024-08-23T00:48:32 |
facebook/react | 4fb11acd795310a97c5052733e3240a9517eae76 | f6bc05a22a7b3ff609d441053b73a4f7e65a38e0 | [ci] Add sizebot to gh actions
Wires up sizebot in gh actions. I also fixed sizebot incorrectly
reporting that ReactAllWarnings was deleted.
ghstack-source-id: d3b1bb2088651409e8656c66f1eb28ab534a0604
Pull Request resolved: https://github.com/facebook/react/pull/30380 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -522,3 +522,87 @@ jobs:\n - run: ./scripts/circleci/run_devtools_e2e_tests.js\n env:\n RELEASE_CHANNEL: experimental\n+\n+ # ----- SIZEBOT -----\n+ download_base_build_for_sizebot:\n+ name: Download base buil... | 2024-07-18T20:19:11 |
rust-lang/rust | e8a28e78a947c2233abbc47ec00bcd8513df7239 | d2218f5f5ca3f502772ec4cb69fc2ee44e096512 | Remove `tls::with_related_context`.
This function gets the current `ImplicitCtxt` and checks that its `tcx`
matches the passed-in `tcx`. It's an extra bit of sanity checking: when
you already have a `tcx`, and you need access to the non-`tcx` parts of
`ImplicitCtxt`, check that your `tcx` matches the one in `ImplicitC... | [
{
"path": "compiler/rustc_middle/src/ty/context/tls.rs",
"patch": "@@ -1,5 +1,3 @@\n-use std::{mem, ptr};\n-\n use rustc_data_structures::sync;\n \n use super::{GlobalCtxt, TyCtxt};\n@@ -89,29 +87,6 @@ where\n with_context_opt(|opt_context| f(opt_context.expect(\"no ImplicitCtxt stored in tls\")))\n }\n... | 2026-03-02T22:42:13 |
vercel/next.js | 50f53158cb9ef11abab36dbc84fc712fe8ee3fd5 | 67aa35d499346473c989e59f7db1fe71091a8f09 | Turbopack: Add ChunkedVec test case (#84756)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### I... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/utils/chunked_vec.rs",
"patch": "@@ -41,7 +41,7 @@ impl<T> ChunkedVec<T> {\n }\n }\n \n- pub fn iter(&self) -> impl Iterator<Item = &T> {\n+ pub fn iter(&self) -> impl ExactSizeIterator<Item = &T> {\n ExactSizeIter {\n ... | 2025-10-17T04:01:53 |
golang/go | 443b7aeddb82d90345b8e7c8a4ef7c145dac7ce4 | bdd30e25caa0b69e335ba1f1f48566924850fa4b | [dev.simd] cmd/compile, simd/_gen: make rewrite rules consistent on CPU Features
The previous CL left a bug in the xed parser so that the generator can
generate rules rewriting an AVX instruction to AVX512 instruction.
This CL fixes that.
Change-Id: I0df7e7dc6c936ce7add24a757ce7f44a15917fef
Reviewed-on: https://go-r... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1397,110 +1397,50 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VSQRTPDMasked512load:\n \t\tp = simdVkvload(s, v)\n \n-\tcase ssa.OpAMD64VADDPS128load,\n-\t\tssa.OpAMD64VADDPS256load,\n-\t\tssa.OpAMD64VADDP... | 2025-09-12T18:45:39 |
nodejs/node | 3641d339b92b6f2ea8dd8c8690cb47530adc7103 | df883b0c7234cb44bef3175cd3e6a997c830db05 | src: improve error handling in multiple files
* node_http_parser
* node_http2
* node_builtins
PR-URL: https://github.com/nodejs/node/pull/57507
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Ulises Gascón... | [
{
"path": "src/node_builtins.cc",
"patch": "@@ -10,15 +10,18 @@\n namespace node {\n namespace builtins {\n \n+using v8::Boolean;\n using v8::Context;\n using v8::EscapableHandleScope;\n+using v8::Exception;\n using v8::Function;\n using v8::FunctionCallbackInfo;\n using v8::IntegrityLevel;\n using v8::Isol... | 2025-03-16T17:53:13 |
electron/electron | 1aeca6fd0e988cfc4f82322a19da034f190134b3 | b481966f02f83aa49d6ba39a40b976e6e78dd2bf | feat: GPU shared texture offscreen rendering (#42953)
* feat: GPU shared texture offscreen rendering
* docs: clarify texture infos that passed by the paint event.
* feat: make gpu osr spec test optional
* fix: osr image compare
* fix: remove duplicate test
* fix: update patch file
* fix: code review
... | [
{
"path": "docs/api/structures/offscreen-shared-texture.md",
"patch": "@@ -0,0 +1,24 @@\n+# OffscreenSharedTexture Object\n+\n+* `textureInfo` Object - The shared texture info.\n+ * `widgetType` string - The widget type of the texture. Can be `popup` or `frame`.\n+ * `pixelFormat` string - The pixel forma... | 2024-08-23T00:23:13 |
rust-lang/rust | 014344b0c3f1a55deb3c5c1d63f95edd7d49f173 | ddd36bd57051f796850345b76c17e9402e28a9e4 | update panicking() docs for panic=abort
rephrasing and grammar | [
{
"path": "library/std/src/thread/functions.rs",
"patch": "@@ -168,7 +168,11 @@ pub fn yield_now() {\n imp::yield_now()\n }\n \n-/// Determines whether the current thread is unwinding because of panic.\n+/// Determines whether the current thread is panicking.\n+///\n+/// This returns `true` both when th... | 2026-03-02T15:26:30 |
facebook/react | 76f8cf5277cff10a9a559ec10b810c3bca77f5d2 | b2ec0445b4801e067f624adb2a29afcd06d1de55 | [ci] Rename temporary build parts
Adds an _ prefix to temporary build parts from parallelization to allow
easier merging in later passes.
ghstack-source-id: 714da85972e138d389224f67601dc7aaa6676e11
Pull Request resolved: https://github.com/facebook/react/pull/30385 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -180,9 +180,8 @@ jobs:\n - name: Archive build\n uses: actions/upload-artifact@v4\n with:\n- name: build_${{ matrix.worker_id }}_${{ matrix.release_channel }}\n- path: |\n- build\n+ ... | 2024-07-18T20:19:09 |
vercel/next.js | 67aa35d499346473c989e59f7db1fe71091a8f09 | 11c741ecb505a98323aa5502517d4cb69f260fe5 | Turbopack: rename Persistent Caching (#84896)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### ... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/database/db_versioning.rs",
"patch": "@@ -51,21 +51,21 @@ pub fn handle_db_versioning(\n let disabled_versioning = env::var(\"TURBO_ENGINE_DISABLE_VERSIONING\").ok().is_some();\n let version = if disabled_versioning {\n println!(\n- ... | 2025-10-17T03:08:55 |
golang/go | 78ef487a6f936a39e9d4ebf66ac421bb1244a7a9 | 77aac7bb75edc222dd7b350e8b76c20c79da5f43 | cmd/compile: fix the issue of shift amount exceeding the valid range
Fixes #75479
Change-Id: I362d3e49090e94f91a840dd5a475978b59222a00
Reviewed-on: https://go-review.googlesource.com/c/go/+/704135
Reviewed-by: Mark Freeman <markfreeman@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.g... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules",
"patch": "@@ -717,7 +717,8 @@\n (SRLVconst [rc] (MOVBUreg x)) && rc >= 8 => (MOVVconst [0])\n \n // (x + x) << c -> x << c+1\n-((SLLV|SLL)const [c] (ADDV x x)) => ((SLLV|SLL)const [c+1] x)\n+((SLLV|SLL)const <t> [c] (ADDV x x)) && c < t.Size() * 8... | 2025-09-16T07:27:42 |
nodejs/node | 6b4255434226491449b7d925038008439e5586b2 | 1fbe3351bafb6b7c7fce6823507f5ce5bb5d927e | util: expose diff function used by the assertion errors
fix: https://github.com/nodejs/node/issues/51740
PR-URL: https://github.com/nodejs/node/pull/57462
Fixes: https://github.com/nodejs/node/issues/51740
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By... | [
{
"path": "benchmark/util/diff.js",
"patch": "@@ -0,0 +1,43 @@\n+'use strict';\n+\n+const util = require('util');\n+const common = require('../common');\n+\n+const bench = common.createBenchmark(main, {\n+ n: [1e3],\n+ length: [1e3, 2e3],\n+ scenario: ['identical', 'small-diff', 'medium-diff', 'large-dif... | 2025-03-19T23:59:07 |
electron/electron | 50ce448556b870f42f98d6567159576b8d0f0495 | 7391db93e25b6a19f5c6836f62a00e4a96548088 | fix: menu should allow focused `BaseWindow` where possible (#43404)
fix: menu should allow focused BaseWindow | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -10,9 +10,9 @@ See [`Menu`](menu.md) for examples.\n \n * `options` Object\n * `click` Function (optional) - Will be called with\n- `click(menuItem, browserWindow, event)` when the menu item is clicked.\n+ `click(menuItem, window, event)` when the menu... | 2024-08-22T18:13:30 |
facebook/react | 378ab81522c3da436943980cbb537c9ce523fbf8 | e15c5b15c67202b30faecf24a66547725cd08480 | [compiler][fixtures] Repro for fbt + non-ascii strings
ghstack-source-id: 05211980566f8c061ac2ca8ce51e442d234beacc
Pull Request resolved: https://github.com/facebook/react/pull/30386 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/fbt/error.todo-fbt-param-with-newline.expect.md",
"patch": "@@ -0,0 +1,36 @@\n+\n+## Input\n+\n+```javascript\n+import fbt from \"fbt\";\n+\n+function Component(props) {\n+ const element = (\n+ <fbt desc={\"Dialog t... | 2024-07-18T19:33:51 |
rust-lang/rust | ff3d308966724fb33303fd9a474027297a43f832 | 52b4de34ec837c09e0ec4c1ce9f00ce8e8b032f8 | Eliminate `Representability::Infinite`.
This variant was a fallback value used to continue analysis after a
`Representability` error, but it's no longer needed thanks to the
previous commit. This means `Representability` can now be reduced to a
unit type that exists just so `FromCycleError` can exist for the
`represen... | [
{
"path": "compiler/rustc_hir_analysis/src/check/wfcheck.rs",
"patch": "@@ -997,7 +997,7 @@ fn check_type_defn<'tcx>(\n item: &hir::Item<'tcx>,\n all_sized: bool,\n ) -> Result<(), ErrorGuaranteed> {\n- let _ = tcx.representability(item.owner_id.def_id);\n+ let _ = tcx.check_representability(i... | 2026-02-27T06:38:59 |
golang/go | 465b85eb760bfdb114f6b6ebccf374aba3977929 | 909704b85e64b156f81e78bcfd1fbd9b032c089a | runtime: fix CheckScavengedBitsCleared with randomized heap base
We cannot easily determine the base address of the arena we added the
random padding pages to, which can cause confusing
TestScavengedBitsCleared failures when the arena we padded does not have
the lowest address of all of the arenas.
Instead of attempt... | [
{
"path": "src/runtime/export_test.go",
"patch": "@@ -1122,8 +1122,6 @@ func CheckScavengedBitsCleared(mismatches []BitsMismatch) (n int, ok bool) {\n \t\t// Lock so that we can safely access the bitmap.\n \t\tlock(&mheap_.lock)\n \n-\t\theapBase := mheap_.pages.inUse.ranges[0].base.addr()\n-\t\tsecondArena... | 2025-09-17T21:04:56 |
rust-lang/rust | 52b4de34ec837c09e0ec4c1ce9f00ce8e8b032f8 | d2218f5f5ca3f502772ec4cb69fc2ee44e096512 | Abort after printing infinite type errors.
Currently, `Representability::from_cycle_error` prints an "infinite
size" error and then returns `Representability::Infinite`, which lets
analysis continue. This commit changes it so it just aborts after
printing the error. This has two benefits.
First, the error messages ar... | [
{
"path": "compiler/rustc_query_impl/src/from_cycle_error.rs",
"patch": "@@ -117,8 +117,10 @@ impl<'tcx> FromCycleError<'tcx> for Representability {\n representable_ids.insert(def_id);\n }\n }\n+ // We used to continue here, but the cycle error printed next is actu... | 2026-02-27T06:03:27 |
facebook/react | e15c5b15c67202b30faecf24a66547725cd08480 | 512b09b24d41cb7a5ccee5ec70adab2ba25ae67d | [compiler][patch] Fix jsx non-ascii regex pattern
ghstack-source-id: 97ed49112453c2ca3165361e758b6f31fbd0da20
Pull Request resolved: https://github.com/facebook/react/pull/30382 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -2206,7 +2206,7 @@ function codegenInstructionValue(\n * https://en.wikipedia.org/wiki/List_of_Unicode_characters#Control_codes\n */\n const STRING_REQUIRES_EXPR_CONTAINER_PATTERN =\n- /[... | 2024-07-18T19:33:51 |
golang/go | 909704b85e64b156f81e78bcfd1fbd9b032c089a | 3db5979e8cc4cc86c4fefb4cecc5a2041b32404d | encoding/json/v2: fix typo in comment
Use the correct spelling of the Gregorian calendar.
Change-Id: I7e1d2974d38d5d3ded64f98852ee726c7b84be22
Reviewed-on: https://go-review.googlesource.com/c/go/+/704595
Reviewed-by: Joseph Tsai <joetsai@digital-static.net>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/encoding/json/v2/arshal_time.go",
"patch": "@@ -465,7 +465,7 @@ func appendDurationISO8601(b []byte, d time.Duration) []byte {\n }\n \n // daysPerYear is the exact average number of days in a year according to\n-// the Gregorian calender, which has an extra day each year that is\n+// the Greg... | 2025-09-17T09:55:02 |
vercel/next.js | 07b3ae71d179bb3ca2b9ad3c6e0de12123c0004a | a5a47b2a6e189c6537717e9abecbc25aee0aba14 | chore: Attempt to fix ppr-partial-hydration flakiness (#84672)
Write to a marker file to determine when the slow server component finishes rendering instead of trying to sleep for some fixed amount of time. | [
{
"path": "test/e2e/app-dir/ppr-partial-hydration/app/with-shell/with-streaming-metadata/page.tsx",
"patch": "@@ -1,7 +1,7 @@\n import { Suspense } from 'react'\n import { connection } from 'next/server'\n-import { setTimeout } from 'timers/promises'\n import { HydrationIndicator } from '../../hydration-ind... | 2025-10-17T02:38:52 |
facebook/react | 512b09b24d41cb7a5ccee5ec70adab2ba25ae67d | 163365a07872337e04826c4f501565d43dbd2fd4 | [ci][ez] Rename artifact from process_artifacts_combined
Build artifacts are uniquely associated to a single workflow run, so
appending the sha was unnecessary. I originally included it to make it
easier to download later but this turns out to be unneeded.
Drops the sha suffix to make downloading the artifact in a se... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -285,7 +285,7 @@ jobs:\n - name: Archive build artifacts\n uses: actions/upload-artifact@v4\n with:\n- name: combined_artifacts_${{ github.sha }}\n+ name: artifacts_combined\n path: |\n ... | 2024-07-17T16:32:10 |
golang/go | 6a8dbbecbfc32650841e737271384ffaba433292 | bffe7ad9f11b874429d6c2561b0383e931502164 | path/filepath: fix EvalSymlinks to return ENOTDIR on plan9
CL 155597 added a test to check EvalSymlinks returns ENOTDIR
for existing path which ends with a slash.
CL 404954 added a separate evalSymlinks implementation for plan9,
which has a kludge to ensure the ENOTDIR is returned in the above case.
Apparently the a... | [
{
"path": "src/path/filepath/symlink_plan9.go",
"patch": "@@ -16,8 +16,8 @@ func evalSymlinks(path string) (string, error) {\n \t\t// Check validity of path\n \t\t_, err := os.Lstat(path)\n \t\tif err != nil {\n-\t\t\t// Return the same error value as on other operating systems\n-\t\t\tif strings.HasSuffix(... | 2025-09-03T19:48:44 |
vercel/next.js | a5a47b2a6e189c6537717e9abecbc25aee0aba14 | b42555aa39f7b6823d827715d73608701d458d1e | fix: throw error during build when invalid export for Proxy (#84886)
### Why?
When Proxy/Middleware had invalid exports (valid: named function `proxy`
for `proxy.js`, named function `middleware` for `middleware.js`, or
default function), it errored during runtime but not during build.
This error can sneak into produ... | [
{
"path": "crates/next-core/src/middleware.rs",
"patch": "@@ -2,7 +2,13 @@ use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, Vc, fxindexmap};\n use turbo_tasks_fs::FileSystemPath;\n-use turbopack_core::{context::AssetContext, module::Module, reference_type::ReferenceType... | 2025-10-17T02:24:04 |
facebook/react | ad08698d7ffb967217c252718719a383082d4e4d | 547c3c45abff04fe5e63b49b0ce98ef807d5110f | [compiler] Fixture for function outlining
Fixture demonstrating a case where we can "outline" a function expression.
ghstack-source-id: 836471518f0ff14d16f7b7bbf2e8900660896e97
Pull Request resolved: https://github.com/facebook/react/pull/30329 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/outlined-helper.expect.md",
"patch": "@@ -0,0 +1,66 @@\n+\n+## Input\n+\n+```javascript\n+import { Stringify } from \"shared-runtime\";\n+\n+function Component(props) {\n+ return (\n+ <div>\n+ {props.items.map(... | 2024-07-15T03:28:06 |
golang/go | 594deca981f0dd4a9351569e7c3e6999838148e3 | 9df1a289ac64451042f6f14b7229ae5cd2217352 | cmd/link: simplify PE relocations mapping
The code for mapping Windows PE relocations to Go relocations was
difficult to follow and contains some duplicated code. Also, it was
mapping IMAGE_REL_AMD64_ADDR32 to R_PCREL instead of R_ADDR.
This CL commit simplifies the code and fixes the mapping. I haven't been
able to ... | [
{
"path": "src/cmd/link/internal/loadpe/ldpe.go",
"patch": "@@ -17,6 +17,7 @@ import (\n \t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"strconv\"\n \t\"strings\"\n )\n \n@@ -348,102 +349,65 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, input *bio.Read\n \t\t\t\treturn nil, fmt.Errorf(\"relo... | 2025-05-13T09:24:30 |
nodejs/node | 98513884684bccf944d7834f4820b061af41fb36 | 015cd20e023f45ada87c559f8c5a93891f4939ce | sqlite: add DatabaseSync.prototype.isOpen
This commit adds a getter to indicate whether or not the database
is currently open.
Fixes: https://github.com/nodejs/node/issues/57521
PR-URL: https://github.com/nodejs/node/pull/57522
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Edy Silva <edigle... | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -198,6 +198,14 @@ added:\n This method is used to create SQLite user-defined functions. This method is a\n wrapper around [`sqlite3_create_function_v2()`][].\n \n+### `database.isOpen`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* {boolean} Whether the database i... | 2025-03-19T17:01:16 |
vercel/next.js | 16d0191d023e7fc934e449c62b20aecb1dd7a96c | dc61d29e49ab328e9b36d3993f02b2762bc69f6c | [Cache Components] Allow unstable prefix for cacheLife and cacheTag (#84934)
These are now stable but to allow for graceful upgrading we still export
unstable versions. The unstable version includes a once-warning that
indicates you should upgrade to the stable name. | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -653,7 +653,9 @@ impl ReactServerComponentValidator {\n \"revalidateTag\",\n // \"unstable_cache\", // useless in client, but doesn't technically error\n ... | 2025-10-16T23:01:24 |
electron/electron | b27dc7514e639360812e534bd1d184e980bbe2ee | ae0c8881c3f908c32f11bf0f8a185f626734d3e3 | fix: documentation spelling errors (#43366)
chore: fix typos in 'docs/' folder. | [
{
"path": "docs/api/session.md",
"patch": "@@ -1511,7 +1511,7 @@ Returns `Promise<void>` - resolves when all data has been cleared.\n \n Clears various different types of data.\n \n-This method clears more types of data and is more thourough than the\n+This method clears more types of data and is more thoro... | 2024-08-22T13:44:55 |
facebook/react | 6c0386e97654c4d4f58457a165d931aea074c823 | 270222b1917111c1e896bbfc442ed98530f1e4da | fix(compiler): Align return types of `ErrImp<E>` and `OkImpl<T>` with `Result<T, E>` for TS 5.5 (#30345) | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Utils/Result.ts",
"patch": "@@ -124,11 +124,11 @@ class OkImpl<T> implements Result<T, never> {\n return this;\n }\n \n- isOk(): boolean {\n+ isOk(): this is OkImpl<T> {\n return true;\n }\n \n- isErr(): boolean {\n+ isErr(): this ... | 2024-07-16T23:51:11 |
golang/go | cbdad4fc3cecbdfcee4e9d30df04916a151bfc16 | c2d85eb999fcd428a1cd71ed93805cbde0c16eaa | cmd/go: check pattern for utf8 validity before call regexp.MustCompile
Do not panic if the package path or the package version contains
invalid UTF-8 characters.
Fixes #75251
Change-Id: Ib787e74277cf814253857b911d378ea5e53d8824
Reviewed-on: https://go-review.googlesource.com/c/go/+/700815
Reviewed-by: Michael Matloo... | [
{
"path": "src/cmd/go/internal/modget/query.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"regexp\"\n \t\"strings\"\n \t\"sync\"\n+\t\"unicode/utf8\"\n \n \t\"cmd/go/internal/base\"\n \t\"cmd/go/internal/gover\"\n@@ -285,6 +286,11 @@ func reportError(q *query, err error) {\n \t// TODO(bcmills): Use errors.... | 2025-09-04T01:17:26 |
nodejs/node | fe5817e06ca81f0388d448287e60e2ca49c3cba3 | b99c3a0c29f60ff24633630fd50c7b8348ae571c | doc: correct status of require(esm) warning in v20 changelog
The backported patches already include the commit that disables
the warning unless `--trace-require-module` is explicitly used.
Correct the changelog to match the status.
PR-URL: https://github.com/nodejs/node/pull/57529
Fixes: https://github.com/nodejs/nod... | [
{
"path": "doc/changelogs/CHANGELOG_V20.md",
"patch": "@@ -82,7 +82,9 @@\n \n Support for loading native ES modules using require() had been available on v20.x under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind ... | 2025-03-19T00:34:29 |
electron/electron | ae0c8881c3f908c32f11bf0f8a185f626734d3e3 | 4ae43dcb3b34949697e333b863c34cce30701575 | chore: fix typos in 'spec/' folder (and one in 'lib/' folder) (#43374) | [
{
"path": "lib/browser/init.ts",
"patch": "@@ -212,7 +212,7 @@ if (packagePath) {\n }\n });\n } else {\n- // Call appCodeLoaded before just for safety, it doesn't matter here as _load is syncronous\n+ // Call appCodeLoaded before just for safety, it doesn't matter here as _load is synchron... | 2024-08-22T13:44:15 |
facebook/react | 270222b1917111c1e896bbfc442ed98530f1e4da | 243c0670acbfb062750981d65649058092212e2e | [ci] Remove RELEASE_CHANNEL_stable_yarn_test_dom_fixtures from circleci
ghstack-source-id: 53489822aa92869acd675bf88178a0511300f765
Pull Request resolved: https://github.com/facebook/react/pull/30359 | [
{
"path": ".circleci/config.yml",
"patch": "@@ -7,32 +7,6 @@ aliases:\n - &environment\n TZ: /usr/share/zoneinfo/America/Los_Angeles\n \n- - &restore_yarn_cache_fixtures_dom\n- restore_cache:\n- name: Restore yarn cache for fixtures/dom\n- keys:\n- - v2-yarn_cache-{{ arch }}-{{ ch... | 2024-07-16T18:35:42 |
vercel/next.js | dc61d29e49ab328e9b36d3993f02b2762bc69f6c | 6bd5c47b90a3165df55a29fb3f0e7ebc5d4cd6be | Interception routes match from nested route navigation (#84898)
### What?
Refactors interception route regex generation to fix nested route
navigation and improve maintainability.
### Why?
Interception routes failed to trigger when navigating from nested
descendant routes. The previous implementation had overly com... | [
{
"path": "packages/next/src/lib/generate-interception-routes-rewrites.test.ts",
"patch": "@@ -36,16 +36,48 @@ describe('generateInterceptionRoutesRewrites', () => {\n // - / (root)\n // - /nested-link (any root-level route)\n // - /foo (any other root-level route)\n- // But NOT:\n- ... | 2025-10-16T22:58:09 |
golang/go | c2d85eb999fcd428a1cd71ed93805cbde0c16eaa | ac82fe68aaec797a9677171b00241fba57f057bc | cmd/go: disable cgo by default if CC unset and DefaultCC doesn't exist
CL 621995 disrupted the behavior
introduced by CL 450739, now restore it.
Fixes #75340
Change-Id: Icd1a0eb970876995f9446e0547ceb9e78990f6ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/703555
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/cmd/go/internal/cfg/cfg.go",
"patch": "@@ -145,7 +145,8 @@ func defaultContext() build.Context {\n \tif buildcfg.DefaultCGO_ENABLED == \"1\" {\n \t\tdefaultCgoEnabled = true\n \t} else if buildcfg.DefaultCGO_ENABLED == \"0\" {\n-\t} else if runtime.GOARCH == ctxt.GOARCH && runtime.GOOS == ctx... | 2025-09-13T18:32:24 |
nodejs/node | 922ce9d236a21c3c589ba083abcf5213c9282f34 | cad76cc1d5735bcb16a4b36a0d315cddacc1c497 | debugger: fix behavior of plain object exec in debugger repl
Co-authored-by: Xuguang Mei <meixuguang@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/57498
Fixes: https://github.com/nodejs/node/issues/46808
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By:... | [
{
"path": "lib/internal/debugger/inspect_repl.js",
"patch": "@@ -56,6 +56,7 @@ const { fileURLToPath } = require('internal/url');\n \n const { customInspectSymbol, SideEffectFreeRegExpPrototypeSymbolReplace } = require('internal/util');\n const { inspect: utilInspect } = require('internal/util/inspect');\n+... | 2025-03-18T19:30:31 |
facebook/react | 243c0670acbfb062750981d65649058092212e2e | 34a788907bab504462c449c5e6da96b9016243b2 | [ci] Add RELEASE_CHANNEL_stable_yarn_test_dom_fixtures to gh actions
ghstack-source-id: 53a431f9528db3f18fc205b6e67779c3d2d8c87a
Pull Request resolved: https://github.com/facebook/react/pull/30358 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -347,6 +347,41 @@ jobs:\n run: ls -R build\n - run: yarn check-release-dependencies\n \n+ RELEASE_CHANNEL_stable_yarn_test_dom_fixtures:\n+ name: Check fixtures DOM (stable)\n+ needs: build_and_lint\n+ runs-on: ub... | 2024-07-16T18:35:41 |
electron/electron | 4ae43dcb3b34949697e333b863c34cce30701575 | 46bed807ca362aa415821c3d3808f79b93af0524 | fix: touch bar functionality on BaseWindow (#43353)
* fix: touch bar functionality on BaseWindow
* test: add test for BaseWindow.setTouchBar | [
{
"path": "lib/browser/api/base-window.ts",
"patch": "@@ -1,5 +1,7 @@\n import { EventEmitter } from 'events';\n import type { BaseWindow as TLWT } from 'electron/main';\n+import { TouchBar } from 'electron/main';\n+\n const { BaseWindow } = process._linkedBinding('electron_browser_base_window') as { BaseWi... | 2024-08-22T10:48:25 |
vercel/next.js | 6bd5c47b90a3165df55a29fb3f0e7ebc5d4cd6be | 828211efa1a440e18df23b871c421b772214473d | Add codemod for removing `unstable_` prefix (#84974)
Stacked on https://github.com/vercel/next.js/pull/84877,
https://github.com/vercel/next.js/pull/84880
This PR adds a codemod for removing the `unstable_` prefix for
stabilized APIs. It is considered to scale by adding more APIs to the
`UNSTABLE_TO_STABLE_MAPPING` m... | [
{
"path": "packages/next-codemod/lib/utils.ts",
"patch": "@@ -132,4 +132,9 @@ export const TRANSFORMER_INQUIRER_CHOICES = [\n value: 'middleware-to-proxy',\n version: '15.6.0-canary.54',\n },\n+ {\n+ title: 'Remove `unstable_` prefix from stabilized API',\n+ value: 'remove-unstable-prefix',... | 2025-10-16T22:55:30 |
nodejs/node | 1de917b0f784e3d2fcc739aac740b8afa8679341 | 36e89dd13cdf7d5a81e0d4b53c0070dd1790705e | sqlite: add StatementSync.prototype.columns()
This commit adds a method for retrieving column metadata from
a prepared statement.
Fixes: https://github.com/nodejs/node/issues/57457
PR-URL: https://github.com/nodejs/node/pull/57490
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Yagiz Nizipli... | [
{
"path": "deps/sqlite/sqlite.gyp",
"patch": "@@ -14,6 +14,7 @@\n },\n 'defines': [\n 'SQLITE_DEFAULT_MEMSTATUS=0',\n+ 'SQLITE_ENABLE_COLUMN_METADATA',\n 'SQLITE_ENABLE_MATH_FUNCTIONS',\n 'SQLITE_ENABLE_SESSION',\n 'SQLITE_ENABLE_PREUPDATE_HOOK'",
"addi... | 2025-03-18T13:22:32 |
facebook/react | 34a788907bab504462c449c5e6da96b9016243b2 | 9a8f3de0a82124c594c9799289702db58366844a | [ci] Remove run_fixtures_flight_tests from circleci
ghstack-source-id: f907271b9575777d79ec929c181e18df12bd7589
Pull Request resolved: https://github.com/facebook/react/pull/30357 | [
{
"path": ".circleci/config.yml",
"patch": "@@ -222,52 +222,6 @@ jobs:\n RELEASE_CHANNEL: experimental\n command: ./scripts/circleci/run_devtools_e2e_tests.js\n \n- run_fixtures_flight_tests:\n- docker: *docker\n- environment: *environment\n- steps:\n- - checkout\n- ... | 2024-07-16T18:35:40 |
golang/go | ac82fe68aaec797a9677171b00241fba57f057bc | 0b26678db2d042c6273c435df5cb5a37e7e04994 | bytes,strings: remove reference to non-existent SplitFunc
Fixes #75462
Updates #72841
Change-Id: Ie2cbbdb031578a3138ecc6e60c0025807f1990e6
Reviewed-on: https://go-review.googlesource.com/c/go/+/703675
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Alan Donovan <... | [
{
"path": "src/bytes/bytes.go",
"patch": "@@ -508,7 +508,7 @@ func Fields(s []byte) [][]byte {\n // It splits the slice s at each run of code points c satisfying f(c) and\n // returns a slice of subslices of s. If all code points in s satisfy f(c), or\n // len(s) == 0, an empty slice is returned. Every elem... | 2025-09-14T15:24:57 |
vercel/next.js | c6cd1f455f5c55530ce894aad3210ef5f6003a77 | c2863c87249bdd95ff3ede6b299a9e36470521b4 | Relax default.tsx validation for parallel routes leaf segments (#84767)
### What?
Relaxes the overly strict `default.tsx` validation for parallel routes
to only require the file when it's actually needed (non-leaf segments
with routable children).
### Why?
The initial validation for parallel routes required `defaul... | [
{
"path": "crates/next-core/src/app_structure.rs",
"patch": "@@ -896,15 +896,24 @@ impl Issue for MissingDefaultParallelRouteIssue {\n #[turbo_tasks::function]\n async fn description(&self) -> Vc<OptionStyledString> {\n Vc::cell(Some(\n- StyledString::Text(\n- forma... | 2025-10-16T19:45:38 |
electron/electron | f366caac84df20a2b8128424583f516941001168 | 4874233aae0079c522bcd822e847926d2e60389a | chore: bump chromium to 130.0.6669.0 (main) (#43397)
* chore: bump chromium in DEPS to 130.0.6669.0
* 5789734: Consolidate all the accessibility scale factor utility code into one file
https://chromium-review.googlesource.com/c/chromium/src/+/5789734
* 5798543: [autofill] Don't emit autofill audit reports if ... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6668.0',\n+ '130.0.6669.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-08-21T16:34:18 |
rust-lang/rust | bd538f90fe127a8896935c03d6be8a336edc0780 | 924748717bfc90d3a34bed407d75eb6c988f9fc9 | Remove unused `rustc_errors::LintDiagnosticBox` trait | [
{
"path": "compiler/rustc_errors/src/diagnostic.rs",
"patch": "@@ -137,16 +137,6 @@ pub trait LintDiagnostic<'a, G: EmissionGuarantee> {\n fn decorate_lint<'b>(self, diag: &'b mut Diag<'a, G>);\n }\n \n-pub trait LintDiagnosticBox<'a, G: EmissionGuarantee> {\n- fn decorate_lint_box<'b>(self: Box<Self... | 2026-03-03T16:21:41 |
facebook/react | 9a8f3de0a82124c594c9799289702db58366844a | 16d3ca38cc2cd11bd2d3badfcd936198ec329b5c | [ci] Add run_fixtures_flight_tests to gh actions
ghstack-source-id: 76761e302fc8e6c3c3243582250c168460b54739
Pull Request resolved: https://github.com/facebook/react/pull/30356 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -347,6 +347,64 @@ jobs:\n run: ls -R build\n - run: yarn check-release-dependencies\n \n+ # ----- FLIGHT -----\n+ run_fixtures_flight_tests:\n+ name: Run fixtures Flight tests\n+ needs: build_and_lint\n+ runs-on:... | 2024-07-16T18:35:40 |
nodejs/node | 38390e5f28043146391d61d9b899b47aa72f53f9 | 758428450bbdcf14cfa8878e9102b6a8c0fdd60b | url: fix constructor error message for URLPattern
PR-URL: https://github.com/nodejs/node/pull/57482
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By:... | [
{
"path": "src/node_url_pattern.cc",
"patch": "@@ -269,7 +269,7 @@ void URLPattern::New(const FunctionCallbackInfo<Value>& args) {\n options.has_value() ? &options.value() : nullptr);\n \n if (!url_pattern) {\n- THROW_ERR_INVALID_URL_PATTERN(env, \"Failed to constuct URLPattern\");\n+ THROW_ER... | 2025-03-17T10:39:42 |
golang/go | 0b26678db2d042c6273c435df5cb5a37e7e04994 | e2cfc1eb3affe8bcdfeca4a9f0a2d7902dbb940f | cmd/compile: fix mips zerorange implementation
A +8 was missed when simplifying this code in CL 700936.
Fixes #75477
Change-Id: Ic7b83322dc1373432b44f0b63607141195220380
Reviewed-on: https://go-review.googlesource.com/c/go/+/703937
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scope... | [
{
"path": "src/cmd/compile/internal/mips/ggen.go",
"patch": "@@ -5,6 +5,7 @@\n package mips\n \n import (\n+\t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/objw\"\n \t\"cmd/compile/internal/types\"\n \t\"cmd/internal/obj\"\n@@ -17,7 +18,7 @@ func zerorange(pp *objw.Progs, p *obj.Prog, off, cnt in... | 2025-09-16T02:59:22 |
rust-lang/rust | 924748717bfc90d3a34bed407d75eb6c988f9fc9 | 1b7d722f429f09c87b08b757d89c689c6cf7f6e7 | Implement `Diagnostic` trait for `rustc_errors::DecorateDiagCompat` | [
{
"path": "compiler/rustc_errors/src/decorate_diag.rs",
"patch": "@@ -1,15 +1,16 @@\n /// This module provides types and traits for buffering lints until later in compilation.\n use rustc_ast::node_id::NodeId;\n use rustc_data_structures::fx::FxIndexMap;\n+use rustc_data_structures::sync::DynSend;\n use rus... | 2026-03-03T16:21:16 |
vercel/next.js | 05627514cf9950e4890310fa643df00cb070e7b0 | baf4401c7bf039573e3c3b233c4e127c1deae2fd | Turbopack: turn panic into bail (#84927)
Eventual consistency strikes again | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -2543,9 +2543,9 @@ impl SourceMapper for CodeGenResultSourceMap {\n }\n fn span_to_snippet(&self, sp: Span) -> Result<String, Box<SpanSnippetError>> {\n match self {\n- CodeGenResultSourceMap::None => {\n- ... | 2025-10-16T19:21:14 |
electron/electron | a2de94dda1b716d8084d7f51c0e72e6cc226b53a | 2cc14c6e8faf9c9affcd00dab76524bb19337109 | chore: remove unused ConvertableToTraceFormatWrapper (#43356)
* chore: remove unused ConvertableToTraceFormatWrapper
Last use removed in Apr 2024 (39bf441b, #41880)
* fixup! chore: remove unused ConvertableToTraceFormatWrapper
remove now-unused trace_event.h header, too | [
{
"path": "shell/browser/javascript_environment.cc",
"patch": "@@ -18,7 +18,6 @@\n #include \"base/task/current_thread.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/task/thread_pool/initialization_util.h\"\n-#include \"base/trace_event/trace_event.h\"\n #include \"gin/array_buff... | 2024-08-20T19:21:43 |
facebook/react | 16d3ca38cc2cd11bd2d3badfcd936198ec329b5c | 43d535f545bf3f7a0c155903432c5bdf327346c9 | [ci] Remove check_error_codes from circleci
ghstack-source-id: 3a587af04d19f6c1f0425023c8f5a504f5b32823
Pull Request resolved: https://github.com/facebook/react/pull/30355 | [
{
"path": ".circleci/config.yml",
"patch": "@@ -311,19 +311,6 @@ jobs:\n - store_artifacts:\n path: ./tmp/screenshots\n \n- check_error_codes:\n- docker: *docker\n- environment: *environment\n- steps:\n- - checkout\n- - attach_workspace: *attach_workspace\n- - setup_... | 2024-07-16T18:35:39 |
nodejs/node | 8b41272f7954f7ac36c1c8ec4f733230a1b57f78 | fb07807e9a80889e94044dc98d5315c77e7718a9 | doc: fixed the incorrect splitting of multiple words
PR-URL: https://github.com/nodejs/node/pull/57454
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Rev... | [
{
"path": "doc/contributing/investigating-native-memory-leaks.md",
"patch": "@@ -456,8 +456,8 @@ line number:\n ==18481== 997,000 bytes in 997 blocks are definitely lost in loss record 35 of 35\n ==18481== at 0x4C2FB0F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)\n >>>>> ==18481== ... | 2025-03-14T06:42:54 |
golang/go | 61dc7fe30d16b920888123390c6965614e491a66 | ca0e03560df7279bc307da08db7237beb32b0d99 | iter: document that calling yield after terminated range loop causes runtime panic
The existing documentation isn't clear about the behaviour of when
the iterator function ignores the value returned from the yield function.
The changes here update the documentation, to explicitly explain
that.
Change-Id: I24a8198c3d... | [
{
"path": "src/iter/iter.go",
"patch": "@@ -28,6 +28,8 @@ or index-value pairs.\n Yield returns true if the iterator should continue with the next\n element in the sequence, false if it should stop.\n \n+Yield panics if called after it returns false.\n+\n For instance, [maps.Keys] returns an iterator that p... | 2025-09-15T17:04:04 |
rust-lang/rust | bf6db4f345799e1f922b3109a7278d8be11f3058 | f5a2bb6263ad332ceb2d9b3b82afe935259a7723 | Add regression tests for token hygiene annotations in macro bodies
Add `unpretty-debug-shadow` test covering macro body tokens that
reference a shadowed variable, and simplify the `unpretty-debug-metavars`
test macro.
Signed-off-by: Andrew V. Teylu <andrew.teylu@vector.com> | [
{
"path": "tests/ui/hygiene/unpretty-debug-metavars.rs",
"patch": "@@ -1,9 +1,10 @@\n //@ check-pass\n //@ compile-flags: -Zunpretty=expanded,hygiene\n \n-// Regression test: metavar parameters in macro-generated macro_rules!\n-// definitions should have hygiene annotations so that textually identical\n-// ... | 2026-03-03T13:06:55 |
vercel/next.js | baf4401c7bf039573e3c3b233c4e127c1deae2fd | e4e6df78ca86d3f5ad4a042c4b6cb6ce98c17666 | Turbopack: fix client reference order for shared references (#84760)
At first, we performed one naive traversal per page to collect all client references. That had the problem that references used by multiple layout segments were attributed only to the first layout segment (e.g. only on `not-found` and not on `page`).... | [
{
"path": "crates/next-api/src/client_references.rs",
"patch": "@@ -3,21 +3,13 @@ use next_core::{\n next_client_reference::{CssClientReferenceModule, EcmascriptClientReferenceModule},\n next_server_component::server_component_module::NextServerComponentModule,\n };\n-use roaring::RoaringBitmap;\n u... | 2025-10-16T19:20:28 |
facebook/react | 43d535f545bf3f7a0c155903432c5bdf327346c9 | c3c4ab31e4cb42dcfa8fbb1dee573fd5dafcd612 | [ci] Add check_error_codes to gh actions
ghstack-source-id: b6dbee275be58c14341dec1a823ff7773e5a6a59
Pull Request resolved: https://github.com/facebook/react/pull/30354 | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -290,6 +290,36 @@ jobs:\n ./build.tgz\n ./build2.tgz\n \n+ check_error_codes:\n+ name: Search build artifacts for unminified errors\n+ needs: build_and_lint\n+ runs-on: ubuntu-latest\n+ steps:\n+ ... | 2024-07-16T18:35:39 |
nodejs/node | fef180c8a20f680d246d5b109589e6a0370e7e77 | 2cb1d07e0f6d9456438016bab7db4688ab354fd2 | http: coerce content-length to number
PR-URL: https://github.com/nodejs/node/pull/57458
Fixes: https://github.com/nodejs/node/issues/57456
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina... | [
{
"path": "lib/_http_outgoing.js",
"patch": "@@ -650,7 +650,7 @@ function matchHeader(self, state, field, value) {\n break;\n case 'content-length':\n state.contLen = true;\n- self._contentLength = value;\n+ self._contentLength = +value;\n self._removedContLen = false;\n ... | 2025-03-16T12:28:49 |
electron/electron | 2cc14c6e8faf9c9affcd00dab76524bb19337109 | 945aabfaeeafc30b4fed5b4ba49876f6b9b85e5d | chore: bump chromium to 129.0.6668.0 (main) (#43368)
* chore: bump chromium in DEPS to 129.0.6668.0
* 5787687: [Extensions] Remove EventRouterForwarder from BrowserProcess
https://chromium-review.googlesource.com/c/chromium/src/+/5787687
* 5788808: Resolve Blob URL's origin using info from browser process
... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6664.0',\n+ '129.0.6668.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-08-20T14:54:27 |
vercel/next.js | 206fa758ee67677999bac7d726e84c25ed614449 | 1bb64bf9fa98f70e42f1a2098388fd83e8519378 | Turbopack: fix pageExtensions precedence (#84926)
Webpack doesn't use the specified order, it's by length. | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -1388,7 +1388,12 @@ impl NextConfig {\n \n #[turbo_tasks::function]\n pub fn page_extensions(&self) -> Vc<Vec<RcStr>> {\n- Vc::cell(self.page_extensions.clone())\n+ // Sort page extensions by length descending. This mirrors ... | 2025-10-16T18:08:43 |
facebook/react | 0117239720b6ea830376f4f8605957ccae8b3735 | fee423e083eccc19d69ecc3db4483c6740db7a75 | [Fiber] Ensure `srcset` and `src` are assigned last on `img` instances (#30340)
Safari has a behavior (bug) where when you consturct an Image in
javascript if you set srcset before properties for `sizes` the brwoser
will download the largest image size because it starts to load before
you communicate the sizes info... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -1031,6 +1031,53 @@ export function setInitialProperties(\n // Fast track the most common tag types\n break;\n }\n+ // img tags previously were implemented as void elements with non delegated events howe... | 2024-07-16T15:25:24 |
rust-lang/rust | ee1d0cfbe6b17fe77e1da569be33ac0ee7916be7 | 1b7d722f429f09c87b08b757d89c689c6cf7f6e7 | MGCA: fix type error handling for array and tuple lowering logic | [
{
"path": "compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs",
"patch": "@@ -2416,11 +2416,15 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {\n ) -> Const<'tcx> {\n let tcx = self.tcx();\n \n- let ty::Array(elem_ty, _) = ty.kind() else {\n- let e = tcx\n- .dcx()... | 2026-03-03T12:08:26 |
nodejs/node | 2cb1d07e0f6d9456438016bab7db4688ab354fd2 | ee0a006a2007e19e256dd8b80cdb39850951281b | deps: V8: cherry-pick c172ffc5bf54
Original commit message:
Compact retained maps array more often
When we add maps to the retained maps array, we compacted the array if
it's full. But, since we are now adding maps in a batch, it's unlikely
to meet the condition. Thus, update the condition to check w... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n... | 2025-03-06T15:02:23 |
electron/electron | 4c3014944cda8a35fc005af3ade8ba3633e88866 | cc16de7032228933f6a0f09cbd72178d8ffd84d0 | chore: bump chromium to 129.0.6664.0 (main) (#43329)
* chore: bump chromium in DEPS to 129.0.6657.0
* chore: update patches
* chore: bump chromium in DEPS to 129.0.6658.0
* chore: update patches
* 5743786: [ServiceWorker] Populate service worker start token to WorkerId.
https://chromium-review.googlesou... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '129.0.6656.0',\n+ '129.0.6664.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-08-19T18:52:53 |
facebook/react | 2683c0a18c1d0c2834f371d9dc6ef25495a208de | 1f60a41801bde7fa6970c8cf36019248c2ee8996 | [compiler] Fix mode for generating scopes for reassignments
We have an experimental mode where we generate scopes for simple phi values, even if they aren't subsequently mutated. This mode was incorrectly generating scope ranges, leaving the start at 0 which is invalid. The fix is to allow non-zero identifier ranges t... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/InferReactiveScopeVariables.ts",
"patch": "@@ -114,9 +114,13 @@ export function inferReactiveScopeVariables(fn: HIRFunction): void {\n };\n scopes.set(groupIdentifier, scope);\n } else {\n- scope.range.start = m... | 2024-07-12T04:00:51 |
vercel/next.js | 54ecdd83f636bfe32c43469da63cf5630d07cdb1 | 65d6ffb7eff5eca4d417ca948ae7ace4adeb2aeb | [dev] Fix Middleware and Proxy file conflict (#84965)
Since the conflict check looked only at the file name 💀, when there's a
`proxy` or `middleware` file inside the app, it also detected a
conflict:
```
Unhandled Rejection: Error: Both "middleware" and "proxy" files are detected. Please use "proxy" instead.
```
CI... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -393,34 +393,38 @@ async function startWatcher(\n \n let hasMiddlewareFile = false\n let hasProxyFile = false\n+\n for (const fileName of sortedKnownFiles) {\n- const { name } = path.parse(fileN... | 2025-10-16T17:59:11 |
nodejs/node | 8a5a849a44d5969741ae11fe72e73a343a4d0220 | d5ac3e3803f5e0038c8b34b889bd7adb29b46f7d | fs: apply exclude function to root path
In at least some situations, the root path was
being added to the results of globbing even if
it matched the optional exclude function.
In the relevant test file, a variable was renamed
for consistency. (There was a patterns and pattern2,
rather than patterns2.) The test case i... | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -9,6 +9,7 @@ const {\n ArrayPrototypePop,\n ArrayPrototypePush,\n ArrayPrototypeSome,\n+ Promise,\n PromisePrototypeThen,\n SafeMap,\n SafeSet,\n@@ -125,7 +126,8 @@ class Cache {\n }\n statSync(path) {\n const cached = this.#statsCache.g... | 2025-03-16T05:26:54 |
electron/electron | cc16de7032228933f6a0f09cbd72178d8ffd84d0 | 4d51edc504e300e02976bb64db476f352c695c23 | fix: printing occasionally showing failed when cancelled (#43337)
Closes https://github.com/electron/electron/issues/36084 | [
{
"path": "patches/chromium/printing.patch",
"patch": "@@ -91,7 +91,7 @@ index 163eacc8bb6654880d37111923a87ea5a6134485..565258e9bd4cc52e347e1f4a72ee29ec\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/... | 2024-08-19T18:25:14 |
facebook/react | 735d3d2baa684857d2a3358f0aad4f8920d0e8f4 | e307a4954446d1aeda9cbe23fda914289406c5f7 | [compiler][ez] Upgrade babel generator version for playground
---
The current version of `@babel/generator` used by playground has some bugs (see https://github.com/babel/babel/issues/10966)
```js
// Try pasting this into playground
function useFoo(a, b) {
return (a ?? b) == c;
}
// Current playground output
functi... | [
{
"path": "compiler/apps/playground/package.json",
"patch": "@@ -12,6 +12,7 @@\n },\n \"dependencies\": {\n \"@babel/core\": \"^7.19.1\",\n+ \"@babel/generator\": \"^7.19.1\",\n \"@babel/parser\": \"^7.19.1\",\n \"@babel/plugin-syntax-typescript\": \"^7.18.6\",\n \"@babel/plugin-trans... | 2024-07-15T21:44:14 |
vercel/next.js | c525e1395bed512bbbba90888f3f56a6138d3fa0 | 66376415ab585f25d753258452f7014ba4927793 | Reland "Include server latency in debug info" (#84950)
Co-authored-by: Andrew Clark <git@andrewclark.io> | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -34,6 +34,7 @@ import type { NextConfigComplete } from '../server/config-shared'\n import { finalizeEntrypoint } from './entries'\n import * as Log from './output/log'\n import { buildConfiguration } from './webpack/config'\n+import ForceCo... | 2025-10-16T15:36:22 |
golang/go | c39abe065886f62791f41240eef6ca03d452a17b | e3ed0fbe6a4c7c5e91a4a82c1bcbc96b9ac37016 | runtime: fix TestSehUnwind
The various TestSehUnwind tests recently started to fail due an
unrelated refactor (in CL 698098) that made the stack frames to
not match the expected pattern. This CL updates the tests to
be more robust to such changes.
Fixes #75467
Change-Id: I7950332bb6ca54e4bf693d13e2490b3d9d901dde
Rev... | [
{
"path": "src/runtime/runtime-seh_windows_test.go",
"patch": "@@ -65,14 +65,20 @@ func TestSehLookupFunctionEntry(t *testing.T) {\n \t}\n }\n \n-func sehCallers() []uintptr {\n-\t// We don't need a real context,\n-\t// RtlVirtualUnwind just needs a context with\n-\t// valid a pc, sp and fp (aka bp).\n+//go... | 2025-09-15T14:02:22 |
nodejs/node | 26c4851821aa1415a6f4b2373595f09a9a5877c7 | 63e3cc7e82a645b0763174f306bfe589164ce7d6 | build: fix update-wpt workflow
PR-URL: https://github.com/nodejs/node/pull/57468
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com> | [
{
"path": ".github/workflows/update-wpt.yml",
"patch": "@@ -70,7 +70,11 @@ jobs:\n - name: Open or update PR for the subsystem update\n uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5\n with:\n- branch: actions/update-wpt-${{ matrix.sub... | 2025-03-15T21:50:33 |
electron/electron | 4d51edc504e300e02976bb64db476f352c695c23 | 8474bbe6895bd98f30e551aa8b3f34d75210a2c5 | docs: api history (#42982)
* feat(api-history): api history schema
Reference: https://github.com/electron/rfcs/blob/f36e0a8483e1ea844710890a8a7a1bd58ecbac05/text/0004-api-history-schema.md
* feat(api-history): add `lint:api-history` to `package.json`
* docs(api-history): add api history to `styleguide.md`
... | [
{
"path": "docs/api-history.schema.json",
"patch": "@@ -0,0 +1,47 @@\n+{\n+ \"title\": \"JSON schema for API history blocks in Electron documentation\",\n+ \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n+ \"$comment\": \"If you change this schema, remember to edit the TypeScript interfaces in... | 2024-08-19T18:17:10 |
facebook/react | e307a4954446d1aeda9cbe23fda914289406c5f7 | 6cca9c31847b4a31da0a3a5ceca659e5c642e993 | [compiler][eslint] Use logger callback instead of exceptions to report eslint diagnostics
---
* panicThreshold: `all_errors` -> `none`
* inject an error logger through compiler config (instead of using exceptions)
We currently report at most one lint warning per file, this lets us exhaustively report all available on... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -149,6 +149,36 @@ const tests: CompilerTestCases = {\n },\n ],\n },\n+ {\n+ name: \"Multiple diagnostics are surfaced\",\n+ options: [\n+ {\n+ reportabl... | 2024-07-15T21:44:14 |
vercel/next.js | 76d2beaeb86a718a7e643ffd9b2c1800e3b78ee4 | aa9075bea243a02d13a34341059ecd23dafb25fe | [Cache Components] Remove `unstable` prefix from `unstable_cacheTag` (#84880)
`cacheLife` is now stable and does not require an unstable prefix | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -653,7 +653,7 @@ impl ReactServerComponentValidator {\n \"revalidateTag\",\n // \"unstable_cache\", // useless in client, but doesn't technically error\n ... | 2025-10-16T14:01:44 |
facebook/react | 6cca9c31847b4a31da0a3a5ceca659e5c642e993 | 1d5a208fda6064022d25204ee47da29a3229648f | [compiler][be] Fix lint violations in eslint-plugin
ghstack-source-id: 7c11dce833fcf8f46aaa23858ac94a05e870fae8
Pull Request resolved: https://github.com/facebook/react/pull/30335 | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -15,7 +15,7 @@ import ReactCompilerRule from \"../src/rules/ReactCompilerRule\";\n */\n function normalizeIndent(strings: TemplateStringsArray): string {\n const codeLines = strings[0].split(\"\\n... | 2024-07-15T21:44:14 |
nodejs/node | 2affc3ada7a84214611cace9a5d0c48775c53d5f | e162783843cf06505ba44ef0a1a18b5524210fe5 | doc: fix typo in `url.md`
"objg" -> "obj" in `URLPattern` constructor documentation.
Fixes: https://github.com/nodejs/node/issues/57464
PR-URL: https://github.com/nodejs/node/pull/57467
Co-authored-by: Lawlight <lawlight02@protonmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Daeyeon Jeon... | [
{
"path": "doc/api/url.md",
"patch": "@@ -767,7 +767,7 @@ case-insensitive matching if set to true.\n \n The constructor can throw a `TypeError` to indicate parsing failure.\n \n-#### `new URLPattern(objg[, baseURL][, options])`\n+#### `new URLPattern(obj[, baseURL][, options])`\n \n * `obj` {Object} An inp... | 2025-03-15T09:24:20 |
electron/electron | 3f71ed73552e94ef7c48fb4a685c6054fd4f0bcb | d7689bb9b5c062dd7c3a024e340ebff75bd63668 | build: fix valid versions in issue version parsing (#43346) | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -76,7 +76,8 @@ jobs:\n const { ElectronVersions } = await import('${{ github.workspace }}/node_modules/@electron/fiddle-core/dist/index.js');\n const versions = await ElectronVersions.create(undefined, { ignoreC... | 2024-08-19T09:04:30 |
vercel/next.js | 94f849e17a3b2b00f0dc2a493bce1217a3052691 | 718141176db250839ae2f493d8cac7637f22290c | Development: Implement request log time details (#84906)
## What?
Adds more detailed time for each request, showing what time is spent in
Next.js (i.e. routing, Turbopack compilation, etc.) and what time is
spent executing the application code which includes time spent in React
/ React rendering, requiring the applic... | [
{
"path": "packages/next/src/build/duration-to-string.ts",
"patch": "@@ -1,32 +1,54 @@\n+// Time thresholds in seconds\n+const SECONDS_IN_MINUTE = 60\n+const MINUTES_THRESHOLD_SECONDS = 120 // 2 minutes\n+const SECONDS_THRESHOLD_HIGH = 40\n+const SECONDS_THRESHOLD_LOW = 2\n+const MILLISECONDS_PER_SECOND = 1... | 2025-10-16T09:14:02 |
nodejs/node | 3cf14f83f8599dea881072a28c1f9445b72a78bb | 72aa2ea8416e7790ac0ae586584b7a2f10f3f8f3 | doc: fix typo in sqlite.md
PR-URL: https://github.com/nodejs/node/pull/57473
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -268,7 +268,7 @@ added:\n applying the changeset is aborted and the database is rolled back.\n \n **Default**: A function that returns `SQLITE_CHANGESET_ABORT`.\n-* Returns: {boolean} Whether the changeset was applied succesfully without being aborted.\n+*... | 2025-03-14T23:18:37 |
electron/electron | b497700e363e1f406466050e0dd13d3fc108e96b | 1c991ff765b068f584e5be3002154977b133eb23 | test: fixup Node.js snapshot tests to run correctly (#43332) | [
{
"path": "patches/node/ci_ensure_node_tests_set_electron_run_as_node.patch",
"patch": "@@ -7,18 +7,53 @@ Some node tests / test fixtures spawn other tests that clobber env,\n which causes the `ELECTRON_RUN_AS_NODE` variable to be lost. This patch\n re-injects it.\n \n-diff --git a/test/common/assertSnapsho... | 2024-08-16T09:17:42 |
vercel/next.js | 00c027932476d941b9a1027ac5c1ab51969cd3d7 | d8fb79326b0c90bd7a37a3d6c7dbd276b9d70042 | Revert "Include server latency in debug info" (#84932)
Reverts vercel/next.js#84580
This is failing certain tests in development.
x-ref:
https://github.com/vercel/next.js/actions/runs/18511231838/job/52758196715 | [
{
"path": "packages/next/src/client/components/router-reducer/create-initial-router-state.test.tsx",
"patch": "@@ -139,7 +139,6 @@ describe('createInitialRouterState', () => {\n cache: expectedCache,\n nextUrl: '/linking',\n previousNextUrl: null,\n- debugInfo: null,\n }\n \n ... | 2025-10-16T02:17:35 |
golang/go | aa83aee7de1d69b207ab9669bb2b7dcdcbdf9383 | b9e2977f1d62bba2df652a3b57b4fdd15a756601 | net/http: clarify panic conditions in Handle, HandleFunc, AddInsecureBypassPattern
Add explicit mention that these methods panic on both pattern conflict
and invalid syntax.
Fixes #75226
Change-Id: If7dbfc44e1ec4624ab156f0e5d7e66cee2c2fef3
GitHub-Last-Rev: acc9a9c3338373f5a9376ff2eb1decd30bbee04d
GitHub-Pull-Request... | [
{
"path": "src/net/http/csrf.go",
"patch": "@@ -90,6 +90,10 @@ var sentinelHandler Handler = &noopHandler{}\n // would redirect to a pattern (e.g. after cleaning the path or adding a\n // trailing slash) are not.\n //\n+// AddInsecureBypassPattern panics if the pattern conflicts with one already\n+// regist... | 2025-09-13T17:54:40 |
nodejs/node | 1ba47324e06db6f348900cc38732755b0e70f0d9 | b71267e20cd48f419815de92f2dd5a79984f2aa9 | buffer: make `buflen` in integer range
PR-URL: https://github.com/nodejs/node/pull/51821
Fixes: https://github.com/nodejs/node/issues/51817
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/string_bytes.cc",
"patch": "@@ -198,6 +198,13 @@ MaybeLocal<Value> ExternTwoByteString::NewSimpleFromCopy(Isolate* isolate,\n \n } // anonymous namespace\n \n+static size_t keep_buflen_in_range(size_t len) {\n+ if (len > static_cast<size_t>(std::numeric_limits<int>::max())) {\n+ return s... | 2024-02-21T09:37:06 |
electron/electron | 286384258be413c451b37c680b3237cbf1c625ea | f6bae51025a9451b972fb6ca038cd37652eabf33 | fix: blank page when printing pdf (#43309) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2899,11 +2899,7 @@ void WebContents::OnGetDeviceNameToUse(\n if (!print_view_manager)\n return;\n \n- auto* focused_frame = web_contents()->GetFocusedFrame();\n- auto* rfh = focused_frame && focused_frame->HasSelection()\n- ... | 2024-08-14T19:47:47 |
facebook/react | f510ece86d4621d3b0faf9fe59d850f7807dbb16 | fc1371f6bf656821e92c3c41bf65f58686504001 | Fix fastAddProperties to properly nullify style props (#30334)
## Summary
This PR fixes the `fastAddProperties` function. Now it nullifies a prop
if it was defined in one of the items of a style array, but then set to
`undefined` or `null` in one of the subsequent items. E.g. `style:
[{top: 0}, {top: undefined}]... | [
{
"path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js",
"patch": "@@ -464,10 +464,6 @@ function fastAddProperties(\n for (const propKey in props) {\n const prop = props[propKey];\n \n- if (prop === undefined) {\n- continue;\n- }\n-\n const attributeConfig = ... | 2024-07-15T16:32:04 |
vercel/next.js | 2d01e12bfae308a3406ac16501fb4b6e65543852 | 43c6ccfdd5e804b6e85b307101b50af689c60b59 | Fix url-imports test (#84922)
It fetches itself from github | [
{
"path": "test/e2e/url-imports/next.lock/lock.json",
"patch": "@@ -15,10 +15,10 @@\n \"integrity\": \"sha512-orh6tVnh1jjxWNNLduiv0pUcW0guzwTmy52JQGdz4D2LL2IgIlJaC0w4+YBtIBXa2kKGho839WgGAK0sC0Folw==\",\n \"contentType\": \"application/javascript; charset=UTF-8\"\n },\n- \"https://github.com/verce... | 2025-10-15T23:03:56 |
golang/go | b9e2977f1d62bba2df652a3b57b4fdd15a756601 | 8105d0ccc273afa717ba536f4d42dac3920c017e | crypto/internal/cryptotest: use linux-amd64_avx512 builder for SHA-NI
Updates #74772
Fixes #69592
Change-Id: I6a6a69647ab1785ed953f3ed2dfa04cd55576f2b
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_avx512
Reviewed-on: https://go-review.googlesource.com/c/go/+/701315
Reviewed-by: Daniel McCarney <daniel@binaryp... | [
{
"path": "src/crypto/internal/cryptotest/implementations.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n+\t\"strings\"\n \t\"testing\"\n )\n \n@@ -38,22 +39,33 @@ func TestAllImplementations(t *testing.T, pkg string, f func(t *testing.T)) {... | 2025-08-07T22:16:27 |
nodejs/node | b71267e20cd48f419815de92f2dd5a79984f2aa9 | c0788f0e8608233a61b146646a01f1a9e6dfa283 | src: cleanup crypto more
* Use ncrypto APIs where appropriate
* Remove obsolete no-longer used functions
* Improve error handling a bit
* move secure heap handling to ncrypto
To simplify handling of boringssl/openssl, move secure
heap impl to ncrypto. Overall the reduces the complexity
of the code in crypto_util... | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -111,20 +111,64 @@ DataPointer DataPointer::Alloc(size_t len) {\n #endif\n }\n \n+DataPointer DataPointer::SecureAlloc(size_t len) {\n+#ifndef OPENSSL_IS_BORINGSSL\n+ auto ptr = OPENSSL_secure_zalloc(len);\n+ if (ptr == nullptr) return {};\n+ return DataP... | 2025-03-04T22:17:59 |
electron/electron | 62406708cd29540caef0e07a74f696f981d963f7 | d004329f6f151a22b4009a51fa646dc0236ac1ac | docs: fix formatting in fuses tutorial (#43303) | [
{
"path": "docs/tutorial/fuses.md",
"patch": "@@ -13,34 +13,39 @@ Fuses are the solution to this problem, at a high level they are \"magic bits\" in\n ### `runAsNode`\n \n **Default:** Enabled\n+\n **@electron/fuses:** `FuseV1Options.RunAsNode`\n \n The runAsNode fuse toggles whether the `ELECTRON_RUN_AS_NO... | 2024-08-13T19:27:44 |
facebook/react | c5eca9b0824b6325dbc9613f9befb41077fe35a0 | 127a0fbf1a4b2607c11854f97d8798a9f6dd99f8 | Fixed `useSyncExternalStoreWithSelector` to update memoizedSnapshot on change (#25968)
## Summary
<!--
Explain the **motivation** for making this change. What existing problem
does the pull request solve?
-->
A proposed fix for the bug described in
https://github.com/facebook/react/issues/25967
## How di... | [
{
"path": "packages/use-sync-external-store/src/useSyncExternalStoreWithSelector.js",
"patch": "@@ -93,6 +93,9 @@ export function useSyncExternalStoreWithSelector<Snapshot, Selection>(\n // to React that the selections are conceptually equal, and we can bail\n // out of rendering.\n if (is... | 2024-07-13T03:57:45 |
rust-lang/rust | 52e0f3f5dc5c8d72bb401b73da84c0c9158c68ce | 58745ca3b05afa82bd5720dd05f3854e674700e0 | fix autodiff parsing for non-trait impl | [
{
"path": "compiler/rustc_builtin_macros/src/autodiff.rs",
"patch": "@@ -214,7 +214,7 @@ mod llvm_enzyme {\n // first get information about the annotable item: visibility, signature, name and generic\n // parameters.\n // these will be used to generate the differentiated version of t... | 2026-03-03T04:30:45 |
vercel/next.js | 43c6ccfdd5e804b6e85b307101b50af689c60b59 | a5064d7ee44790de2f4e5cefc04314fdd0d941dc | Fix parallel routes ignoring generateStaticParams from primary route (#84889)
### What?
Fixes a bug where `generateStaticParams` from the primary route was
being ignored when dynamic segments existed in both regular routes
(`children`) and parallel routes (e.g., `@breadcrumbs`), causing routes
that should have been s... | [
{
"path": "packages/next/src/build/segment-config/app/app-segments.ts",
"patch": "@@ -128,10 +128,12 @@ async function collectAppPageSegments(routeModule: AppPageRouteModule) {\n \n // If this is a page segment, we've reached a leaf node\n if (name === PAGE_SEGMENT_KEY) {\n- // Add all segments... | 2025-10-15T23:02:57 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.