repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
facebook/react
ca8f91f6f6b1b31023eee06c1e2a827ee178b68b
2398554c6034e6d0992fcaa1c2e95f1757cab53e
Log errors from startViewTransition to onRecoverableError (#32540) We customize the messages only in DEV to keep it small in prod. We skip some messages that are not really errors but more like information.
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1576,6 +1576,69 @@ function cancelAllViewTransitionAnimations(scope: Element) {\n // either cached the font or preloaded it earlier.\n const SUSPENSEY_FONT_TIMEOUT = 500;\n \n+function customizeViewTransitionError(error...
2025-03-12T03:02:45
rust-lang/rust
ea674ecb09a9d6ecd08c3c209b56e3abe084b5cf
4efe3dc40fdd5ed3d001e7736ff384f2d21d7361
core: lift FIXME comment from option.rs to iter::try_process This FIXME is relevant not only to Option but other similar cases that use iter::try_process(). The referenced issue 11084 was closed in 2021, and the related PR 59605 was not merged due to inconclusive results.
[ { "path": "library/core/src/iter/adapters/mod.rs", "patch": "@@ -155,6 +155,9 @@ where\n for<'a> F: FnMut(GenericShunt<'a, I, R>) -> U,\n R: Residual<U>,\n {\n+ // FIXME(#11084): we might be able to get rid of GenericShunt in favor of\n+ // Iterator::scan, as performance should be comparable\n...
2026-03-04T19:09:56
electron/electron
530ccfe350498d8bdaa26d96e4b4d81df4098848
041ada15867b4ed24193f2023747f275806bcf10
fix: resolve font list in default prefernce values (#45905) * fix: resolve font list in default prefernce values * chore: fix unsafe buffer usage * docs: add code comment
[ { "path": "shell/browser/font_defaults.cc", "patch": "@@ -9,14 +9,101 @@\n \n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/containers/map_util.h\"\n+#include \"base/strings/cstring_view.h\"\n #include \"base/strings/string_split.h\"\n+#include \"base/strings/utf_string_conversions.h\"\n+#...
2025-03-07T09:22:03
vercel/next.js
4f13405be7281bbd9b9ba12f636cb4b0e8648044
40a9d005db1d31624cafd1432624825727db7acd
fix: otel error spans from streamed responses (#86955) When an error is thrown inside a Suspense boundary during streaming SSR, the error was not being captured in the "render route (app)" span. This happened because `getTracer().wrap()` ends the span as soon as the stream is created and returned, but errors inside Su...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -70,7 +70,7 @@ import {\n import { isRedirectError } from '../../client/components/redirect-error'\n import { getImplicitTags, type ImplicitTags } from '../lib/implicit-tags'\n import { AppRenderSpan, NextNodeServerSpan } from '../...
2025-12-15T21:31:31
nodejs/node
8db664f72ccc9471e09992c20d90de862f90e2b0
6a3b545b4da83cf54b82bdb89cd3ad8b2aec6fe7
deps: V8: cherry-pick 1d7159580156 Original commit message: [explicit-resource-management] Clear isolate internal exception This CL clears the isolate internal exception before rejecting the promise. Bug: 418103036 Change-Id: If3748f7fc4b79b7b5be5009b9fff0d0267541a6f Reviewed-on: https://chr...
[ { "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.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n...
2025-06-18T06:48:13
facebook/react
0ca3deebcf20d2514771a568e1be08801da5cf85
99e1024051f2e6b2d2849b966e2f4354aef2a1d0
[rcr] Fix incorrect output platform (#32569) Accidentally copypasted the wrong esbuild config.
[ { "path": "compiler/packages/react-compiler-runtime/scripts/build.js", "patch": "@@ -1,67 +0,0 @@\n-#!/usr/bin/env node\n-\n-/**\n- * Copyright (c) Meta Platforms, Inc. and affiliates.\n- *\n- * This source code is licensed under the MIT license found in the\n- * LICENSE file in the root directory of this s...
2025-03-11T14:41:48
golang/go
aea881230dcc640ad730d3759423104074577756
120f1874ef380362cf8b8c4775a327bcd417ff70
std: fix printf("%q", int) mistakes For #72850 Change-Id: I07e64f05c82a34b1dadb9a72e16f5045e68cbd24 Reviewed-on: https://go-review.googlesource.com/c/go/+/720642 Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI...
[ { "path": "src/cmd/compile/internal/ir/fmt.go", "patch": "@@ -574,7 +574,7 @@ func exprFmt(n Node, s fmt.State, prec int) {\n \t\t// Special case for rune constants.\n \t\tif typ == types.RuneType || typ == types.UntypedRune {\n \t\t\tif x, ok := constant.Uint64Val(val); ok && x <= utf8.MaxRune {\n-\t\t\t\t...
2025-11-14T19:59:36
vercel/next.js
4b603cfa9557050850eee8c16c24ffb99b34d3aa
771447034e5d684570c3c6b0d191f0d023f5a195
Fix interception routes with trailing slash configuration (#86787) ### What? This PR fixes interception routes to work correctly with the `trailingSlash` configuration option. ### Why? Interception routes were not working when users had `trailingSlash: true` in their Next.js config. This was because interception ro...
[ { "path": "packages/next/src/lib/build-custom-route.ts", "patch": "@@ -37,14 +37,6 @@ export function buildCustomRoute(\n delimiter: '/', // default is `/#?`, but Next does not pass query info\n })\n \n- let source = compiled.source\n- if (!route.internal) {\n- source = modifyRouteRegex(\n- ...
2025-12-15T20:38:35
electron/electron
d987bee0073310c0bf114dd5e5c9db5e9c68ee59
431a791a995c178de1561b4c2330a1b7596900be
fix: javascript heap OOM is not raised (#45895) fix: javascript heap oom is not raised in node::OOMErrorHandler node::OOMErrorHandler terminates the process directly without raising an oom exception. To fix it, set an oom handler into node from electron.
[ { "path": "patches/node/.patches", "patch": "@@ -44,3 +44,4 @@ test_make_eval_snapshot_tests_more_flexible.patch\n build_option_to_use_custom_inspector_protocol_path.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n chore_add_createexternalizabletwobytestring_to_globals.patch\n+feat_a...
2025-03-06T16:34:19
nodejs/node
46508d9dd858ae8140ea121af9496bfee8c21b4f
8173d9d72b02c18e1ec5b8e10a91fbd455781f5f
src,permission: enhance permission model debug This commit enhance the permission model debug logs when NODE_DEBUG_NATIVE=PERMISSION_MODEL is used Example Inserting /Users/rafaelgss/repos/os/node/t.js └─ / ├─ Users/rafaelgss/repos/os/node/t.js └─ tm ├─ 3 ├─ 2 └─ p/* Signed-off-by: RafaelGSS ...
[ { "path": "src/permission/fs_permission.cc", "patch": "@@ -72,43 +72,53 @@ bool is_tree_granted(\n return granted_tree->Lookup(resolved_param, true);\n }\n \n-void PrintTree(const node::permission::FSPermission::RadixTree::Node* node,\n- size_t spaces = 0) {\n- std::string whitespace(spaces...
2025-07-02T17:37:13
facebook/react
99e1024051f2e6b2d2849b966e2f4354aef2a1d0
696950aa69e3f2ef0d720c82705e02b532904d70
Check if a child is a new child before calling moveBefore (#32567) This fixes a critical issue with moveBefore. I was told that the disconnected -> connected case was going to be relaxed and not be an error but apparently that is not the case. This means that we can't use this for initial insertions. Only moves. Unf...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -808,7 +808,7 @@ export function appendChild(\n parentInstance: Instance,\n child: Instance | TextInstance,\n ): void {\n- if (supportsMoveBefore) {\n+ if (supportsMoveBefore && child.parentNode !== null) {\n /...
2025-03-10T22:12:43
golang/go
120f1874ef380362cf8b8c4775a327bcd417ff70
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
runtime: add more precise test of assist credit handling for runtime.freegc This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds a better test of assist credit handling when heap objects are being reused after a ...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -644,6 +644,25 @@ func Freegc(p unsafe.Pointer, size uintptr, noscan bool) {\n \tfreegc(p, size, noscan)\n }\n \n+// Expose gcAssistBytes for the current g for testing.\n+func AssistCredit() int64 {\n+\tassistG := getg()\n+\tif assistG.m.curg != nil {\n+\...
2025-11-03T21:40:40
vercel/next.js
3884de9b4ef7f90d5ec451302c4b08c287a7223c
33e9ed59136b62f4d3cc197a6e5033f938908264
[ci] Fix build-and-deploy
[ { "path": ".github/workflows/build_and_deploy.yml", "patch": "@@ -3,8 +3,8 @@ name: build-and-deploy\n \n on:\n push:\n- tags-ignore:\n- - 'v*'\n+ branches:\n+ - '*'\n # we need the preview tarball for deploy tests\n pull_request:\n types: [opened, synchronize]", "additions": 2...
2025-12-15T19:09:38
nodejs/node
35d1511aaaf957acc2024c30c72a1fff9ca7ee21
983cfb8658cdcf785bcfddf979d6e8dbcfa12647
meta: add IlyasShabi to collaborators Fixes: https://github.com/nodejs/node/issues/58766 PR-URL: https://github.com/nodejs/node/pull/58916 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "README.md", "patch": "@@ -355,6 +355,8 @@ For information about the governance of the Node.js project, see\n **Harshitha K P** <<harshitha014@gmail.com>> (she/her)\n * [himself65](https://github.com/himself65) -\n **Zeyu \"Alex\" Yang** <<himself65@outlook.com>> (he/him)\n+* [IlyasShabi](http...
2025-07-01T17:15:49
electron/electron
99c943df2388bb50f62990427bac47cbb5b545ae
8c11764800c07604247b770b6bf7359d197d86bb
fix: `setContentProtection(true)` after hide on Windows (#45868) fix: content protection after hide on Windows https://chromium-review.googlesource.com/c/chromium/src/+/5789117
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -724,6 +724,10 @@ void BaseWindow::SetContentProtection(bool enable) {\n return window_->SetContentProtection(enable);\n }\n \n+bool BaseWindow::IsContentProtected() const {\n+ return window_->IsContentProtected();\n+}\n+\n void Base...
2025-03-04T21:39:59
golang/go
fecfcaa4f68a220f47e2c7c8b65d55906dbf8d46
5a347b775e051060f6f52ce25ec82a024a3a9365
runtime: add runtime.freegc to reduce GC work This CL is part of a set of CLs that attempt to reduce how much work the GC must do. See the design in https://go.dev/design/74299-runtime-freegc This CL adds runtime.freegc: func freegc(ptr unsafe.Pointer, uintptr size, noscan bool) Memory freed via runtime.freegc is ...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -2464,10 +2464,11 @@ var blockedLinknames = map[string][]string{\n \t// Experimental features\n \t\"runtime.goroutineLeakGC\": {\"runtime/pprof\"},\n \t\"runtime.goroutineleakcount\": {\"runtime/pprof\"},\n+\t\"runtime.freegc\": ...
2025-11-04T14:33:17
vercel/next.js
99a947ce1d235b62669c4059909eb52d8d10fa4f
aba09f4a0e6beabe2a09b5b6b16fb2781308e1ab
Fix error propagation and teardown in Server Action request decoding (#87193) This change switches to promise-based pipelines and uses `AbortController` to ensure multipart pipelines are properly canceled when decoding fails. Request bodies are fully consumed or aborted so decoding cannot hang or silently drop errors.
[ { "path": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -858,8 +858,10 @@ export async function handleAction({\n \n temporaryReferences = createTemporaryReferenceSet()\n \n- const { Transform, pipeline } =\n+ const { PassThrough, Readable, Transform } =\n ...
2025-12-15T15:52:01
electron/electron
2a7133b7a68287025012a12e53865105ede3a6e7
64158114aa2ac23433ad121263ff1e179c02cdca
fix: correct electron gin embedder indices (#45389) fix: correct gin embedder indices. Move electron extra embedders to the end of the enum so they do not interfere with chromium embedders indices. Also use kEmbedderBlinkTag directly in its index calculation without adding extra indices from other tags.
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -43,15 +43,15 @@ diff --git a/gin/public/gin_embedders.h b/gin/public/gin_embedders.h\n index 8d7c5631fd8f1499c67384286f0e3c4037673b32..99b2e2f63be8a46c5546dd53bc9b05e8c54e857c 100644\n --- a/gin/public/gin_embedders.h\n...
2025-03-03T22:03:54
nodejs/node
a7a37c3ac630d207859c8768f77935aeacbc485d
2022f832a98b8f1130b6c84b8d17c208a96ce15f
crypto: fix inclusion of OPENSSL_IS_BORINGSSL define PR-URL: https://github.com/nodejs/node/pull/58845 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Et...
[ { "path": "src/node_config.cc", "patch": "@@ -7,6 +7,10 @@\n #include \"node_options.h\"\n #include \"util-inl.h\"\n \n+#if HAVE_OPENSSL\n+#include \"ncrypto.h\" // Ensure OPENSSL_IS_BORINGSSL is defined if applicable\n+#endif\n+\n namespace node {\n \n using v8::Context;", "additions": 4, "deletio...
2025-07-01T12:57:57
golang/go
1a03d0db3f36c1a81a184fa15a54f716569a9972
cb0d9980f5721715ebb73dd2e580eaa11c2ddee2
runtime: skip tests for GOEXPERIMENT=arenas that do not handle clobberfree=1 When run with GODEBUG=clobberfree=1, three out of seven of the top-level tests in runtime/arena_test.go fail with a SIGSEGV inside the clobberfree function where it is overwriting freed memory with 0xdeadbeef. This is not a new problem. For ...
[ { "path": "src/runtime/arena_test.go", "patch": "@@ -36,6 +36,11 @@ type largeScalar [UserArenaChunkBytes + 1]byte\n type largePointer [UserArenaChunkBytes/unsafe.Sizeof(&smallPointer{}) + 1]*smallPointer\n \n func TestUserArena(t *testing.T) {\n+\tif Clobberfree() {\n+\t\t// This test crashes with SEGV in ...
2025-11-05T17:18:49
rust-lang/rust
772e4560ed4a1c58c36288407df0eac6686e02ea
3102493c71626b5912d11d06c393b013569beb52
Compiletest: Fix compare-output-by-lines directive Fixes: https://github.com/rust-lang/rust/issues/148235 This was checking that the blessed stderr was a subset of the stderr. Additionally, when re-blessing it would re-bless the subset that matched. So, when an extra line or comment was added and the line numbers cha...
[ { "path": "src/tools/compiletest/src/runtest.rs", "patch": "@@ -2718,18 +2718,19 @@ impl<'test> TestCx<'test> {\n // Wrapper tools set by `runner` might provide extra output on failure,\n // for example a WebAssembly runtime might print the stack trace of an\n // `unreachable` instru...
2026-03-12T22:36:14
vercel/next.js
0c3aa188e6dfa37eaa8510e9d6b5fb2e5c93c4a7
c4b20045423d08a6e1775df6417d08c706a85d2c
Fix: External redirect swallowed by Next.js (#87121) Fix for a regression introduced by https://github.com/vercel/next.js/pull/86367. When a Server Action performed an external redirect, Next.js was no longer triggering an MPA navigation from directly inside the response handler. It would end up working regardless if...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/server-action-reducer.ts", "patch": "@@ -60,6 +60,7 @@ import {\n ActionDidRevalidateStaticAndDynamic,\n type ActionRevalidationKind,\n } from '../../../../shared/lib/action-revalidation-kind'\n+import { isExternalURL } from '../../a...
2025-12-13T04:08:58
facebook/react
a8c2bbdabf561a53b7908c2b341815e64840e8ca
50ab2dde940bf0027773a944da005277b3d5598a
Cancel finished view transitions Animations manually in fire-and-forget too (#32545) Otherwise these can survive into the next View Transition and cause havoc to that transition. This was appearing as a flash in Safari in the fixture when going from A->B. This triggers a View Transition and at the same time the scrol...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1550,6 +1550,25 @@ export function hasInstanceAffectedParent(\n return oldRect.height !== newRect.height || oldRect.width !== newRect.width;\n }\n \n+function cancelAllViewTransitionAnimations(scope: Element) {\n+ //...
2025-03-10T19:27:37
nodejs/node
16035b4bbe1e3566d5cb57011b6e40cdffb049d1
c08a1d152b758a1b97b81e9edce6ed60faaf4063
doc: fix links in test.md Links explaining the various target file-related `run([options])` pointed to the wrong section. PR-URL: https://github.com/nodejs/node/pull/58876 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "doc/api/test.md", "patch": "@@ -1360,16 +1360,16 @@ changes:\n If `false`, it would only run one test file at a time.\n **Default:** `false`.\n * `cwd`: {string} Specifies the current working directory to be used by the test runner.\n- Serves as the base path for resolving files acco...
2025-06-30T19:50:14
golang/go
03ed43988ff7f7671094d8c455532de7f2242e70
1bb1f2bf0c07bbc583063a21b324407f7041e316
cmd/compile: allow multi-field structs to be stored directly in interfaces If the struct is a bunch of 0-sized fields and one pointer field. Merged revert-of-revert for 4 CLs. original revert 681937 695016 693415 694996 693615 695015 694195 694995 Fixes #74092 Update #74888 Update #74908 Update #74935 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -97,8 +97,10 @@\n // Helpers for expand calls\n // Some of these are copied from generic.rules\n \n-(IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(IMake _typ (StructMake ___)) => imakeOfSt...
2025-06-15T03:10:50
electron/electron
add374ef6a3e576fa4f73dbf68199540668a75cf
eac270bea7798b5f8b62504e1f1161f89f3a189d
chore: bump chromium to 135.0.7041.2 (main) (#45850) * chore: bump chromium in DEPS to 135.0.7041.2 * [Extensions] Remove ExtensionsBrowserClient::GetUserAgent() https://chromium-review.googlesource.com/c/chromium/src/+/6306854 * chore: update patches * [api] Remove deprecated FunctionCallbackInfo::Holder() https...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '135.0.7040.0',\n+ '135.0.7041.2',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/chromium/blink_local_fram...
2025-02-28T22:29:23
vercel/next.js
32f6ed396e483f141df40dc57a98dfe1be4ddd50
92e2cc028df47806713ae8004700bac31208fde9
improve segment cache lru typesafety (#87129) The LRU and cache map code was using any types in several places `(MapEntry<any>`,` type LRUNode = MapEntry<any>`) which meant we had no type safety for those operations. This masked a bug fixed in #87124 where `deleteFromCacheMap(tail.value)` was being called incorrectly ...
[ { "path": "packages/next/src/client/components/segment-cache/cache-map.ts", "patch": "@@ -65,41 +65,61 @@ import { lruPut, updateLruSize, deleteFromLru } from './lru'\n * should prefer to put it in cache.ts.\n */\n \n-type MapEntryShared<V extends MapValue> = {\n- parent: MapEntry<V> | null\n- key: any\...
2025-12-13T01:04:02
nodejs/node
c08a1d152b758a1b97b81e9edce6ed60faaf4063
ab9ef37aa73cdc00c27d2ee8f374d697ba9081f0
v8: fix missing callback in heap utils destroy This fixes the v8.getHeapSnapshot() calls not properly being destroyed. Pipeline calls would for example not properly end without the callback being in place. PR-URL: https://github.com/nodejs/node/pull/58846 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: ...
[ { "path": "lib/internal/heap_utils.js", "patch": "@@ -53,11 +53,12 @@ class HeapSnapshotStream extends Readable {\n this[kHandle].readStart();\n }\n \n- _destroy() {\n+ _destroy(err, callback) {\n // Release the references on the handle so that\n // it can be garbage collected.\n this[...
2025-06-30T11:51:40
electron/electron
36ec9d72362bf4cf5a81a63b61f0a66ac01cc3fb
3041fd66cddac32cd1dc6a129e1edd46fe2c77ce
docs: fix spelling errors in code comments (#45842) chore: Fix typos
[ { "path": "shell/browser/api/electron_api_power_monitor.h", "patch": "@@ -44,7 +44,7 @@ class PowerMonitor final : public gin::Wrappable<PowerMonitor>,\n void SetListeningForShutdown(bool);\n #endif\n \n- // Called by native calles.\n+ // Called by native callers.\n bool ShouldShutdown();\n \n #if BUI...
2025-02-28T11:24:00
golang/go
1bb1f2bf0c07bbc583063a21b324407f7041e316
9fd2e4443955127ed360338cb19a5aeba6be1a8c
runtime: put AddCleanup cleanup arguments in their own allocation Currently, AddCleanup just creates a simple closure that calls `cleanup(arg)` as the actual cleanup function tracked internally. However, the argument ends up getting its own allocation. If it's tiny, then it can also end up sharing a tiny allocation sl...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -72,8 +72,9 @@ import (\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n-\t// Explicitly force ptr to escape to the heap...
2025-11-13T18:29:23
facebook/react
d331ba041142a801f8e2101408221732b0ee7f88
00aa0043c7e32e1c822402edadde6f05535d2075
[ci] Fix incorrect condition (#32551) Fixes an incorrect condition for running tests in the compiler workspace. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32551). * __->__ #32551 * #32550
[ { "path": ".github/workflows/compiler_typescript.yml", "patch": "@@ -96,4 +96,4 @@ jobs:\n - run: xvfb-run -a yarn workspace ${{ matrix.workspace_name }} test\n if: runner.os == 'Linux' && matrix.workspace_name == 'react-forgive'\n - run: yarn workspace ${{ matrix.workspace_name }} test\...
2025-03-07T21:43:38
rust-lang/rust
cc2c5f9b8d19bae79ed8f1671c9ea4feea9f76a2
84a2d2a92c1f3c9f79cf632eaf2d6498e031dec5
Fix mcount name for *-windows-gnu targets mingw exposes the `_mcount` symbol for profiling.
[ { "path": "compiler/rustc_target/src/spec/base/windows_gnu.rs", "patch": "@@ -106,6 +106,7 @@ pub(crate) fn opts() -> TargetOptions {\n // FIXME(davidtwco): Support Split DWARF on Windows GNU - may require LLVM changes to\n // output DWO, despite using DWARF, doesn't use ELF..\n supp...
2026-03-12T14:14:06
vercel/next.js
a7ca0459a58a44992da65f49cf1b61ff905e2f38
ea927b583d24f42e538001bf13370e38c91d17bf
Fix: Missing null check in LRU cleanup (#87124) Unfortunately this field is not strongly typed because it's a cyclic type and I wasn't able to soundly model it with TypeScript. Skill issue I'm sure. Don't have an exact repro yet but the previous code was obviously wrong. The way this should have been structured rega...
[ { "path": "packages/next/src/client/components/segment-cache/cache-map.ts", "patch": "@@ -396,7 +396,7 @@ function dropRef<V extends MapValue>(value: V): void {\n value.ref = null\n }\n \n-function deleteMapEntry<V extends MapValue>(entry: MapEntry<V>): void {\n+export function deleteMapEntry<V extends Ma...
2025-12-12T23:05:06
nodejs/node
8b199eef3dd4de910a6521adc42ae611a62a19e1
7db30d7ca866b67d2e162b9dd0eff3712a90ee34
fs: special input `-1` on `chown`, `lchown` and `fchown` PR-URL: https://github.com/nodejs/node/pull/58836 Fixes: https://github.com/nodejs/node/issues/58826 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -2853,10 +2853,10 @@ static void Chown(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n \n CHECK(IsSafeJsInt(args[1]));\n- const uv_uid_t uid = FromV8Value<uv_uid_t>(args[1]);\n+ const auto uid = FromV8Value<uv_uid_t, true>(args[1]...
2025-06-29T21:47:02
golang/go
7a8d0b5d53dc7be331016b6903707aa256e22c2a
710abf74da2a017423e35e416ab3fd05e6053bf3
runtime: add debug mode to extend _Grunning-without-P windows This was suggested in CL 646198, and I tested with it, I forgot to push it so it wasn't merged. I think it might be worth keeping. Change-Id: Ibf97d969fe7d0eeb365f5f7b1fbeadea3a1076ab Reviewed-on: https://go-review.googlesource.com/c/go/+/716580 Reviewed-b...
[ { "path": "src/runtime/proc.go", "patch": "@@ -4658,6 +4658,11 @@ func reentersyscall(pc, sp, bp uintptr) {\n \tgp.m.locks--\n }\n \n+// debugExtendGrunningNoP is a debug mode that extends the windows in which\n+// we're _Grunning without a P in order to try to shake out bugs with code\n+// assuming this st...
2025-10-30T17:24:47
rust-lang/rust
a3b76369fbeb294d42ab8c531a060c3930e77ae4
c2178bb44c42e2a05385b72c060b2c23762c0b4a
fix: `collapsible_match` FP when the pat binding is moved or mutated
[ { "path": "clippy_lints/src/matches/collapsible_match.rs", "patch": "@@ -3,13 +3,17 @@ use clippy_utils::higher::{If, IfLetOrMatch};\n use clippy_utils::msrvs::Msrv;\n use clippy_utils::res::{MaybeDef, MaybeResPath};\n use clippy_utils::source::{IntoSpan, SpanRangeExt, snippet};\n+use clippy_utils::usage::m...
2026-03-12T19:34:39
electron/electron
b504f65acea54e485c692632851443089c9c1f70
5cb87b711084c5abb41e9ed3fc8df5e36715337b
docs: update breaking-changes.md for 35.0.0 (#45822) * docs: update breaking-changes.md for 35.0.0 * fixup! docs: update breaking-changes.md for 35.0.0 docs: make lint happy
[ { "path": "docs/breaking-changes.md", "patch": "@@ -35,6 +35,16 @@ https://learn.microsoft.com/en-us/windows/win32/dwm/composition-ovw#disabling-dw\n \n ## Planned Breaking API Changes (35.0)\n \n+### Behavior Changed: Dialog API's `defaultPath` option on Linux\n+\n+On Linux, the required portal version for...
2025-02-28T04:01:26
facebook/react
00aa0043c7e32e1c822402edadde6f05535d2075
cc680065c33739cc4c8cd2e8a67312b0c16a6ccc
[compiler] Migrate compiler packages to tsup (#32550) Currently in the `compiler` workspace, we invoke esbuild directly to build most packages (with the exception of `snap`). This has been mostly fine, but does not allow us to do things like generate type declaration files. I would like #32416 to be able to consume t...
[ { "path": "compiler/apps/playground/next-env.d.ts", "patch": "@@ -2,4 +2,4 @@\n /// <reference types=\"next/image-types/global\" />\n \n // NOTE: This file should not be edited\n-// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.\n+// see https://nextjs.org/docs/app/bui...
2025-03-07T21:41:55
vercel/next.js
ea927b583d24f42e538001bf13370e38c91d17bf
940f889249b23c356af985e6d99823a1c76a5b7f
Turbopack: Improve the description on InvalidLoaderRuleConditionIssue (#87008) It's near-impossible to get this to error on the Rust side (issues are caught before we get here), but I hacked up the code to make it error. It looks like this: ![Screenshot 2025-12-09 at 4.39.24 PM.png](https://app.graphite.com/user-atta...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -1283,6 +1283,7 @@ impl Issue for InvalidLoaderRuleRenameAsIssue {\n \n #[turbo_tasks::value(shared)]\n struct InvalidLoaderRuleConditionIssue {\n+ error_string: RcStr,\n condition: ConfigConditionItem,\n config_file_path: FileSystemPa...
2025-12-12T20:51:14
nodejs/node
1c2fa7ee7090d2d0d13382e250bad3c99b0f5821
0f7e75f7f61a977b8b995fe6fab6cceb13e86a53
src: -Wmismatched-new-delete in debug_utils.cc PR-URL: https://github.com/nodejs/node/pull/58844 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/debug_utils.cc", "patch": "@@ -488,7 +488,7 @@ std::vector<std::string> NativeSymbolDebuggingContext::GetLoadedLibraries() {\n WideCharToMultiByte(\n CP_UTF8, 0, module_name, -1, str, size, nullptr, nullptr);\n list.emplace_back(str);\n- delete str;\...
2025-06-28T18:52:02
golang/go
a0e738c657d33e2a648838546812fb50cf42e41d
2cdcc4150bc577e0b40a9cedaaa7c8301f2860cd
cmd/compile/internal: remove incorrect riscv64 SLTI rule The rule (SLTI [x] (ORI [y] _)) && y >= 0 && int64(y) >= int64(x) => (MOVDconst [0]) is incorrect as it only generates correct code if the unknown value being compared is >= 0. If the unknown value is < 0 the rule will incorrectly produce a constant value of...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -792,7 +792,6 @@\n // SLTI/SLTIU with known outcomes.\n (SLTI [x] (ANDI [y] _)) && y >= 0 && int64(y) < int64(x) => (MOVDconst [1])\n (SLTIU [x] (ANDI [y] _)) && y >= 0 && uint64(y) < uint64(x) => (MOVDconst [1])\n-(SLTI [x] (ORI [...
2025-11-13T11:28:29
electron/electron
d19cac6772c262e4fccc0608b252a5734cd3165a
eac1a7ff68fd03dea343efeff09ef345d48c51df
docs: fix PrinterInfo info in breaking-changes.md (#45843) > ### Removed:`isDefault` and `status` properties on `PrinterInfo` > These properties have been removed from the PrinterInfo Object > because they have been removed from upstream Chromium. These properties won't be removed until Electron 36, but breaking-chan...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -14,6 +14,11 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (36.0)\n \n+### Removed:`isDefault` and `status` properties on `PrinterInfo`\n+\n+These properties have been removed from the Pr...
2025-02-27T23:49:58
facebook/react
cc680065c33739cc4c8cd2e8a67312b0c16a6ccc
f9d78089c6ec8dce3a11cdf135d6d27b7a8dc1c5
Fix asserts caused by OffscreenComponent rendering in React Native with passChildrenWhenCloningPersistedNodes (#32528) <!-- 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 fiel...
[ { "path": "packages/react-reconciler/src/ReactFiberCompleteWork.js", "patch": "@@ -341,7 +341,12 @@ function appendAllChildrenToContainer(\n workInProgress: Fiber,\n needsVisibilityToggle: boolean,\n isHidden: boolean,\n-) {\n+): boolean {\n+ // Host components that have their visibility toggled by a...
2025-03-07T17:03:59
nodejs/node
9fe3316280c61d9dfb8428866a8e9c0834443fe1
d824914e61e0d75e2487066bc6d5de28ad7f2041
repl: fix eval errors thrown after close throwing `ERR_USE_AFTER_CLOSE` prevent incorrect throws of `ERR_USE_AFTER_CLOSE` errors when the eval function of a repl server returns an error after the repl server has been closed PR-URL: https://github.com/nodejs/node/pull/58791 Reviewed-By: Luigi Pinca <luigipinca@gmail.c...
[ { "path": "lib/repl.js", "patch": "@@ -748,7 +748,9 @@ function REPLServer(prompt,\n process.emit('uncaughtException', e);\n self.clearBufferedCommand();\n self.lines.level = [];\n- self.displayPrompt();\n+ if (!self.closed) {\n+ self.displayPrompt();\n+ ...
2025-06-28T18:51:41
rust-lang/rust
512d5fd676035517132c9b7e2cd43cd3b24432fa
2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b
tests/debuginfo/basic-stepping.rs: Add lldb test Also move the FIXME to the source code to avoid duplication, and also suppress harmless warnings that are annoying when you compile manually.
[ { "path": "tests/debuginfo/basic-stepping.rs", "patch": "@@ -14,9 +14,9 @@\n //@ revisions: default-mir-passes no-SingleUseConsts-mir-pass\n //@ [no-SingleUseConsts-mir-pass] compile-flags: -Zmir-enable-passes=-SingleUseConsts\n \n+// === GDB TESTS ===========================================================...
2026-03-12T19:24:48
golang/go
b57962b7c7de2b70fa943e66cd26b2cce631b7f8
0a569528ea355099af864f7612c3fa1973df30e4
bytes: fix panic in bytes.Buffer.Peek This change fixed the overlooked offset in bytes.Buffer.Peek. Otherwise, it will either return wrong result or panic with "runtime error: slice bounds out of range". Change-Id: Ic42fd8a27fb9703c51430f298933b91cf0d45451 GitHub-Last-Rev: fb97ebc3b188959835706626f66898d6306c16fb Git...
[ { "path": "src/bytes/buffer.go", "patch": "@@ -86,7 +86,7 @@ func (b *Buffer) Peek(n int) ([]byte, error) {\n \tif b.Len() < n {\n \t\treturn b.buf[b.off:], io.EOF\n \t}\n-\treturn b.buf[b.off:n], nil\n+\treturn b.buf[b.off : b.off+n], nil\n }\n \n // empty reports whether the unread portion of the buffer i...
2025-11-13T01:43:03
vercel/next.js
5437319dd4b6354dac9a2ee2aa67cb12a983e2eb
2ff2a7aadfcbccde8f2ea47a7dc72785f8e5b783
[turbopack] Rename is_marked_as_side_effect_free to side_effects and return ModuleSideEffects enum (#87102) Refactor the `is_marked_side_effect_free` API * Rename `side_effects` * Change it to return `ModuleSideEffects` instead of a `bool` * Remove the `side_effect_packages` from its parameters, instead arrange to p...
[ { "path": "crates/next-core/src/hmr_entry.rs", "patch": "@@ -3,15 +3,15 @@ use std::io::Write;\n use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, ValueToString, Vc};\n-use turbo_tasks_fs::{FileSystem, VirtualFileSystem, glob::Glob, rope::RopeBuilder};\n+use turbo_tasks_...
2025-12-12T17:36:13
electron/electron
eac1a7ff68fd03dea343efeff09ef345d48c51df
00089a951b334c4789f687f39c401b3a34dfad0b
fix: context-menu event emitted in draggable regions (#45813) * fix: context-menu event emitted in draggable regions * fix: only trigger on mouse release
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -12,6 +12,7 @@\n \n #include \"base/feature_list.h\"\n #include \"base/i18n/rtl.h\"\n+#include \"shell/browser/api/electron_api_web_contents.h\"\n #include \"shell/browser/native_window_features.h\"\n #include \"shell/brow...
2025-02-27T19:44:46
facebook/react
562f17efab5c39b461ec100898c9a26b54c931e4
9e9b54d7f6c67b452c969abb98f4f7637ed72f56
docs(eslint-plugin-react-hooks): add changelog for 5.1.0 & 5.2.0 (#32536) <!-- 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": "packages/eslint-plugin-react-hooks/CHANGELOG.md", "patch": "@@ -1,3 +1,15 @@\n+## 5.2.0\n+\n+- Support flat config ([@michaelfaith](https://github.com/michaelfaith) in [#30774](https://github.com/facebook/react/pull/30774))\n+- Convert the plugin to TypeScript and provide package type declaration...
2025-03-06T18:58:39
nodejs/node
eaebfab2998e2ce9fedd51e8343df5d18aaebdcb
cdadb20ae1903aaf0a301b52aaab6dc033c648aa
doc: fix jsdoc definition of assert.ifError() fn in lib/assert.js PR-URL: https://github.com/nodejs/node/pull/58573 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Jordan Harband <ljharb@gmail.com> Rev...
[ { "path": "lib/assert.js", "patch": "@@ -682,7 +682,7 @@ assert.doesNotReject = async function doesNotReject(fn, ...args) {\n };\n \n /**\n- * Throws `value` if the value is not `null` or `undefined`.\n+ * Throws `AssertionError` if the value is not `null` or `undefined`.\n * @param {any} err\n * @returns...
2025-06-27T13:30:51
golang/go
9daaab305c4d1dede9e4f6efdc5e1268a69327e6
d50a571ddfb7661d65c8488b0bbfeacc793f964b
cmd/link/internal/ld: make runtime.buildVersion with experiments valid Specifically if there are experiments but no nonstandard toolchain suffix such as "-devel", the go version will not be valid according to go/version.IsValid. To fix that, always put the X: part into the suffix, resulting in, for example, go1.25.0-X...
[ { "path": "src/cmd/go/internal/cache/hash.go", "patch": "@@ -51,6 +51,9 @@ func stripExperiment(version string) string {\n \tif i := strings.Index(version, \" X:\"); i >= 0 {\n \t\treturn version[:i]\n \t}\n+\tif i := strings.Index(version, \"-X:\"); i >= 0 {\n+\t\treturn version[:i]\n+\t}\n \treturn versio...
2025-11-11T18:54:52
electron/electron
b8d0f18ff82267e4ed7d51072b9dfd237b36fb57
96c2022483338b458782840be1e3a5b71b4c3f44
docs: add docs about shared texture mode osr (#45670) * docs: add docs about shared texture mode osr * docs: add docs about shared texture mode osr * docs: fix dot * 更新 web-contents.md Co-authored-by: Sam Maddock <samuel.maddock@gmail.com> --------- Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
[ { "path": "docs/api/web-contents.md", "patch": "@@ -898,6 +898,8 @@ copying data between CPU and GPU memory, with Chromium's hardware acceleration s\n Only a limited number of textures can exist at the same time, so it's important that you call `texture.release()` as soon as you're done with the texture.\n ...
2025-02-27T16:10:58
facebook/react
9e9b54d7f6c67b452c969abb98f4f7637ed72f56
029e8bd618af23fbdd9efdac565ad81f7d4640d8
[compiler] Make CompilerError compatible with reflection (#32539)
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -188,6 +188,7 @@ export class CompilerError extends Error {\n constructor(...args: Array<any>) {\n super(...args);\n this.name = 'ReactCompilerError';\n+ this.details = [];\n }\n \n override get mes...
2025-03-06T18:06:36
nodejs/node
db8ca623d47287316f4cc2b402897be053c2a91a
94f7568e5c105a1a26958eb07000a00182328598
doc: add array type in http request headers Document that the headers option in http.request() can be either an object or an array of strings, similar to message.rawHeaders. PR-URL: https://github.com/nodejs/node/pull/58049 Fixes: https://github.com/nodejs/node/issues/57986 Reviewed-By: Luigi Pinca <luigipinca@gmail....
[ { "path": "doc/api/http.md", "patch": "@@ -3820,7 +3820,8 @@ changes:\n * `family` {number} IP address family to use when resolving `host` or\n `hostname`. Valid values are `4` or `6`. When unspecified, both IP v4 and\n v6 will be used.\n- * `headers` {Object} An object containing request headers...
2025-06-27T13:14:37
vercel/next.js
ae0603c4eecc41f3808aca123db46d88f1342c57
b26b2b71792eebad4ade5362281a5bee68cd059e
Turbopack: bincode: Remove automatic serde derives from `#[turbo_tasks::value]` macro (#86634) Removing the automatic `serde` derives from `#[turbo_tasks::value]` should remove most of the macro expansion. I'll follow up with removing all the manual derives. This also removes `Serialize` from `NextConfig`, leaving on...
[ { "path": "Cargo.lock", "patch": "@@ -9879,7 +9879,6 @@ dependencies = [\n \"regex\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n- \"serde_with\",\n \"turbo-bincode\",\n \"turbo-rcstr\",\n \"turbo-tasks\",\n@@ -9907,6 +9906,7 @@ dependencies = [\n \"anyhow\",\n \"markdown\",\n \"mdxjs\",\n+ \"serde\",\n...
2025-12-12T17:09:37
facebook/react
e03ac20f942124bb3989b3bb58bb7b9bf91a7860
e9252bcdccf7f8f691081e4d48ca47657bc723f9
Set direction in animate call directly (#32523) Setting the animation's currentTime causes a quirk where the transition can end up off by a bit and the end state can be slightly off the end time. However, I realized that we don't have to because if we just set the direction in the `animate()` call directly the Safari...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1754,7 +1754,7 @@ function animateGesture(\n moveOldFrameIntoViewport(keyframes[0]);\n }\n const reverse = rangeStart > rangeEnd;\n- const anim = targetElement.animate(keyframes, {\n+ targetElement.animate(key...
2025-03-05T14:33:06
golang/go
d50a571ddfb7661d65c8488b0bbfeacc793f964b
704f841eab87462d4eefac07345c96f71fb6e964
test: fix tests to work with sizespecializedmalloc turned off Cq-Include-Trybots: luci.golang.try:gotip-linux-386-nosizespecializedmalloc,gotip-linux-amd64-nosizespecializedmalloc,gotip-linux-arm64-nosizespecializedmalloc Change-Id: I6a6a696465004b939c989afc058c4c3e1fb7134f Reviewed-on: https://go-review.googlesource....
[ { "path": "test/codegen/strings.go", "patch": "@@ -23,7 +23,7 @@ func CountBytes(s []byte) int {\n \n func ToByteSlice() []byte { // Issue #24698\n \t// amd64:`LEAQ type:\\[3\\]uint8`\n-\t// amd64:`CALL runtime\\.mallocTiny3`\n+\t// amd64:`CALL runtime\\.(newobject|mallocTiny3)`\n \t// amd64:-`.*runtime.str...
2025-11-13T22:04:54
electron/electron
96c2022483338b458782840be1e3a5b71b4c3f44
ff05d4a96ca9652bea76f63270c0b19c0707a4e1
chore: Fix typos (#45825)
[ { "path": "build/profile_toolchain.py", "patch": "@@ -45,7 +45,7 @@ def windows_profile():\n win_sdk_dir = SetEnvironmentAndGetSDKDir()\n path = NormalizePath(os.environ['GYP_MSVS_OVERRIDE_PATH'])\n \n- # since current windows executable are symbols path dependant,\n+ # since current windows e...
2025-02-27T13:31:21
nodejs/node
94f7568e5c105a1a26958eb07000a00182328598
488febf856633cc55598c0bc2c7641b8b2362938
test_runner: fix timeout not propagated to the child process in run PR-URL: https://github.com/nodejs/node/pull/58831 Fixes: https://github.com/nodejs/node/issues/58802 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Adrian Estrada <edsadr@gmail.com>
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -145,6 +145,7 @@ function getRunArgs(path, { forceExit,\n only,\n argv: suppliedArgs,\n execArgv,\n+ root: { timeout },\n ...
2025-06-27T11:50:17
vercel/next.js
aaee236cb587eabd4c72bfd6d942d54b705fe59d
6cc51a3b8a3030d456965a24a85f094842c2fac1
Update self-hosting.mdx (#87109) small typo fix Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "docs/01-app/02-guides/self-hosting.mdx", "patch": "@@ -218,7 +218,7 @@ module.exports = {\n \n ## Usage with CDNs\n \n-When using a CDN in front on your Next.js application, the page will include `Cache-Control: private` response header when dynamic APIs are accessed. This ensures that the result...
2025-12-12T16:23:09
facebook/react
2980f27779cf37a9656b25418a3c5cfca989e244
eda36a1c75ff8ac09fb127f6e04d4af16e49f50f
Add a shorthand for building the view-transition fixture (#32496) I end up rebuilding for testing the view-transition fixture a lot. It doesn't need everything that flight needs so this just adds a short hand that's a little faster to rebuild. --------- Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de>
[ { "path": "package.json", "patch": "@@ -117,6 +117,7 @@\n \"build-for-devtools-dev\": \"yarn build-for-devtools --type=NODE_DEV\",\n \"build-for-devtools-prod\": \"yarn build-for-devtools --type=NODE_PROD\",\n \"build-for-flight-dev\": \"cross-env RELEASE_CHANNEL=experimental node ./scripts/roll...
2025-03-01T23:26:48
electron/electron
ff05d4a96ca9652bea76f63270c0b19c0707a4e1
989918a59c51c27dbda3d871afefeaeb0911e90b
docs: dialog.md - typo fix s/wndow/window/ (#45831) Update dialog.md - typo fix
[ { "path": "docs/api/dialog.md", "patch": "@@ -228,7 +228,7 @@ The `filters` specifies an array of file types that can be displayed, see\n **Note:** On macOS, using the asynchronous version is recommended to avoid issues when\n expanding and collapsing the dialog.\n \n-### `dialog.showMessageBoxSync([wndow, ...
2025-02-27T09:32:42
nodejs/node
5b0c7dba0ecc6c6e3812ed0a3a6ba959c9f81404
dbd24b165128affb7468ca42f69edaf7e0d85a9a
test_runner: correct "already mocked" error punctuation placement PR-URL: https://github.com/nodejs/node/pull/58840 Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/test_runner/mock/mock.js", "patch": "@@ -671,7 +671,7 @@ class MockTracker {\n \n if (baseURL.searchParams.has(kMockSearchParam)) {\n throw new ERR_INVALID_STATE(\n- `Cannot mock '${specifier}.' The module is already mocked.`,\n+ `Cannot mock '${specifier}'. T...
2025-06-26T20:01:15
vercel/next.js
c54eda4baaeb3826d9149b15c7bdc85039f8978d
b17b31f16eb0a761ecdc0b821234d3cbe24f499f
[turbopack] Mark packages as side effect free when local analysis determines that they are. (#86398) This implements some simple static analysis to determine if modules are side effect free based on their top level module evaluation items. The rules are simple * declarations ✅ * literals ✅ * property access ✅ (...
[ { "path": "Cargo.lock", "patch": "@@ -9775,6 +9775,7 @@ dependencies = [\n \"once_cell\",\n \"parking_lot\",\n \"petgraph 0.8.3\",\n+ \"phf\",\n \"regex\",\n \"rustc-hash 2.1.1\",\n \"serde\",", "additions": 1, "deletions": 0 }, { "path": "crates/next-core/src/next_client/context.rs", ...
2025-12-12T06:22:38
facebook/react
eda36a1c75ff8ac09fb127f6e04d4af16e49f50f
ca12911d1fbe755b9b2b7d1bf548589317311a82
[ci] Don't erroneously mark failures as successes (#32493) Randomly noticed this when I looked at a recent [DevTools regression test run](https://github.com/facebook/react/actions/runs/13578385011). I don't recall why we added `continue-on-error` previously, but I believe it was to keep all jobs in the matrix running...
[ { "path": ".github/workflows/compiler_typescript.yml", "patch": "@@ -75,8 +75,8 @@ jobs:\n name: Test ${{ matrix.workspace_name }}\n needs: discover_yarn_workspaces\n runs-on: ubuntu-latest\n- continue-on-error: true\n strategy:\n+ fail-fast: false\n matrix:\n workspace...
2025-02-28T18:06:40
electron/electron
9b6ba1ced11b705daedca170990ec762406243fd
7870ade07af069798128a2a9df7dafedb544a4de
fix: re-enable MacWebContentsOcclusion feature flag (#45775)
[ { "path": "patches/chromium/revert_code_health_clean_up_stale_macwebcontentsocclusion.patch", "patch": "@@ -17,27 +17,85 @@ Refs: https://chromium-review.googlesource.com/c/chromium/src/+/6078344\n This partially (leaves the removal of the feature flag) reverts\n ef865130abd5539e7bce12308659b19980368f12.\n ...
2025-02-25T17:28:09
nodejs/node
dbd24b165128affb7468ca42f69edaf7e0d85a9a
b4c5fb4ffbec9f27ba5799070c2e0588b7c7ff0e
doc: fix `stream.md` section order For some reason, `stream.isErrored` and `stream.isReadable` sections were in between `stream.Readable` static methods sections. PR-URL: https://github.com/nodejs/node/pull/58811 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Re...
[ { "path": "doc/api/stream.md", "patch": "@@ -3050,6 +3050,44 @@ console.log(res); // prints 'HELLOWORLD'\n \n See [`readable.compose(stream)`][] for `stream.compose` as operator.\n \n+### `stream.isErrored(stream)`\n+\n+<!-- YAML\n+added:\n+ - v17.3.0\n+ - v16.14.0\n+changes:\n+ - version:\n+ - v24....
2025-06-26T12:10:39
vercel/next.js
d43d57afd0ff3b0b327adb0329c693e333cd830a
8479550bc50d9483a0c857e6bc2874ad98f2fe5d
Remove urlencoded action handling & harden action ID checks (#87082) - Removes support for urlencoded actions - Errors when a server action request is received in apps that have no server actions - validate action ID in MPA actions before proceeding --------- Co-authored-by: Josh Story <story@hey.com>
[ { "path": "packages/next/errors.json", "patch": "@@ -970,5 +970,8 @@\n \"969\": \"Invariant: nextConfig couldn't be loaded\",\n \"970\": \"process.env.NEXT_DEPLOYMENT_ID is missing but runtimeServerDeploymentId is enabled\",\n \"971\": \"The NEXT_DEPLOYMENT_ID environment variable value \\\"%s\\\" doe...
2025-12-11T21:56:15
facebook/react
ca12911d1fbe755b9b2b7d1bf548589317311a82
d55cc79bcf5cd3bd4cb406381b067d72842f368e
feat(eslint-plugin-react-hooks): make flat config the `recommended` config (#32457) This change swaps which config `recommended` is aliasing. In 5.2.0, the new flat config was introduced as `recommended-latest`, while `recommended` still pointed at the legacy rc-based config, with a note that in the next major version...
[ { "path": "fixtures/eslint-v9/eslint.config.ts", "patch": "@@ -1,3 +1,4 @@\n+import type {Linter} from 'eslint';\n import * as reactHooks from 'eslint-plugin-react-hooks';\n \n export default [\n@@ -12,10 +13,10 @@ export default [\n },\n },\n },\n- reactHooks.configs['recommended-latest'],\n+ ...
2025-02-28T16:22:08
nodejs/node
b4c5fb4ffbec9f27ba5799070c2e0588b7c7ff0e
2e9e844d99d7880099736829f1c19b939a2436e3
lib: fix `getTypeScriptParsingMode` jsdoc PR-URL: https://github.com/nodejs/node/pull/58681 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/modules/typescript.js", "patch": "@@ -30,7 +30,7 @@ const {\n \n /**\n * The TypeScript parsing mode, either 'strip-only' or 'transform'.\n- * @type {string}\n+ * @type {function(): TypeScriptMode}\n */\n const getTypeScriptParsingMode = getLazy(() =>\n (getOptionValue('--experim...
2025-06-26T07:04:40
electron/electron
698cce67079ce8333d76ed3e865238bb31c82e7f
3eab549369e1eeb758fb5c2b8a5f55fab2e4965d
fix: drag and drop icons on Windows (#45767)
[ { "path": "patches/chromium/.patches", "patch": "@@ -140,3 +140,4 @@ ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spell...
2025-02-24T08:54:08
vercel/next.js
8c5af211d580b2b94c535cf4ff4e8be57c963491
e760fa231d913a93518f38ff94214b2d1defd751
Fix: Server refresh() should not purge client cache (#86878) The server form of refresh() is used to re-render all the dynamic data on the current page. Unlike updateTag/revalidateTag, it does not affect any cached data, so the client cache should not evict any of its entries.
[ { "path": "packages/next/src/client/components/app-router-headers.ts", "patch": "@@ -34,3 +34,6 @@ export const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\n export const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\n export const NEXT_REQUEST_ID_HEADER = 'x-nextjs-reques...
2025-12-11T18:26:28
facebook/react
56c7d1070aabe42b955ea0006477ea1ca02dd0c5
7e2ea902f839264fd327b0df5fae4f6ad8359952
[ci] Upload release for easier debugging (#32492) Uploads the releases that were published in case to help with debugging or verifying a dry run. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32492)...
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -117,3 +117,9 @@ jobs:\n --publishVersion=${{ inputs.version_to_publish }} \\\n --skipPackages=${{ inputs.skip_packages }} ${{ (inputs.dry && '') || '\\'}}\n ${{ inputs.dry && '--dry'}}\n+ ...
2025-02-28T15:58:39
golang/go
ff61991aed2871301e3f4fafff65fd67d6b170b5
129d0cb543e1e15cdea706dd7230ee90c8d54446
cmd/go: fix flaky TestScript/mod_get_direct Use our local git server instead of cloud.google.com/go, which may go down or otherwise reject our traffic. I built and installed git 2.23.0 and confirmed that this updated test still fails if CL 196961 is rolled back. So the test is still accurate at detecting the problem....
[ { "path": "src/cmd/go/testdata/script/mod_get_direct.txt", "patch": "@@ -2,14 +2,14 @@\n # 'GOPROXY=direct go get golang.org/x/tools/gopls@master' did not correctly\n # resolve the pseudo-version for its dependency on golang.org/x/tools.\n \n-[!net:cloud.google.com] skip\n+[short] skip\n [!git] skip\n \n en...
2025-11-13T19:33:53
nodejs/node
8ba66c5e7b367d640a98265ad4b1c7d54bf8005f
a705e240b197262d5a8eee39f11797d14cfc94cb
repl: improve tab completion on computed properties improve the tab completion capabilities around computed properties by replacing the use of brittle and error prone Regex checks with more robust AST based analysis PR-URL: https://github.com/nodejs/node/pull/58775 Reviewed-By: James M Snell <jasnell@gmail.com> Revie...
[ { "path": "lib/repl.js", "patch": "@@ -1225,8 +1225,6 @@ REPLServer.prototype.setPrompt = function setPrompt(prompt) {\n const importRE = /\\bimport\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$/;\n const requireRE = /\\brequire\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$...
2025-06-26T01:50:46
electron/electron
3e51ee516ea167ceb0c70367e8b08afe178e7a7b
e3f61b465dac3fa2d944e931fd5fec58d5e27498
fix: rework and improve `legacyMainResolve` patch (#45754) fix: rework and improve legacyMainResolve patch
[ { "path": "patches/node/.patches", "patch": "@@ -18,7 +18,7 @@ test_formally_mark_some_tests_as_flaky.patch\n fix_do_not_resolve_electron_entrypoints.patch\n ci_ensure_node_tests_set_electron_run_as_node.patch\n fix_assert_module_in_the_renderer_process.patch\n-fix_revert_src_lb_reducing_c_calls_of_esm_lega...
2025-02-22T16:06:04
vercel/next.js
8d3cbecb8b8257ed5f5c6c31edd325d1b4974505
593cef1b97c7524d786510487c6df240d7453011
bundle-analyzer: fix regression and add basic smoke test (#87010)
[ { "path": "packages/next/src/build/turbopack-analyze/index.ts", "patch": "@@ -1,3 +1,6 @@\n+import type { NextConfigComplete } from '../../server/config-shared'\n+import type { __ApiPreviewProps } from '../../server/api-utils'\n+\n import path from 'path'\n import { validateTurboNextConfig } from '../../lib...
2025-12-11T04:13:12
rust-lang/rust
8459d6bf3a6ba46368c6649f1cc7d9ba332c9e9c
3b1b0ef4d80d3117924d91352c8b6ca528708b3c
Fix std doctest build for SGX target.
[ { "path": "library/std/src/os/fd/raw.rs", "patch": "@@ -16,7 +16,7 @@ use crate::io;\n use crate::os::hermit::io::OwnedFd;\n #[cfg(all(not(target_os = \"hermit\"), not(target_os = \"motor\")))]\n use crate::os::raw;\n-#[cfg(all(doc, not(target_arch = \"wasm32\")))]\n+#[cfg(all(doc, not(any(target_arch = \"w...
2026-03-12T12:14:40
facebook/react
7e2ea902f839264fd327b0df5fae4f6ad8359952
3607f4838a8f4a87160da36aa26bb1432d7a5f11
[ci] Fix discord notification title (#32491) fun times --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32491). * #32492 * __->__ #32491
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -50,7 +50,7 @@ jobs:\n embed-author-name: ${{ github.event.sender.login }}\n embed-author-url: ${{ github.event.sender.html_url }}\n embed-author-icon-url: ${{ github.event.sender.avatar_url }}\n- ...
2025-02-28T15:58:28
golang/go
129d0cb543e1e15cdea706dd7230ee90c8d54446
77c5130100ac1b29bb2e04d0f5f99e200136c0af
net/http/cgi: accept INCLUDED as protocol for server side includes The existing protocol check for fcgi/cgi requests did not properly account for Apache SSI (Server-Side Includes) SERVER_PROTOCOL value of INCLUDED. Added check for well-known INCLUDED value for proper implementation of the CGI Spec as specified in RFC...
[ { "path": "src/net/http/cgi/child.go", "patch": "@@ -57,8 +57,11 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {\n \n \tr.Proto = params[\"SERVER_PROTOCOL\"]\n \tvar ok bool\n-\tr.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion(r.Proto)\n-\tif !ok {\n+\tif r.Proto == \"INCLUDE...
2025-10-28T16:26:26
nodejs/node
a705e240b197262d5a8eee39f11797d14cfc94cb
f08e0a0fa05d36c1f131fb7a888725e2a0fa1b3c
module: convert schema-only core module on `convertCJSFilenameToURL` Co-authored-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58612 Fixes: https://github.com/nodejs/node/issues/58607 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "lib/internal/modules/customization_hooks.js", "patch": "@@ -6,6 +6,7 @@ const {\n ArrayPrototypeSplice,\n ObjectAssign,\n ObjectFreeze,\n+ StringPrototypeSlice,\n StringPrototypeStartsWith,\n Symbol,\n } = primordials;\n@@ -126,9 +127,12 @@ function registerHooks(hooks) {\n */\n funct...
2025-06-25T16:49:56
vercel/next.js
593cef1b97c7524d786510487c6df240d7453011
42690262d69988cd95e8317a725095f8f75f85cd
docs: remove deprecated url.parse() from custom server example (#86986) This PR updates the custom server documentation to remove usage of Node's deprecated `url.parse()` API. The example does not require URL parsing, since the `parsedUrl` argument is optional for the Next.js `RequestHandler`. Removing `url.parse()` ...
[ { "path": "docs/01-app/02-guides/custom-server.mdx", "patch": "@@ -27,9 +27,9 @@ const handle = app.getRequestHandler()\n \n app.prepare().then(() => {\n createServer((req, res) => {\n- const parsedUrl = parse(req.url!, true)\n- handle(req, res, parsedUrl)\n+ handle(req, res)\n }).listen(port)\...
2025-12-10T13:58:36
golang/go
028375323f39b2d59bae0abfe20ba187c42bcf16
4ebf295b0b1740caac6302cc824ebd0f6175c1d5
cmd/go/internal/modfetch/codehost: fix flaky TestReadZip In normal use by the go command, ReadZip always happens after Stat, which makes sure that the relevant revision has been fetched to local disk. But TestReadZip calls ReadZip directly, and ReadZip was not ensuring that fetch had happened. This made 'go test' pas...
[ { "path": "src/cmd/go/internal/modfetch/codehost/vcs.go", "patch": "@@ -624,15 +624,20 @@ func (r *vcsRepo) ReadZip(ctx context.Context, rev, subdir string, maxSize int64\n \t\treturn nil, vcsErrorf(\"vcs %s: ReadZip: %w\", r.cmd.vcs, errors.ErrUnsupported)\n \t}\n \n+\tif rev == \"latest\" {\n+\t\trev = r....
2025-11-13T16:43:55
facebook/react
3607f4838a8f4a87160da36aa26bb1432d7a5f11
5eb20b3007a8fafaf032c2e028c335ab09217d9f
Add Commit Scaffolding for Gestures (#32451) This adds a `ReactFiberApplyGesture` which is basically intended to be a fork of the phases in `ReactFiberCommitWork` except for the fake commit that `useSwipeTransition` does. So far none of the phases are actually implemented yet. This is just the scaffolding around them ...
[ { "path": "fixtures/view-transition/src/components/SwipeRecognizer.js", "patch": "@@ -33,11 +33,6 @@ export default function SwipeRecognizer({\n });\n }\n function onScrollEnd() {\n- if (activeGesture.current !== null) {\n- const cancelGesture = activeGesture.current;\n- activeGesture.c...
2025-02-27T21:45:18
nodejs/node
2bb7667475e9aad2fe95d60c0d24b1688d6c8f61
100c6da238bec44ea0b18a3df4e82080a8ae05b3
fs: move FileHandle close on GC to EOL Automatically closing a FileHandle on garbage collection has been deprecated for some time now. We've said that it will eventually be removed and become and error. PR-URL: https://github.com/nodejs/node/pull/58536 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-B...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -2865,16 +2865,18 @@ To maintain existing behavior `response.finished` should be replaced with\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58536\n+ description: End-of-Life.\n - version: v14.0.0\n...
2025-05-31T19:42:27
vercel/next.js
5099903e88943df679d69d81f088a2b7b699f0c6
24ccec0505c22c7cbe7c8f767e26aa56a6016e96
bundle-analyzer: add kbd shortcut labels and fix focus bugs (#87001) - Adds decorated kbd-style shortcut labels to cue the user into using them - Listens only for the appropriate OS or Ctrl key on Mac/Others - Esc now clears and focuses the search field and the treemap focus - Does not trigger in the case where the us...
[ { "path": "apps/bundle-analyzer/app/page.tsx", "patch": "@@ -1,18 +1,15 @@\n 'use client'\n \n import type React from 'react'\n-import { useEffect, useMemo, useRef, useState } from 'react'\n+import { useEffect, useMemo, useState } from 'react'\n import useSWR from 'swr'\n import { ErrorState } from '@/compo...
2025-12-10T07:36:19
electron/electron
612da3ec47e0ca0c642a7409fe0135180cd45732
6248c2436a2fd4c503feeee7183fe0afc44df2c6
chore: bump chromium to 135.0.7027.0 (main) (#45677) * chore: bump chromium in DEPS to 135.0.7021.0 * chore: bump chromium in DEPS to 135.0.7023.0 * chore: update patches * chore: gen-libc++-filenames.js * [Extensions] Add a BUILD.gn file for the chrome.system.display API. Refs https://chromium-review.googlesourc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '135.0.7012.0',\n+ '135.0.7027.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "filenames.gni", "patch": "@@ ...
2025-02-21T22:46:51
rust-lang/rust
23c24d2bffe202cd38d9b45c54b14984f3b55072
f6db3ef2e3234d412ce79993280b266591eb2517
fix: Clarify error messages when proc-macro-srv changes working directory I'm investigating issues where users see a load of logs of the form: ``` Failed to set the current working dir to /redacted/path. Error: Os { code: 2, kind: NotFound, message: "No such file or directory" } ``` This is tricky to debug because t...
[ { "path": "src/tools/rust-analyzer/crates/proc-macro-srv/src/lib.rs", "patch": "@@ -328,7 +328,7 @@ impl<'snap> EnvChange<'snap> {\n let prev_working_dir = std::env::current_dir().ok();\n if let Err(err) = std::env::set_current_dir(dir) {\n eprintln!(\n- ...
2026-03-12T11:43:59
facebook/react
5eb20b3007a8fafaf032c2e028c335ab09217d9f
4c9392b43e9f39e17c18ef1c2cd0f0a14e85669c
[ci] Fix --dry not being passed correctly (#32489) Boolean params for dry runs are true if the param exists at all, so only add it if we're in dry run mode.
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -50,7 +50,7 @@ jobs:\n embed-author-name: ${{ github.event.sender.login }}\n embed-author-url: ${{ github.event.sender.html_url }}\n embed-author-icon-url: ${{ github.event.sender.avatar_url }}\n- ...
2025-02-27T21:01:31
vercel/next.js
347c8dfaaf4afedce16fb632ec03545e0e4ecbf2
ac8d891d9517f84da3450cb0bf2df1ad167fed0f
docs: use cache debugging notes (#86937) Closes: https://github.com/vercel/next.js/issues/86896
[ { "path": "docs/01-app/03-api-reference/01-directives/use-cache.mdx", "patch": "@@ -518,6 +518,24 @@ export default function ClientComponent({ action }) {\n \n ## Troubleshooting\n \n+### Debugging cache behavior\n+\n+#### Verbose logging\n+\n+Set `NEXT_PRIVATE_DEBUG_CACHE=1` for verbose cache logging:\n+\n...
2025-12-09T20:22:51
nodejs/node
ac540c03e5e2e5350b93a1da8aa1c56fb7383bc3
22d30618d1e6d59f4dc152fa0b9820388bea3861
2025-06-24, Version 22.17.0 'Jod' (LTS) Notable changes: assert: * (SEMVER-MINOR) mark `partialDeepStrictEqual()` as stable (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370 doc: * deprecate instantiating `node:http` classes without new (Yagiz Nizipli) https://github.com/nodejs/node/pull/58518 * dep...
[ { "path": "CHANGELOG.md", "patch": "@@ -47,7 +47,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.16.0\">22.16.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.17.0\">22.17.0...
2025-06-10T18:43:50
electron/electron
6248c2436a2fd4c503feeee7183fe0afc44df2c6
8d58999135995bdd3032062c01623dee08d38ac2
fix: re-enable synchronous spellcheck on Windows (#45712) * fix: re-enable synchronous spellcheck on Windows * revert: fix: empty suggestions with windows platform checker --------- Co-authored-by: Samuel Maddock <smaddock@slack-corp.com>
[ { "path": "patches/chromium/.patches", "patch": "@@ -140,3 +140,4 @@ revert_code_health_clean_up_stale_macwebcontentsocclusion.patch\n ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callbac...
2025-02-21T22:45:46
facebook/react
4c9392b43e9f39e17c18ef1c2cd0f0a14e85669c
227e8414cc5af227b5de339cace2447d4a81c995
[ci] Prepare publish workflow (#32488) Fixes up a few things in the script and workflow to make it possible to run in CI without interactive prompts.
[ { "path": ".github/workflows/runtime_releases_from_npm_manual.yml", "patch": "@@ -12,22 +12,22 @@ on:\n description: Version to publish for the specified packages\n type: string\n only_packages:\n- description: Space separated list of packages to publish on NPM. Use this OR skip...
2025-02-27T20:24:57
vercel/next.js
7f5f0a69833c3e0e204cdc12d10a846154d5181f
3f19ee59f0e056241e35a7494d869b2958159cb6
enhance debug-build-paths on glob cases (#86953)
[ { "path": "packages/next/errors.json", "patch": "@@ -969,5 +969,6 @@\n \"968\": \"Invariant: getNextConfigEdge must only be called in edge runtime\",\n \"969\": \"Invariant: nextConfig couldn't be loaded\",\n \"970\": \"process.env.NEXT_DEPLOYMENT_ID is missing but runtimeServerDeploymentId is enabled...
2025-12-09T17:42:28
nodejs/node
22d30618d1e6d59f4dc152fa0b9820388bea3861
6ce6fdbf219a72ecdbe5e65d0259f1072304b1d9
2025-06-24, Version 24.3.0 (Current) Notable changes: doc: * add islandryu to collaborators (Shima Ryuhei) https://github.com/nodejs/node/pull/58714 fs: * (SEMVER-MINOR) allow correct handling of burst in fs-events with AsyncIterator (Philipp Dunkel) https://github.com/nodejs/node/pull/58490 module: * (SEMVER-M...
[ { "path": "CHANGELOG.md", "patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">24.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.3.0\">24.3.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">2...
2025-06-24T18:48:53
electron/electron
324fc0f62a1bd30300e2493c591e5a5103b900c4
f62668e2e3b9cbe4c6b7584cd76621acc1c751da
fix: crash on `getUserMedia` with invalid `chromeMediaSourceId` (#45733) * fix: crash on getUserMedia with invalid chromeMediaSourceId * test: add a test
[ { "path": "shell/browser/web_contents_permission_helper.cc", "patch": "@@ -101,16 +101,20 @@ void HandleUserMediaRequest(const content::MediaStreamRequest& request,\n : \"\");\n }\n \n- if (request.video_type == MediaStreamType::GUM_TAB_VIDEO_CAPTURE ||\n- request.video_type == MediaStre...
2025-02-21T16:17:52
facebook/react
22e39ea72e9d10f6634ea580aaba49c2e759ef0e
25677265038b89c1ee3000e0669339ed160d9d75
Include component name in "async/await is not supported" error message if available (#32435)
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -475,10 +475,13 @@ function warnIfAsyncClientComponent(Component: Function) {\n if (!didWarnAboutAsyncClientComponent.has(componentName)) {\n didWarnAboutAsyncClientComponent.add(componentName);\n console.error(...
2025-02-25T09:48:44
golang/go
4ebf295b0b1740caac6302cc824ebd0f6175c1d5
625d8e9b9cd7ede188a8856c5ac88791333baa63
runtime: prefer to restart Ps on the same M after STW Today, Ps jump around arbitrarily across STW. Instead, try to keep the P on the previous M it ran on. In the future, we'll likely want to try to expand this beyond STW to create a more general affinity for specific Ms. For this to be useful, the Ps need to have ru...
[ { "path": "src/internal/trace/testtrace/helpers.go", "patch": "@@ -16,8 +16,7 @@ import (\n \t\"testing\"\n )\n \n-// MustHaveSyscallEvents skips the current test if the current\n-// platform does not support true system call events.\n+// Dump saves the trace to a file or the test log.\n func Dump(t *testin...
2025-10-24T19:14:59
vercel/next.js
3f19ee59f0e056241e35a7494d869b2958159cb6
27c24bf79258597ebf67c5f558091d3ea4f9dcaf
fix: only call `captureOwnerStack` if it exists (#86982)
[ { "path": "packages/next/src/server/node-environment-extensions/utils.tsx", "patch": "@@ -160,8 +160,8 @@ function applyOwnerStack(error: Error) {\n // via `throwIfDisallowedDynamic`.\n if (process.env.NODE_ENV !== 'production') {\n const ownerStack =\n- getClientReact()?.captureOwnerStack() ??...
2025-12-09T14:20:51
nodejs/node
6ce6fdbf219a72ecdbe5e65d0259f1072304b1d9
d08513dfc7d7fe2e1d89bf5f283a30a006b990ff
module: update tests for combined ambiguous module syntax error PR-URL: https://github.com/nodejs/node/pull/55874 Fixes: https://github.com/nodejs/node/issues/55776 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -73,9 +73,16 @@ const isCommonJSGlobalLikeNotDefinedError = (errorMessage) =>\n * @param {string} url\n * @returns {void}\n */\n-const explainCommonJSGlobalLikeNotDefinedError = (e, url) => {\n+const explainCommonJSGlobalLikeNotDefinedError...
2025-06-24T21:49:31