repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
43cfd785e72ccd04fe638395aa80029aae23fef6
312b2034a4e16583fac00070e698c3d464eca1c8
cmd/link, runtime, debug/gosym: move pclntab magic to internal/abi Change-Id: I2d3c41b0e61b994d7b04bd16a791fd226dc45269 Reviewed-on: https://go-review.googlesource.com/c/go/+/720302 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Cherry Mui <cherryyz@google...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -261,7 +261,7 @@ func (state *pclntab) generatePCHeader(ctxt *Link) {\n \n \t\t// Write header.\n \t\t// Keep in sync with runtime/symtab.go:pcHeader and package debug/gosym.\n-\t\theader.SetUint32(ctxt.Arch, 0, 0xfffffff1)\n+\t\theader.SetUint32(ct...
2025-11-13T21:01:14
facebook/react
2d40460cf768071d3a70b4cdc16075d23ca1ff25
254dc4d9f37eb512d4ee8bad6a0fae7ae491caef
[ci] fix notify/label actions for forks (#32725) Need this to run against target for forks to get the notification. This job does not checkout the code in the PR, so it's safe to run from the target. Also fixes failing checks on PRs: <img width="870" alt="Screenshot 2025-03-24 at 3 28 30 PM" src="https://github.com...
[ { "path": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -1,7 +1,7 @@\n name: (Compiler) Discord Notify\n \n on:\n- pull_request:\n+ pull_request_target:\n types: [opened, ready_for_review]\n paths:\n - compiler/**", "additions": 1, "deletions": 1, "language": "YAM...
2025-03-24T19:46:59
vercel/next.js
85d043a64aec4f49a6432e4c1a693881e6688e49
98fd3456fb19b1305816ccba8f45d43eb1e367da
Create-next-app update message (#88706) ### What? This PR fixes `create-next-app` update notifications for prerelease versions by checking against the correct npm dist-tag. ### Why? Users running `pnpx create-next-app@canary` were incorrectly prompted to update to the stable version because: 1. The `update-check` ...
[ { "path": "packages/create-next-app/index.ts", "patch": "@@ -656,7 +656,18 @@ async function run(): Promise<void> {\n conf.set('preferences', preferences)\n }\n \n-const update = updateCheck(packageJson).catch(() => null)\n+// Determine the appropriate dist-tag to check for updates.\n+// For prerelease ve...
2026-01-22T14:38:37
electron/electron
6170a5af40b12cfc2d32fb6690fafb22b743fb40
d65a856bf3cfda04db4c4a2725272e825366a60d
chore: combine all the "patch out Profiles" changes into a single patch (#47063) * chore: fold the profile patches into one patch * chore: e patches all * chore: patch out ProfileSelections::ApplyProfileSelection() Another profile reference. Referenced iff making a debug build.
[ { "path": "patches/chromium/.patches", "patch": "@@ -91,14 +91,11 @@ fix_remove_caption-removing_style_call.patch\n build_allow_electron_to_use_exec_script.patch\n chore_introduce_blocking_api_for_electron.patch\n chore_patch_out_partition_attribute_dcheck_for_webviews.patch\n-chore_patch_out_profile_method...
2025-05-14T14:21:11
nodejs/node
cd9fd09a2730c07c22f030d4df3db6972298ffda
a6c5d27739976664a55152b6bffa8b4fb296d014
quic: multiple fixups and updates Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/59342 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
[ { "path": "configure.py", "patch": "@@ -852,12 +852,6 @@\n \n # End dummy list.\n \n-parser.add_argument('--with-quic',\n- action='store_true',\n- dest='quic',\n- default=None,\n- help='build with QUIC support')\n-\n parser.add_argument('--without-ssl',\n action='store_true',\n dest='wit...
2025-08-03T13:16:03
golang/go
d8269ab0d59212fed0f5975f7083f6bbbfc00ec4
c6d64f85565e6a934110c4928ca95fea0045ebaa
cmd/link, cmd/internal/obj: fix a remote call failure issue When a function call exceeds the immediate value range of the instruction, a trampoline is required to assist in the jump. Trampoline is only omitted when plt is needed; otherwise, a check is required. Change-Id: I7fe2e08d75f6f574475837b560e650bbd4215858 Rev...
[ { "path": "src/cmd/internal/obj/loong64/asm.go", "patch": "@@ -2437,6 +2437,9 @@ func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {\n \t\tv := int32(0)\n \t\tif p.To.Target() != nil {\n \t\t\tv = int32(p.To.Target().Pc-p.Pc) >> 2\n+\t\t\tif v < -1<<25 || v >= 1<<25 {\n+\t\t\t\tc.ctxt.Diag(\"branc...
2025-11-24T09:28:42
facebook/react
254dc4d9f37eb512d4ee8bad6a0fae7ae491caef
42a57ea8027de8af55e6f4483c3b9a8f4cba31fb
[compiler][bugfix] Fix hoisting of let declarations (#32724) (Found when compiling Meta React code) Let variable declarations and reassignments are currently rewritten to `StoreLocal <varName>` instructions, which each translates to a new `const varName` declaration in codegen. ```js // Example input function useHoo...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/PruneHoistedContexts.ts", "patch": "@@ -5,6 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import {CompilerError} from '..';\n import {\n DeclarationId,\n InstructionKind,\n@@ -27,14 +28,28 @@ ex...
2025-03-24T18:30:17
vercel/next.js
9e933be762ada796e4d263739cda3360a3c38e91
71ac1ec75cfe04785e87e8b8b071cdad9d0d954f
[devtools] Fix notch coloring of error overlay in forced colors mode (#88892)
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overlay/styles.tsx", "patch": "@@ -15,6 +15,8 @@ const styles = css`\n align-items: center;\n flex-direction: column;\n padding: 10vh 15px 0;\n+ /* color schemes we handle. Every other scheme the UA would need to overwrite */\n...
2026-01-22T11:46:54
nodejs/node
f855cda2a248dacae27696cd001e48515c72ac2f
ce08561b6777f6c433b37bffad13901d7630270c
fs: fix wrong order of file names in cpSync error message PR-URL: https://github.com/nodejs/node/pull/59775 Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.co...
[ { "path": "src/node_file.cc", "patch": "@@ -3270,7 +3270,7 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n std::string message =\n \"Cannot overwrite non-directory %s with directory %s\";\n return THROW_ERR_FS_CP_DIR_TO_NON_DIR(\n- env, message.c_s...
2025-09-07T18:15:13
electron/electron
d65a856bf3cfda04db4c4a2725272e825366a60d
f2639d13ccc2c70cc45d63518924d1a4e08886b6
chore: bump chromium to 138.0.7177.0 (main) (#47081) * chore: bump chromium in DEPS to 138.0.7177.0 * 6530423: [WebContents] Fix IsNeverComposited() calls during initialization Refs https://chromium-review.googlesource.com/c/chromium/src/+/6530423 * 6512551: [ios] Enable -Wobjc-property-assign-on-object-type Refs ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7175.0',\n+ '138.0.7177.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-14T14:08:31
golang/go
c6d64f85565e6a934110c4928ca95fea0045ebaa
c048a9a11f21e879a76e328b7a92f3a47f298b37
cmd/internal/obj/loong64: remove the incorrect unsigned instructions The loong64 ISA does not support the 32-bit unsigned arithmetic instructions ADDU, SUBU and MULU. Change-Id: Ifa67de9c59aa12d08844189ed23e6daad0cc11ea Reviewed-on: https://go-review.googlesource.com/c/go/+/722760 Reviewed-by: abner chenc <chenguoqi@...
[ { "path": "src/cmd/asm/internal/asm/testdata/loong64enc1.s", "patch": "@@ -199,8 +199,6 @@ lable2:\n \tMOVHU\tR4, 1(R5)\t\t// a4044029\n \tMOVHU\ty+8(FP), R4\t\t// 6440402a\n \tMOVHU\t1(R5), R4\t\t// a404402a\n-\tMULU\tR4, R5\t \t\t// a5101c00\n-\tMULU\tR4, R5, R6\t\t// a6101c00\n \tMULH\tR4, R5\t \t\t/...
2025-11-21T09:22:05
rust-lang/rust
de1b0ac73a5701f1c3916e27938df22139e7b939
76be1cc4eef94daeab731ed9395a317b34d89d63
fix: guard paren-sugar pretty-printing on short trait args
[ { "path": "compiler/rustc_middle/src/ty/print/pretty.rs", "patch": "@@ -3314,7 +3314,8 @@ define_print_and_forward_display! {\n TraitRefPrintSugared<'tcx> {\n if !with_reduced_queries()\n && p.tcx().trait_def(self.0.def_id).paren_sugar\n- && let ty::Tuple(args) = self.0.ar...
2026-03-20T10:02:43
vercel/next.js
71ac1ec75cfe04785e87e8b8b071cdad9d0d954f
37ac3974db79adc7d8da7923f09df6d1509986e4
[devtools] Wrap long file names of stack frames in the error overlay (#88886) https://github.com/user-attachments/assets/0594744b-5dd5-4550-90b8-77071962f666 See [overflow-wrap docs](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/overflow-wrap) for break-word vs anywhere. Just a one-line...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/call-stack-frame/call-stack-frame.tsx", "patch": "@@ -2,7 +2,7 @@ import type { OriginalStackFrame } from '../../../shared/stack-frame'\n \n import { HotlinkedText } from '../hot-linked-text'\n import { ExternalIcon, SourceMappingErrorIcon } ...
2026-01-22T11:38:35
facebook/react
c61e75b76d5ff6707ad75c8beb777e721d982207
7c908bcf4e6b46135164be961972f0d756378517
[compiler] Avoid failing builds when import specifiers conflict or shadow vars (#32663) Avoid failing builds when imported function specifiers conflict by using babel's `generateUid`. Failing a build is very disruptive, as it usually presents to developers similar to a javascript parse error. ```js import {logRender a...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Gating.ts", "patch": "@@ -7,8 +7,9 @@\n \n import {NodePath} from '@babel/core';\n import * as t from '@babel/types';\n-import {PluginOptions} from './Options';\n import {CompilerError} from '../CompilerError';\n+import {ProgramContext}...
2025-03-24T13:31:51
nodejs/node
ce08561b6777f6c433b37bffad13901d7630270c
4d5792a66c372f07777ba14759b9788a80e7fe60
lib: fix isReadable and isWritable return type value PR-URL: https://github.com/nodejs/node/pull/59089 Fixes: https://github.com/nodejs/node/issues/59006 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> Reviewed-By: ...
[ { "path": "doc/api/stream.md", "patch": "@@ -3084,10 +3084,17 @@ changes:\n -->\n \n * `stream` {Readable|Duplex|ReadableStream}\n-* Returns: {boolean}\n+* Returns: {boolean|null} - Only returns `null` if `stream` is not a valid `Readable`, `Duplex` or `ReadableStream`.\n \n Returns whether the stream is re...
2025-09-07T14:50:36
golang/go
ff2fd6327ecb343d96074dff3ccee359b5f1d629
3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa
go/types, types2: remove setDefType and most def plumbing CL 722161 replaced the setDefType mechanism with boundaries on composite literals, removing the need to pass the def argument in all but 1 case. The exception is interface types, which use def to populate the receiver type for better error messages. Change-Id...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -669,7 +669,7 @@ var cgoPrefixes = [...]string{\n \t\"_Cmacro_\", // function to evaluate the expanded expression\n }\n \n-func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, def *TypeName, wantType bool) {\n+func (check *Check...
2025-11-24T19:34:39
facebook/react
febc09b480903bb803455dc38dc130007d3a2e91
4a9df08157f001c01b078d259748512211233dcf
[compiler][fix] mutableOnlyIfOperandsAreMutable does not apply when operands are globals (#32695) Globals, module locals, and other locally defined functions may mutate their arguments. See test fixtures for details --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts", "patch": "@@ -11,6 +11,7 @@ import {\n BuiltInArrayId,\n BuiltInFireId,\n BuiltInMixedReadonlyId,\n+ BuiltInObjectId,\n BuiltInUseActionStateId,\n BuiltInUseContextHookId,\n BuiltInUseEffectHookId,\n@@ -45,21 +46,17 @...
2025-03-24T03:07:24
vercel/next.js
acd5d5edda97f263818b7bc5606f31afb4e785dc
4095107fd39711b4a875cf67a9173ceb4cfb38c5
Turbopack: [chore] Fix Rust check warnings (#88871) # What? Fix some unimportant `check` warnings that appear as noise in the build logs.
[ { "path": "crates/napi/src/next_api/turbopack_ctx.rs", "patch": "@@ -158,7 +158,7 @@ pub struct NapiNextTurbopackCallbacks {\n throw_turbopack_internal_error: ThreadsafeFunction<TurbopackInternalErrorOpts>,\n }\n \n-/// Arguments for [`NapiNextTurbopackCallbacks::throw_turbopack_internal_error`].\n+/// ...
2026-01-22T08:37:23
nodejs/node
840d05f8ffb5e7026e5af73e9214e17acbb3c1a7
14c68e3b536798e25f810ed7ae180a5cde9e47d3
tools: improve error handling in node_mksnapshot PR-URL: https://github.com/nodejs/node/pull/59437 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/snapshot/node_mksnapshot.cc", "patch": "@@ -66,8 +66,16 @@ int BuildSnapshot(int argc, char* argv[]) {\n std::vector<std::string>(argv, argv + argc),\n node::ProcessInitializationFlags::kGeneratePredictableSnapshot);\n \n+ if (result->exit_code() != 0) {\n+ for (cons...
2025-09-07T12:34:36
electron/electron
e3e647d21e3997810f446a9e75b5548719e86858
7ab032f5940cc7bf6189163d130b284516d16bc0
chore: bump chromium to 138.0.7175.0 (main) (#46986) * chore: bump chromium in DEPS to 138.0.7166.0 * chore: bump chromium in DEPS to 138.0.7166.2 * 6508373: Add WebContents, Tab getters for future Clank navigation capture rework https://chromium-review.googlesource.com/c/chromium/src/+/6508373 * 6470924: Introduc...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7165.0',\n+ '138.0.7175.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-13T18:51:20
golang/go
3531ac23d4aac6bdd914f14f65ee5fdc5e6e98fa
2b8dbb35b0d6a5601ae9b6f1d1de106774251214
go/types, types2: replace setDefType with pending type check Given a type definition of the form: type T RHS The setDefType function would set T.fromRHS as soon as we knew its top-level type. For instance, in: type S struct { ... } S.fromRHS is set to a struct type before type-checking anything inside the stru...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -993,6 +993,13 @@ func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, a\n \t\tcheck.nonGeneric(T, x)\n \t}\n \n+\t// Here, x is a value, meaning it has a type. If that type is pending, then we have\n+\t// a cycle. A...
2025-11-24T22:04:49
facebook/react
6b1a2c1d81630a5f385c5be0f758365b63d92eae
de4aad5ba693be099b215b5819b5f25d05051a84
fix(react-compiler): optimize components declared with arrow function and implicit return and `compilationMode: 'infer'` (#31792) fixes https://github.com/facebook/react/issues/31601 https://github.com/facebook/react/issues/31639 cc @josephsavona
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -1008,31 +1008,39 @@ function callsHooksOrCreatesJsx(\n return invokesHooks || createsJsx;\n }\n \n+function isNonNode(node?: t.Expression | null): boolean {\n+ if (!node) {\n+ return true;\n+ }\n+ swit...
2025-03-21T23:46:02
electron/electron
7ab032f5940cc7bf6189163d130b284516d16bc0
2493e530d0ad2b68091e4388352e6c1ab6491c7d
fix: white window flicker on window creation (#47022)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -37,6 +37,7 @@\n #include \"shell/common/options_switches.h\"\n #include \"ui/aura/window_tree_host.h\"\n #include \"ui/base/hit_test.h\"\n+#include \"ui/compositor/compositor.h\"\n #include \"ui/display/screen.h\"\n #include \"ui/gfx/image/imag...
2025-05-10T23:24:35
nodejs/node
57bc1778a3758d1a8a1bc2884c0de0b564d6c577
0f58a3d0cbe2e6c17325665359b6b56a4d52f351
repl: fix REPL completion under unary expressions PR-URL: https://github.com/nodejs/node/pull/59744 Fixes: https://github.com/nodejs/node/issues/59735 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "lib/repl.js", "patch": "@@ -1744,6 +1744,16 @@ function findExpressionCompleteTarget(code) {\n return findExpressionCompleteTarget(lastDeclarationInitCode);\n }\n \n+ // If the last statement is an expression statement with a unary operator (delete, typeof, etc.)\n+ // we want to extract ...
2025-09-05T17:37:04
golang/go
2b8dbb35b0d6a5601ae9b6f1d1de106774251214
21ebed0ac0a3f733811bea2355ed85d3b1bf6fbd
crypto,testing/cryptotest: ignore random io.Reader params, add SetGlobalRandom First, we centralize all random bytes generation through drbg.Read. The rest of the FIPS 140-3 module can't use external functions anyway, so drbg.Read needs to have all the logic. Then, make sure that the crypto/... tree uses drbg.Read (o...
[ { "path": "api/next/70942.txt", "patch": "@@ -0,0 +1 @@\n+pkg testing/cryptotest, func SetGlobalRandom(*testing.T, uint64) #70942", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/godebug.md", "patch": "@@ -178,6 +178,11 @@ includes these key/value pairs in...
2025-09-15T16:58:04
vercel/next.js
0866832665da1b7fbd51e5ae6c8153028288340c
78bc2bad8be1f7e11a8cbe76bc8175fb7ee781ae
refactor: migrate to typed accessors and remove CachedDataItem adapter (#88397) Adopt the new generated accessor methods in turbo-tasks-backend. Remove the CachedDataItem enum and related support macros. This new approach is more ergonomic, memory efficient, and generates slightly smaller serialized payloads. Fro...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/counter_map.rs", "patch": "@@ -106,15 +106,7 @@ impl<K, V> CounterMap<K, V> {\n {\n self.0.get(key)\n }\n- // TODO(lukesandberg): this is just here for the CachedDataItem adaptor layer, can be removed\n- // once that is gone.\...
2026-01-22T01:53:40
electron/electron
10e4f9ad373bd29c61f5ed20238a308687e882ff
b9f0aebb2f54d4f6ea547a39278cf595e880ba90
feat: enable secondary label for macOS menu (#46887) * feat: enable secondary label for macOS menu * Update shell/browser/ui/cocoa/electron_menu_controller.mm Co-authored-by: Robo <hop2deep@gmail.com> * fix for lint * update docs for sublabel --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "docs/api/menu-item.md", "patch": "@@ -19,7 +19,7 @@ See [`Menu`](menu.md) for examples.\n * `type` string (optional) - Can be `normal`, `separator`, `submenu`, `checkbox` or\n `radio`.\n * `label` string (optional)\n- * `sublabel` string (optional)\n+ * `sublabel` string (optional) _mac...
2025-05-09T16:05:26
nodejs/node
8e2b093c0793768498db6fa6f73da13d88db78c1
fdef0725de03a719c78757bd9aae2b01e4bc7863
url: add err.input to ERR_INVALID_FILE_URL_PATH Otherwise there's no information from the error about what exactly is the invalid URL. PR-URL: https://github.com/nodejs/node/pull/59730 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "doc/api/errors.md", "patch": "@@ -1996,6 +1996,9 @@ A Node.js API that consumes `file:` URLs (such as certain functions in the\n [`fs`][] module) encountered a file URL with an incompatible path. The exact\n semantics for determining whether a path can be used is platform-dependent.\n \n+The thro...
2025-09-05T17:03:16
vercel/next.js
78bc2bad8be1f7e11a8cbe76bc8175fb7ee781ae
21fcfb01ac21c596a9109a4deeb2b39a355a53fd
Turbopack: Use webpki-root-certs in addition to rustls-platform-verifier on Linux for bare-bones Linux images without root CA stores (#88869) This should fix the user-reported issue here: https://github.com/vercel/next.js/pull/88290#issuecomment-3762940063 That issue occurs when building with bare-bones docker images...
[ { "path": "Cargo.lock", "patch": "@@ -610,7 +610,7 @@ dependencies = [\n \"bitflags 2.9.1\",\n \"cexpr\",\n \"clang-sys\",\n- \"itertools 0.10.5\",\n+ \"itertools 0.12.1\",\n \"lazy_static\",\n \"lazycell\",\n \"log\",\n@@ -4641,7 +4641,7 @@ version = \"0.50.3\"\n source = \"registry+https://github.co...
2026-01-22T01:18:28
golang/go
a3fb92a7100f3f2824d483ee0cbcf1264584b3e4
0c747b7aa757da0a0a0ac7b2b5834dca84c7c019
runtime/secret: implement new secret package Implement secret.Do. - When secret.Do returns: - Clear stack that is used by the argument function. - Clear all the registers that might contain secrets. - On stack growth in secret mode, clear the old stack. - When objects are allocated in secret mode, mark them and t...
[ { "path": "doc/next/6-stdlib/1-secret.md", "patch": "@@ -0,0 +1,20 @@\n+### New secret package\n+\n+<!-- https://go.dev/issue/21865 --->\n+\n+The new [secret](/pkg/runtime/secret) package is available as an experiment.\n+It provides a facility for securely erasing temporaries used in\n+code that manipulates...
2025-09-25T16:26:03
nodejs/node
cfcb355ee0311afd4794b57161e4859709476119
538186b84fb45ed725ea3d6353ec2353253e3ccd
doc: fix missing links in the `errors` page PR-URL: https://github.com/nodejs/node/pull/59427 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -2183,8 +2183,8 @@ contains the URL that failed to parse.\n \n ### `ERR_INVALID_URL_PATTERN`\n \n-An invalid URLPattern was passed to the [WHATWG][WHATWG URL API] \\[`URLPattern`\n-constructor]\\[`new URLPattern(input)`] to be parsed.\n+An invalid URLPattern was p...
2025-09-05T04:38:43
electron/electron
8ecd731e96ad47078733437e38ecb8ddc6c689ab
75cf8ea96d6a81525c9e1b097e2bcba488a1f83b
fix: webview crash on focus (#46979)
[ { "path": "patches/chromium/.patches", "patch": "@@ -145,3 +145,4 @@ fix_enable_wrap_iter_in_string_view_and_array.patch\n fix_linter_error.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n+make_focus_methods_in_webcontentsviewchildf...
2025-05-09T15:56:22
rust-lang/rust
4a439b640fdc6d09437b5131a3809efbaddabbfa
bcf3d36c997dd9b5db4bb7f40cb91dd4cf46a305
Inline and remove `DepGraphData::try_mark_parent_green`. It has a single call site. And also remove all the `debug!` calls that clutter up the code. The end result is much easier to read, with `try_mark_previous_green` now recursively calling itself directly, instead of indirectly via `try_mark_parent_green`.
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -18,7 +18,7 @@ use rustc_macros::{Decodable, Encodable};\n use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};\n use rustc_session::Session;\n use rustc_span::Symbol;\n-use tracing::{debug, instrument};\n+use tracing::instrumen...
2026-03-20T06:09:07
facebook/react
daee08562ccf5abf7108b63f274f5ca669ee7dd5
ab693a926f13cc2c4c4a3ab19d5405471f87236b
[activity] remove ref for now (#32645) Followup from https://github.com/facebook/react/pull/32499 Manual mode is unused and has some bugs such as revealing hidden boundaries when manually toggling. We also want to change how manual mode works, and do some refactors to Activity to make it easier to support. For now we...
[ { "path": "packages/react-reconciler/src/ReactFiber.js", "patch": "@@ -110,10 +110,6 @@ import {\n REACT_ACTIVITY_TYPE,\n } from 'shared/ReactSymbols';\n import {TransitionTracingMarker} from './ReactFiberTracingMarkerComponent';\n-import {\n- detachOffscreenInstance,\n- attachOffscreenInstance,\n-} fro...
2025-03-21T18:44:02
vercel/next.js
8fe8ff79157a675b56259a8eaf2d16fc1647b254
f263c5622d0a48ddac1fc8e88d9f396f24a818e7
Turbopack: Tweak retry loop for link creation to try to fix os error 80 on Windows (#88669) Though I've been unable to reproduce the issue (prior PRs in this stack are my attempts at that), I believe this *should* fix the OS Error 80 ([`ERROR_FILE_EXISTS`](https://learn.microsoft.com/en-us/windows/win32/debug/system-e...
[ { "path": "Cargo.lock", "patch": "@@ -9544,6 +9544,7 @@ dependencies = [\n \"serde_path_to_error\",\n \"sha2\",\n \"tempfile\",\n+ \"thiserror 1.0.69\",\n \"tokio\",\n \"tracing\",\n \"triomphe 0.1.12\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "turbopac...
2026-01-22T01:17:42
electron/electron
75cf8ea96d6a81525c9e1b097e2bcba488a1f83b
376634c75a5cae443c664f7369480a589427aa81
fix: restore previous Windows screenshotting (#47020) Fixes https://github.com/electron/electron/issues/45990 We previously made a change in https://github.com/electron/electron/pull/45868 to fix content protection being lost on hide and re-show. However, this cause a breaking change where protected windows were made...
[ { "path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc", "patch": "@@ -126,6 +126,16 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n return views::DesktopWindowTreeHostWin::HandleMouseEvent(event);\n }\n \n+void ElectronDesktopWindowTreeHostWin::Hand...
2025-05-09T14:38:27
facebook/react
e1e740717ba85597f03fd837a36c7bab5803a0d2
ac799e569d5899c67d72a3e9af5c18b0672eb998
Force layout before startViewTransition (#32699) This works around this Safari bug. https://bugs.webkit.org/show_bug.cgi?id=290146 This unfortunate because it may cause additional layouts if there's more updates to the tree coming by manual mutation before it gets painted naturally. However, we might end up wanting t...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1669,6 +1669,12 @@ function customizeViewTransitionError(\n return error;\n }\n \n+/** @noinline */\n+function forceLayout(ownerDocument: Document) {\n+ // This function exists to trick minifiers to not remove this u...
2025-03-21T14:05:31
nodejs/node
3ffc3d73ac75cf85f2c2ab57fa8361431ca07102
2258f22672a084ea1de6354bbc3b69c218654e20
esm: fix missed renaming in ModuleJob.runSync https://redirect.github.com/nodejs/node/pull/59675 missed a case when renaming .async to .hasAsyncGraph. This fixes that and add a test that would previously crash with the missed rename. PR-URL: https://github.com/nodejs/node/pull/59724 Refs: https://github.com/nodejs/no...
[ { "path": "lib/internal/modules/esm/module_job.js", "patch": "@@ -335,7 +335,7 @@ class ModuleJob extends ModuleJobBase {\n const parentFilename = urlToFilename(parent?.filename);\n this.module.hasAsyncGraph ??= this.module.isGraphAsync();\n \n- if (this.module.async && !getOptionValue('--e...
2025-09-04T10:01:32
golang/go
0c747b7aa757da0a0a0ac7b2b5834dca84c7c019
0f6397384b583a18bae90421a71b6abad39a437f
go/build/constraint: use strings.Builder instead of for { str+=str } (This works around a bug in the stringsbuilder modernizer.) For #76476 Change-Id: I1cb8715fd79c0363cb9c159686eaeb3482c93228 Reviewed-on: https://go-review.googlesource.com/c/go/+/724721 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Byp...
[ { "path": "src/go/build/constraint/expr.go", "patch": "@@ -515,18 +515,18 @@ func PlusBuildLines(x Expr) ([]string, error) {\n \t// Prepare the +build lines.\n \tvar lines []string\n \tfor _, or := range split {\n-\t\tline := \"// +build\"\n+\t\tvar line strings.Builder\n+\t\tline.WriteString(\"// +build\")...
2025-11-26T22:53:04
vercel/next.js
f263c5622d0a48ddac1fc8e88d9f396f24a818e7
4674a4358739f2e203a445a33bc3672fc499f615
Turbopack: Various cleanup for turbo-tasks-fs, mostly retry logic and string formatting (#88668) - https://github.com/vercel/next.js/pull/87661 removed the `tokio::task::spawn_blocking` call from `retry_blocking`, so we can simplify things a lot by removing the `Send + 'static` bounds, and eliminate a bunch of cloning...
[ { "path": "turbopack/crates/turbo-tasks-fs/src/lib.rs", "patch": "@@ -39,7 +39,7 @@ use std::{\n fmt::{self, Debug, Display, Formatter},\n fs::FileType,\n future::Future,\n- io::{self, BufRead, BufReader, ErrorKind, Read},\n+ io::{self, BufRead, BufReader, ErrorKind, Read, Write as _},\n ...
2026-01-22T00:43:20
facebook/react
0962f684a066df4fd2a7db7489cb1984799ad674
b88898605427d1e6bb665d7c9261a9be180e5abd
[compiler][bugfix] Don't insert hook guards in retry pipeline (#32665) Fixing bug from https://github.com/facebook/react/pull/32164 -- prior to this PR, we inserted hook guards even for functions that bailed out of compilation.
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -451,6 +451,12 @@ export function compileProgram(\n pass.code,\n ),\n };\n+ if (\n+ !compileResult.compiledFn.hasFireRewrite &&\n+ !compileResult.compiledF...
2025-03-20T21:25:08
electron/electron
376634c75a5cae443c664f7369480a589427aa81
8e8d3a4f3e1fed290f279c5a844593db0417cd1f
feat: add support for `--experimental-network-inspection` (#46690) * feat: add support for `--experimental-network-inspection` * docs: fix minor formatting issues visible on both GH[1] and the docs site[2] [1] https://github.com/electron/electron/blob/main/docs/api/command-line-switches.md#nodejs-flags [2] https://...
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -254,7 +254,7 @@ Electron supports some of the [CLI flags][node-cli] supported by Node.js.\n \n **Note:** Passing unsupported command line switches to Electron when it is not running in `ELECTRON_RUN_AS_NODE` will have no effect.\n \n-### `--inspec...
2025-05-09T13:44:14
nodejs/node
2258f22672a084ea1de6354bbc3b69c218654e20
3903ee8cf3da6961eb3f5939a84235fa12f8d7a3
test_runner: fix todo inheritance PR-URL: https://github.com/nodejs/node/pull/59721 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-B...
[ { "path": "lib/internal/test_runner/test.js", "patch": "@@ -647,7 +647,7 @@ class Test extends AsyncResource {\n this.expectedAssertions = plan;\n this.cancelled = false;\n this.skipped = skip !== undefined && skip !== false;\n- this.isTodo = todo !== undefined && todo !== false;\n+ this.i...
2025-09-04T09:35:48
vercel/next.js
4674a4358739f2e203a445a33bc3672fc499f615
aa8754c3f4095781402e46fd3ef550cc4a50b527
Turbopack: Make the priority_runner testcase deterministic (#88651) # What Fixes the `test_mixed_cpu_bound_and_waiting_tasks` to avoid flakes. # Why The `test_mixed_cpu_bound_and_waiting_tasks` was non-deterministic and relied on thread scheduling order. The previous test relied on timing-based synchroniza...
[ { "path": "turbopack/crates/turbo-tasks/src/priority_runner.rs", "patch": "@@ -389,7 +389,11 @@ impl Future for JoinHandle {\n \n #[cfg(test)]\n mod tests {\n- use std::{sync::Arc, thread::sleep, time::Duration};\n+ use std::{\n+ sync::{Arc, Barrier},\n+ thread::sleep,\n+ time::Du...
2026-01-22T00:34:39
golang/go
0f6397384b583a18bae90421a71b6abad39a437f
992ad55e3dcea4bd017d618d759cb9cd3529f288
go/types: relax NewSignatureType for append(slice, str...) CL 688815 contained a partial fix for the reported bug, but NewSignatureType continued to panic. This change relaxes it to permit construction of the type "func([]byte, B) []byte" where "type B []byte". We must do so because a client may instantiate the type "...
[ { "path": "src/cmd/compile/internal/types2/signature.go", "patch": "@@ -28,17 +28,28 @@ type Signature struct {\n \trecv *Var // nil if not a method\n \tparams *Tuple // (incoming) parameters from left to right; or nil\n \tresults *Tuple // (outgoing) results from left to ri...
2025-07-21T18:35:08
facebook/react
5f4c5c920fb454f6b8375bdcd4045eaa82e70928
112224d8d24b127efa1e680403cca2289c1a261b
[compiler] Validate static components React uses function identity to determine whether a given JSX expression represents the same type of component and should reconcile (keep state, update props) or replace (teardown state, create a new instance). This PR adds off-by-default validation to check that developers are no...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -102,6 +102,7 @@ import {optimizePropsMethodCalls} from '../Optimization/OptimizePropsMethodCalls\n import {transformFire} from '../Transform';\n import {validateNoImpureFunctionsInRender} from '../Validation/...
2025-03-20T18:02:02
nodejs/node
a87f1c140ed24deeaf4f512b2f8f3037556bf9a2
b8fa294994210f8bedb9de2b7fba292bae0b7ae2
build: fix getting OpenSSL version on Windows Node.js on Windows is built with `clang`, not `gcc`. PR-URL: https://github.com/nodejs/node/pull/59609 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "configure.py", "patch": "@@ -20,9 +20,9 @@\n original_argv = sys.argv[1:]\n \n # gcc and g++ as defaults matches what GYP's Makefile generator does,\n-# except on OS X.\n-CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'gcc')\n-CXX = os.environ.get('CXX', 'c++' if sys.platform == ...
2025-09-04T09:28:24
vercel/next.js
917ff14ce2a1dc60913dab436e8bddb8952ae93b
7026785ff128efa2debd1b65f1008f3dc7f62a96
Turbopack: Add a stress test / fuzzer that tries creating many symlinks in a tight loop (#88667) In an attempt to reproduce https://github.com/vercel/next.js/discussions/88382, this tries creating and updating a bunch of symlinks/junction points in a tight loop with some parallelism. However, I've been unable to repro...
[ { "path": "Cargo.lock", "patch": "@@ -9535,6 +9535,7 @@ dependencies = [\n \"mime\",\n \"notify\",\n \"parking_lot\",\n+ \"rand 0.9.0\",\n \"regex\",\n \"rstest\",\n \"rustc-hash 2.1.1\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "turbopack/crates/turbo-t...
2026-01-21T21:04:38
electron/electron
8e8d3a4f3e1fed290f279c5a844593db0417cd1f
2cbd968da5f20609f43db440ce9de3b0c947e026
fix: use-after-move of bus connection in xdg portal detection (#47008)
[ { "path": "shell/browser/ui/file_dialog_linux_portal.cc", "patch": "@@ -86,8 +86,9 @@ void CheckPortalAvailabilityOnBusThread() {\n << (g_portal_available ? \"yes\" : \"no\");\n flag->Set();\n bus->ShutdownAndBlock();\n+ bus.reset();\n },\n- ...
2025-05-09T09:32:08
facebook/react
87d7e4c55be7fea5efd1e567d52e943ad5d3133d
3bcf8c23debf0c0c746ed11801fa1fe64dfb0159
[ci] Fail on cache miss (#32686) Since we use a centralized cache we should fail subsequent steps if the child jobs are unable to restore the cache from the first 2 jobs. Also fix some incorrect hashes used for the fixture tests. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com)...
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -147,6 +147,7 @@ jobs:\n path: |\n **/node_modules\n key: runtime-node_modules-v6-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }}\n+ fail-on-cache-miss: true\n - name: Ensu...
2025-03-20T16:22:06
golang/go
992ad55e3dcea4bd017d618d759cb9cd3529f288
3fd9cb1895d37682096cde4229e45bea1428dfbe
crypto/tls: support crypto.MessageSigner private keys Fixes #75656 Change-Id: I6bc71c80973765ef995d17b1450ea2026a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/724820 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Nicholas Husin <husin@google.com> Reviewed-by: Roland Shoemaker <roland@...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/tls/75656.md", "patch": "@@ -0,0 +1,2 @@\n+If [Certificate.PrivateKey] implements [crypto.MessageSigner], its SignMessage\n+method is used instead of Sign in TLS 1.2 and later.", "additions": 2, "deletions": 0, "language": "Markdown" }, { "pat...
2025-11-26T20:11:35
nodejs/node
5600c0eb4094c78b833666840561242dd24d618b
5b32bb1573dace2dd058c05ac4fab1e4e446c775
src: fix build on NetBSD Include missing cmath.h header. Fixes: https://github.com/nodejs/node/issues/59714 PR-URL: https://github.com/nodejs/node/pull/59718 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Re...
[ { "path": "src/tracing/traced_value.cc", "patch": "@@ -9,6 +9,7 @@\n #include <unicode/utypes.h>\n #endif\n \n+#include <cmath>\n #include <sstream>\n \n #include \"node_metadata.h\"", "additions": 1, "deletions": 0, "language": "Unknown" } ]
2025-09-04T08:00:30
facebook/react
ff8f6f21f756c81fba284557357eb6e6ce765149
19176e3c08dd67879fa134c9de172fcd53df841a
[ci] Fix Will commit these changes www step (#32681) Unlike the fbsource version of the step, www doesn't add any changes so the `force` input doesn't actually work
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -246,8 +246,8 @@ jobs:\n - name: Will commit these changes\n if: inputs.force == true || steps.check_should_commit.outputs.should_commit == 'true'\n run: |\n- echo \":\"\n- git status -u\n+ ...
2025-03-19T22:13:06
golang/go
3fd9cb1895d37682096cde4229e45bea1428dfbe
3353c100bb97954edc11c1bc07fd07db9d4bc567
cmd/compile: fix bloop get name logic This CL change getNameFrom impl to pattern match addressible patterns. Change-Id: If1faa22a3a012d501e911d8468a5702b348abf16 Reviewed-on: https://go-review.googlesource.com/c/go/+/724180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Revi...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -42,40 +42,42 @@ import (\n \t\"cmd/compile/internal/reflectdata\"\n \t\"cmd/compile/internal/typecheck\"\n \t\"cmd/compile/internal/types\"\n-\t\"fmt\"\n+\t\"cmd/internal/src\"\n )\n \n // getNameFromNode tries to iteratively peel down the n...
2025-11-25T01:37:13
electron/electron
a8695d4387b128729ed8a80984cf10f543c37df3
924a8da940ec0acefeb6d43e74f5669a8704d159
chore: bump chromium to 138.0.7166.0 (main) (#46975) * chore: bump chromium in DEPS to 138.0.7165.0 * 6492127: Add new less invasive context menu mode for mobile interesttarget https://chromium-review.googlesource.com/c/chromium/src/+/6492127 * chore: fixup patch indices --------- Co-authored-by: electron-roller[...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7164.0',\n+ '138.0.7165.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-07T17:04:15
nodejs/node
35053d82299d1b31627664c80f045102c4bf06b2
737b42e4eeaf975ae11d15887898fb99f0e8da1c
build: fix 'implicit-function-declaration' on OpenHarmony platform PR-URL: https://github.com/nodejs/node/pull/59547 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@ho...
[ { "path": "deps/uvwasi/uvwasi.gyp", "patch": "@@ -28,7 +28,7 @@\n 'include_dirs': ['include']\n },\n 'conditions': [\n- [ 'OS==\"linux\"', {\n+ [ 'OS==\"linux\" or OS==\"openharmony\"', {\n 'defines': [\n '_GNU_SOURCE',\n '_POSIX_C_SOURCE=2...
2025-09-02T16:27:04
facebook/react
19176e3c08dd67879fa134c9de172fcd53df841a
d16c26da40c96704e24b43832d2f7057f586c415
[ci] Use correct revision for Meta builds (#32680) There was a bug previously in our commit artifacts step where the emitted REVISION hash would reference the commit on the builds branch rather than from `main`. Given that our internal manual sync script also does this, let's align them both to always reference the c...
[ { "path": ".github/workflows/runtime_commit_artifacts.yml", "patch": "@@ -151,9 +151,9 @@ jobs:\n ls -R ./compiled-rn\n - name: Add REVISION files\n run: |\n- echo ${{ github.sha }} >> ./compiled/facebook-www/REVISION\n+ echo ${{ inputs.commit_sha || github.event.wo...
2025-03-19T21:24:43
vercel/next.js
d23af53268d062ff70b7c12322750b85ed3a76ba
c986bcccf166a89861bbaecd69823baf3e8a2b40
Turbopack: Use a real file entrypoint for Workers (and SharedWorkers) (#88602) # What Closes https://github.com/vercel/next.js/issues/84782 Closes https://github.com/vercel/next.js/issues/74842 Closes https://github.com/vercel/next.js/issues/82520 Closes PACK-3723 Replace blob URLs for web workers with re...
[ { "path": "test/e2e/app-dir/worker/app/shared-worker.ts", "patch": "@@ -0,0 +1,8 @@\n+// SharedWorkers use onconnect to handle incoming connections\n+let count = 0\n+self.addEventListener('connect', function (e: MessageEvent) {\n+ const port = e.ports[0]\n+ import('./worker-dep').then((mod) => {\n+ por...
2026-01-21T17:08:54
golang/go
3353c100bb97954edc11c1bc07fd07db9d4bc567
301d9f9b52b9b5dbc57151f680a64d1bf85e6d43
cmd/go: remove experiment checks for compile -c There's a comment that we should test that compile -c is compatible with the fieldtrack and preemptibleloops experiments and then remove the check disabling -c when those experiments are enabled. I tested this and the tests pass with fieldtrack (with the exception of on...
[ { "path": "src/cmd/go/internal/work/build.go", "patch": "@@ -238,8 +238,6 @@ See also: go install, go get, go clean.\n \t`,\n }\n \n-const concurrentGCBackendCompilationEnabledByDefault = true\n-\n func init() {\n \t// break init cycle\n \tCmdBuild.Run = runBuild", "additions": 0, "deletions": 2, ...
2025-11-26T15:30:34
nodejs/node
737b42e4eeaf975ae11d15887898fb99f0e8da1c
961554c89dd2793a43e7c8e2a2e5768c7d0b2b73
src: fix race on process exit and off thread CA loading When calling `process.exit()` or on uncaught exceptions as soon as the process starts, the process will try to terminate immediately. In this case, there could be a race condition on the unfinished off-thread system CA loader which tries to access the OpenSSL API...
[ { "path": "src/api/environment.cc", "patch": "@@ -1,4 +1,7 @@\n #include <cstdlib>\n+#if HAVE_OPENSSL\n+#include \"crypto/crypto_util.h\"\n+#endif // HAVE_OPENSSL\n #include \"env_properties.h\"\n #include \"node.h\"\n #include \"node_builtins.h\"\n@@ -1004,6 +1007,11 @@ void DefaultProcessExitHandlerInter...
2025-09-02T10:19:25
facebook/react
d16c26da40c96704e24b43832d2f7057f586c415
a8c155cab91d4a33d06a904bfc23aadacfba8383
[ci] Specify if-no-files-found on actions/upload-artifact@v4 (#32679) Defaults to warn, but since some steps require these artifacts to be uploaded we specify an error if its not found. Some other steps like playwright test-results are only uploaded on failure so it's okay to ignore. --- [//]: # (BEGIN SAPLING FOOTER)...
[ { "path": ".github/workflows/compiler_playground.yml", "patch": "@@ -50,3 +50,4 @@ jobs:\n with:\n name: test-results\n path: compiler/apps/playground/test-results\n+ if-no-files-found: ignore", "additions": 1, "deletions": 0, "language": "YAML" }, { ...
2025-03-19T21:22:40
vercel/next.js
c986bcccf166a89861bbaecd69823baf3e8a2b40
3fe7d63f857302d15e753a7a02753eff3fb1f91c
fix: preserve cache behavior for PPR fallback shells with root params (#88556) When generating PPR fallback shells, a cache miss during warmup was being treated as a dynamic hole, so the warmup render never filled new cache entries. This caused root‑param fallback shells (e.g. `/en/blog/[slug]`) to suspend even though...
[ { "path": "packages/next/errors.json", "patch": "@@ -979,5 +979,6 @@\n \"978\": \"Next.js has blocked a javascript: URL as a security precaution.\",\n \"979\": \"invariant: expected %s bytes of postponed state but only received %s bytes\",\n \"980\": \"Failed to load client middleware manifest\",\n- ...
2026-01-21T16:45:07
golang/go
86bbea0cfa72041fb4315eb22099b0bc83caa314
e2cae9ecdf944a1cc5d8803ff8932180858b8ce6
crypto/fips140: add WithoutEnforcement WithoutEnforcement lets programs running under GODEBUG=fips140=only selectively opt out of strict enforcement. This is especially helpful for non-critical uses of cryptography routines like SHA-1 for content addressable storage backends (E.g. git). Fixes #74630 Change-Id: Iabba...
[ { "path": "api/next/74630.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/fips140, func Enforced() bool #74630\n+pkg crypto/fips140, func WithoutEnforcement(func()) #74630", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/crypto/fips140/7463...
2025-11-24T13:08:10
facebook/react
ada8bbbd6aa76bc472863589128833e30cacaef3
e9c3b27b4b86c5030df96d8a1e4228b5341164b0
[eslint-plugin-react-compiler] Fix type error with recommended config (#32666) ## Summary In the recommended configuration for `eslint-plugin-react-compiler`, i.e. `reactCompiler.configs.recommended`, the rule is typed as `string` rather than `eslint.Linter.RuleEntry` or anything assignable thereto, which results in ...
[ { "path": "compiler/packages/eslint-plugin-react-compiler/src/index.ts", "patch": "@@ -25,7 +25,7 @@ const configs = {\n },\n },\n rules: {\n- 'react-compiler/react-compiler': 'error',\n+ 'react-compiler/react-compiler': 'error' as const,\n },\n },\n };", "additions": 1, ...
2025-03-19T18:58:08
nodejs/node
fe1a2e33f5e71787546213f20442dc3173bddde1
dddc4a597288ba30a46bfef762dd22ab732b941e
fs: fix dereference: false on cpSync PR-URL: https://github.com/nodejs/node/pull/59681 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pin...
[ { "path": "src/node_file.cc", "patch": "@@ -3245,8 +3245,8 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n errorno, dereference ? \"stat\" : \"lstat\", nullptr, src.out());\n }\n auto dest_status =\n- dereference ? std::filesystem::symlink_status(dest_path, erro...
2025-08-31T17:30:53
vercel/next.js
a3500c3227de0bda8e34c2a347047e88a524d9da
bed512a381250493a2e2e0f9185c69960c713fd9
[test] Fix deploy test of `cache-components.server-action.test.ts` (#88854) When deployed, the sentinels where showing `at runtime` instead of `at buildtime`. There are two reasons for this: 1. The page sentinel was accidentally rendered in a client component, which causes a hydration mismatch, and the value toggling...
[ { "path": "test/e2e/app-dir/cache-components/app/server-action-inline/form.tsx", "patch": "@@ -1,7 +1,6 @@\n 'use client'\n \n import { ReactNode, useActionState } from 'react'\n-import { getSentinelValue } from '../getSentinelValue'\n \n export function Form({ action }: { action: () => Promise<ReactNode> }...
2026-01-21T16:18:44
facebook/react
c2a196174763e0b4f16ed1c512ed4442b062395e
6584a6eec488a7a155fe2231874aecf178b07a9a
Minor Fixes to View Transition Fixture (#32664) Follow up to #32656. Remove touchAction from SwipeRecognizer. I was under the wrong impression that this was only the touch-action applied to this particular element, but that parents would still win but in fact this blocks the parent from scrolling in the other directi...
[ { "path": "fixtures/view-transition/src/components/Chrome.css", "patch": "@@ -7,3 +7,10 @@ body {\n padding: 0;\n font-family: sans-serif;\n }\n+\n+::view-transition-group(*),\n+::view-transition-image-pair(*),\n+::view-transition-old(*),\n+::view-transition-new(*) {\n+ pointer-events: none;\n+}", ...
2025-03-18T23:20:34
golang/go
e2cae9ecdf944a1cc5d8803ff8932180858b8ce6
623ef2813579c9b52ba4a0335722df4d93566b74
crypto/x509: add ExtKeyUsage.OID method And OIDFromASN1OID for converting between asn1.ObjectIdentifier and OID. Fixes #75325 Change-Id: I3b84dce54346d88aab731ffe30d0fef07b014f04 Reviewed-on: https://go-review.googlesource.com/c/go/+/724761 Reviewed-by: Neal Patel <nealpatel@google.com> Auto-Submit: Roland Shoemaker...
[ { "path": "api/next/75325.txt", "patch": "@@ -0,0 +1,2 @@\n+pkg crypto/x509, func OIDFromASN1OID(asn1.ObjectIdentifier) (OID, error) #75325\n+pkg crypto/x509, method (ExtKeyUsage) OID() OID #75325", "additions": 2, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/...
2025-11-26T17:21:13
nodejs/node
dddc4a597288ba30a46bfef762dd22ab732b941e
494909b4f8f2f10b277140eaf96343d4dc26a115
lib: fix DOMException subclass support PR-URL: https://github.com/nodejs/node/pull/59680 Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/per_context/domexception.js", "patch": "@@ -60,7 +60,6 @@ const disusedNamesSet = new SafeSet()\n .add('NoDataAllowedError')\n .add('ValidationError');\n \n-let DOMExceptionPrototype;\n // The DOMException WebIDL interface defines that:\n // - ObjectGetPrototypeOf(DOMException) =...
2025-08-31T17:20:02
vercel/next.js
71f9bda3cda291eba9aece9ead1708d3c9de349b
d5d760540d2ff2630d5275a30577e51cac8f2620
[ci] Fix Rspack/Turbopack test manifest generation (#88845) The recent change to always run all tests without aborting on failure (#88435) inadvertently broke manifest generation. Previously, test output was emitted for all tests when `NEXT_TEST_CONTINUE_ON_ERROR` was set, but that variable was removed. Now test outpu...
[ { "path": ".github/workflows/integration_tests_reusable.yml", "patch": "@@ -94,6 +94,7 @@ jobs:\n export NEXT_TEST_MODE=${{\n inputs.test_type == 'development' && 'dev' || 'start'\n }}\n+ export NEXT_TEST_EMIT_ALL_OUTPUT=1\n \n ${{ inputs.run_before_test }}\n \n@@ -1...
2026-01-21T15:11:58
golang/go
efe9ad501d94743d87e500a7ba0b1732a89e9afd
ac3369242d3a6d6219fdf1d592effc5e51ddfeb8
go/types, types2: improve printing of []*operand lists (debugging support) Special-case an sprintf argument of []*operand type, similar to what we do for other lists. As a result a list of operands is printed as [a, b, c] rather than [a b c] (default formatting for slices). (We could factor out this code into a gener...
[ { "path": "src/cmd/compile/internal/types2/format.go", "patch": "@@ -23,6 +23,17 @@ func sprintf(qf Qualifier, tpSubscripts bool, format string, args ...any) string\n \t\t\tpanic(\"got operand instead of *operand\")\n \t\tcase *operand:\n \t\t\targ = operandString(a, qf)\n+\t\tcase []*operand:\n+\t\t\tvar b...
2025-11-26T00:26:25
facebook/react
6584a6eec488a7a155fe2231874aecf178b07a9a
86d5ac0882305c5bbff0fd7b40385e7d50d0d2b4
[compiler] Hoist dependencies from functions more conservatively (#32616) Alternative to facebook/react#31584 which sets enableTreatFunctionDepsAsConditional:true` by default. This PR changes dependency hoisting to be more conservative while trying to preserve an optimal "happy path". We assume that a function "is li...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/CollectHoistablePropertyLoads.ts", "patch": "@@ -13,11 +13,13 @@ import {\n BlockId,\n DependencyPathEntry,\n GeneratedSource,\n+ getHookKind,\n HIRFunction,\n Identifier,\n IdentifierId,\n InstructionId,\n InstructionValue,\n...
2025-03-18T22:00:08
nodejs/node
f36de728115d257bcb23723ef3202cdaffc401cd
eefe3b14bfb33f0a14decd687a77bbb00099c054
wasi: fix `clean` target in `test/wasi/Makefile` PR-URL: https://github.com/nodejs/node/pull/59576 Refs: https://www.gnu.org/software/make/manual/make.html#Cleanup Refs: https://www.gnu.org/software/make/manual/make.html#Parallel-Disable Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigi...
[ { "path": "test/wasi/Makefile", "patch": "@@ -12,5 +12,7 @@ wasm/pthread.wasm : c/pthread.c\n wasm/%.wasm : c/%.c\n \t$(CC) $< $(CFLAGS) --target=$(TARGET) --sysroot=$(SYSROOT) -s -o $@\n \n-.PHONY clean:\n+.PHONY: clean\n+.NOTPARALLEL: clean\n+clean:\n \trm -f $(OBJ)", "additions": 3, "deletions": ...
2025-08-30T19:06:03
vercel/next.js
d5d760540d2ff2630d5275a30577e51cac8f2620
1bdb2e20052281c614a8bfef08a6ebb66a546129
Fix deployment test due to data-dpl-id attribute (#88846)
[ { "path": "test/e2e/favicon-short-circuit/favicon-short-circuit.test.ts", "patch": "@@ -28,9 +28,9 @@ describe('favicon-short-circuit', () => {\n expect(res.status).toBe(404)\n expect(res.headers.get('content-type')).toBe('text/html; charset=utf-8')\n \n- // Expect we got the right body.\n+...
2026-01-21T11:29:36
electron/electron
c16ea8d54edc58f9ccd1ab9875a1c49ccc81e8e2
b7ae16271643d08aecfc48c1604c677bf62029c3
fix: printing when no `mediaSize` specified (#46937) fix: printing when no mediaSize specified
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -3133,11 +3133,21 @@ void WebContents::Print(gin::Arguments* args) {\n options.Get(\"duplexMode\", &duplex_mode);\n settings.Set(printing::kSettingDuplexMode, static_cast<int>(duplex_mode));\n \n- // We've already done necessary p...
2025-05-07T00:12:25
facebook/react
86d5ac0882305c5bbff0fd7b40385e7d50d0d2b4
476f53879e80d4ee976ed036a0e8986126fa3117
Revert "Fix:- Improve HOC support and state preservation in React Refresh" (#32214) Reverts facebook/react#30660 I don’t feel confident in the approach. This part of code is supposed to rely on the module bundler behaving as expected. _Maybe_ this is correct but I need to review it closer — it was intentionally _not_...
[ { "path": "packages/react-refresh/src/ReactFreshRuntime.js", "patch": "@@ -146,21 +146,6 @@ function canPreserveStateBetween(prevType: any, nextType: any) {\n if (isReactClass(prevType) || isReactClass(nextType)) {\n return false;\n }\n-\n- if (typeof prevType !== typeof nextType) {\n- return fa...
2025-03-18T19:05:56
golang/go
fb5156a0981c2b89a118695138194e1af162ac8e
b194f5d24a71e34f147c90e4351d80ac75be55de
testing: fix bloop doc This CL deletes the compiler detail part from bloop documentation. Change-Id: I73933707a593d4958e2300416d15e7213f001c3a Reviewed-on: https://go-review.googlesource.com/c/go/+/724800 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chas...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -483,14 +483,12 @@ func (b *B) loopSlowPath() bool {\n // the timer so cleanup code is not measured.\n //\n // Within the body of a \"for b.Loop() { ... }\" loop, arguments to and\n-// results from function calls and assignment receivers within the loop are...
2025-11-26T19:15:51
nodejs/node
67cb0adbc29190a4558378c3d4c22c415cc53a45
5af035503a1621dfac7b3d63e307c16671fc6c8a
test: fix internet/test-dns The `nodejs.org` domain has now two TXT records. Do not verify the exact number of records returned (only their shape), and check that one of them is the SPF. PR-URL: https://github.com/nodejs/node/pull/59660 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee C...
[ { "path": "test/internet/test-dns.js", "patch": "@@ -523,9 +523,9 @@ TEST(function test_resolveTlsa_failure(done) {\n \n TEST(async function test_resolveTxt(done) {\n function validateResult(result) {\n- assert.ok(Array.isArray(result[0]));\n- assert.strictEqual(result.length, 1);\n- assert(resul...
2025-08-30T09:47:38
electron/electron
c4ac192aa464f938f443c74f09ba25fa9dff0aeb
8308ac29c83cce45ad70b5143a8bd170cd1f8553
chore: bump chromium to 138.0.7164.0 (main) (#46948) * chore: bump chromium in DEPS to 138.0.7164.0 * 6508870: Add missing PermissionType mapping and remove default case. https://chromium-review.googlesource.com/c/chromium/src/+/6508870 * chore: fixup patch indices --------- Co-authored-by: electron-roller[bot] <...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7160.0',\n+ '138.0.7164.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-06T18:01:37
vercel/next.js
ca37db9d6d07d2757e69f4588c52eb23e065a9fe
d3de9bce9bd9e4d03673e3b13ec1dc690bf63a0c
Fix `revalidatePath` with params and trailing slash when deployed (#88623)
[ { "path": "packages/next/errors.json", "patch": "@@ -978,5 +978,6 @@\n \"977\": \"maxPostponedStateSize must be a valid number (bytes) or filesize format string (e.g., \\\"5mb\\\")\",\n \"978\": \"Next.js has blocked a javascript: URL as a security precaution.\",\n \"979\": \"invariant: expected %s by...
2026-01-21T07:22:00
facebook/react
476f53879e80d4ee976ed036a0e8986126fa3117
c69a5fc53a5135136668ca878f99b634d2374837
Add getClientRects to fragment instances (#32660) Adds `getClientRects()` to fragment instances with a fixture test case. `Element.getClientRect` returns a collection of `DOMRect`s (see example of multiline span returning two `DOMRect` boxes). `fragmentInstance.getClientRects` here flattens those collections into an a...
[ { "path": "fixtures/dom/src/components/Fixture.js", "patch": "@@ -16,3 +16,7 @@ class Fixture extends React.Component {\n Fixture.propTypes = propTypes;\n \n export default Fixture;\n+\n+Fixture.Controls = function FixtureControls({children}) {\n+ return <div className=\"test-fixture__controls\">{children}...
2025-03-18T17:54:26
golang/go
437d2362ce8ad3e10631aaf90cb4d8c8126d1bac
71f8f031b27502e057c569fef8cd4f2cb9187504
os,internal/poll: don't call IsNonblock for consoles and Stdin windows.IsNonblock can block for synchronous handles that have an outstanding I/O operation. Console handles are always synchronous, so we should not call IsNonblock for them. Stdin is often a pipe, and almost always a synchronous handle, so we should not ...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -451,6 +451,10 @@ func (fd *FD) Init(net string, pollable bool) error {\n \tfd.isFile = fd.kind != kindNet\n \tfd.isBlocking = !pollable\n \n+\tif !pollable {\n+\t\treturn nil\n+\t}\n+\n \t// It is safe to add overlapped handles that also perform I/O...
2025-11-26T09:25:16
nodejs/node
5af035503a1621dfac7b3d63e307c16671fc6c8a
cbabdbf3f246dd0e65cb9262d89719c0a2c36b2f
src: migrate WriteOneByte to WriteOneByteV2 PR-URL: https://github.com/nodejs/node/pull/59634 Fixes: https://github.com/nodejs/node/issues/59555 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Darsh...
[ { "path": "src/node_buffer.cc", "patch": "@@ -1037,8 +1037,11 @@ void IndexOfString(const FunctionCallbackInfo<Value>& args) {\n if (needle_data == nullptr) {\n return args.GetReturnValue().Set(-1);\n }\n- needle->WriteOneByte(\n- isolate, needle_data, 0, needle_length, String::NO_NU...
2025-08-29T22:41:00
vercel/next.js
6138452203337a72d79decbe26d7be0bd36233f4
d2ea7d32061c59cff57704cda4502ac794e71910
[test]: add ability to run test-deploy with pre-existing deployment (#88829) When digging into failing deployment tests, I often will re-run the test itself without wanting to change anything about Next.js or the test application, especially when I suspect a logic bug in the test itself or need to figure out what's ca...
[ { "path": "contributing/core/testing.md", "patch": "@@ -92,6 +92,8 @@ these can be leveraged by prefixing the `pnpm test` command.\n it can be used when not using `pnpm test-dev` or `pnpm test-start` directly.\n Valid test modes can be seen here:\n https://github.com/vercel/next.js/blob/aa664868c102dd...
2026-01-20T22:40:49
electron/electron
206544cbc0e8b98de056eb6aeff65bd97a6b67d4
a5ec3f7476353336b61ab7d7561beca0ebfdfc64
fix: crash on macOS dialog after `window-all-closed` (#46927) fix: crash on dialog after window-all-closed
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -218,7 +218,7 @@ - (void)rotateWithEvent:(NSEvent*)event {\n }\n \n - (NSRect)contentRectForFrameRect:(NSRect)frameRect {\n- if (shell_->has_frame())\n+ if (shell_ && shell_->has_frame())\n return [super contentRectForFrameRect:fra...
2025-05-06T12:47:50
facebook/react
a35aaf704cca9a5db16f5b197e3ac17eb960b72f
3c3696d5548c8a67f2332fd78332b9366abaf2f9
Update ViewTransition fixture to include bigger buttons/swipe (#32656) I made the button a bit bigger and moved the swipe recognizer around the whole screen. Typically these are used around the whole content without any affordances and not as a standalone scrubber. Ideally the swipe would be able to be inside the anim...
[ { "path": "fixtures/view-transition/src/components/Page.css", "patch": "@@ -8,7 +8,16 @@\n }\n \n .swipe-recognizer {\n- width: 200px;\n- border: 1px solid #333333;\n+ width: 300px;\n+ background: #eee;\n border-radius: 10px;\n+ padding: 20px;\n }\n+\n+.button {\n+ background: #000;\n+ color: #fff;...
2025-03-18T13:24:31
golang/go
eb63ef9d6676dc0edb112cd297820306a327017a
06412288cfd31ab365fe8ee6368742dffa759803
runtime: panic if cleanup function closes over cleanup pointer This would catch problems like https://go.dev/cl/696295. Benchmark effect with this CL plus CL 697535: goos: linux goarch: amd64 pkg: runtime cpu: 12th Gen Intel(R) Core(TM) i7-1260P │ /tmp/foo.1 │ /tmp/foo.2 ...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -71,7 +71,14 @@ import (\n // mentions it. To ensure a cleanup does not get called prematurely,\n // pass the object to the [KeepAlive] function after the last point\n // where the object must remain reachable.\n+//\n+//go:nocheckptr\n func AddCleanup[T, S a...
2025-08-22T20:47:42
nodejs/node
a240a9c2229fc9cc780266424047ce3091323561
95bef5af8884a11dd4ba36b665d8b786ef7596b0
doc: update install_tools.bat free disk space Fixes: https://github.com/nodejs/node/issues/59326 PR-URL: https://github.com/nodejs/node/pull/59579 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "tools/msvs/install_tools/install_tools.bat", "patch": "@@ -13,7 +13,7 @@ echo This script will install Python and the Visual Studio Build Tools, necessar\n echo to compile Node.js native modules. Note that Chocolatey and required Windows\n echo updates will also be installed.\n echo.\n-echo This ...
2025-08-29T12:34:55
electron/electron
a5ec3f7476353336b61ab7d7561beca0ebfdfc64
be399f2feed6223d035411b25eb5144800b81fb3
fix: allowed dialog file types with one filter (#46900)
[ { "path": "shell/browser/ui/file_dialog_mac.mm", "patch": "@@ -131,10 +131,6 @@ void SetAllowedFileTypes(NSSavePanel* dialog, const Filters& filters) {\n [file_types_list addObject:content_types_set];\n }\n \n- // Don't add file format picker.\n- if ([file_types_list count] <= 1)\n- return;\n-\n ...
2025-05-06T08:31:00
vercel/next.js
03a1815a533c849cccf25836a45e5e52dbe18467
eb14325ed44c70671ac4d36c2fe2cb9cef67ca34
Inject `<html data-dpl-id>` and don't inline it into JS anymore (#88761) We don't inline `process.env.NEXT_DEPLOYMENT_ID` anymore into browser chunks, and instead read it from `<html data-dpl-id` attribute at runtime. Closes PACK-6538 - [x] ~~Causes a hydration error at the moment.~~ Solved by removing the attribute...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -177,12 +177,10 @@ export function getDefineEnv({\n : isClient\n ? isTurbopack\n ? {\n+ // This is set at runtime by packages/next/src/client/register-deployment-id-global.ts\n 'process.env.NEX...
2026-01-20T16:13:43
facebook/react
3c3696d5548c8a67f2332fd78332b9366abaf2f9
90b511ec7a9f2f3fd2b7f0039d8fc52c23f573a1
Measure Updated ViewTransition Boundaries (#32653) This does the same thing for `measureUpdateViewTransition` that we did for `measureNestedViewTransitions` in https://github.com/facebook/react/pull/32612/commits/e3cbaffef05c7b476c07f7495e06788a9503e636. If a boundary hasn't mutated and didn't change in size, we mark ...
[ { "path": "fixtures/view-transition/src/components/Page.js", "patch": "@@ -77,9 +77,9 @@ export default function Page({url, navigate}) {\n <div>\n <button\n onClick={() => {\n- navigate(show ? '/?a' : '/?b');\n+ navigate(url === '/?b' ? '/?a' : '/?b');\n }}>\n- ...
2025-03-18T01:38:13
nodejs/node
d08a1f96b262b628b273e830b6c80e1af50a6268
fba8e6ab4a59fe608fdd0c171a81924392ea3ec6
doc: fix quic session instance typo PR-URL: https://github.com/nodejs/node/pull/59642 Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/quic.md", "patch": "@@ -438,7 +438,7 @@ added: v23.8.0\n \n The callback to invoke when the path validation is updated. Read/write.\n \n-### `seesion.onsessionticket`\n+### `session.onsessionticket`\n \n <!-- YAML\n added: v23.8.0", "additions": 1, "deletions": 1, "language": ...
2025-08-29T02:24:57
golang/go
06412288cfd31ab365fe8ee6368742dffa759803
03f499ec4602500939a1ed3c540cbd5183c20ce9
runtime: panic on AddCleanup with self pointer For #75066 Change-Id: Ifd555586fb448e7510fed16372648bdd7ec0ab4a Reviewed-on: https://go-review.googlesource.com/c/go/+/697535 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Michael Knyszek <mknyszek@google.com> ...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -84,7 +84,8 @@ func AddCleanup[T, S any](ptr *T, cleanup func(S), arg S) Cleanup {\n \n \t// Check that arg is not equal to ptr.\n \targType := abi.TypeOf(arg)\n-\tif kind := argType.Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {\n+\tkind := argT...
2025-08-20T00:00:29
facebook/react
90b511ec7a9f2f3fd2b7f0039d8fc52c23f573a1
02372952e4f24fa02dcb9b32af26cb2472617cef
fix(react-compiler): implement NumericLiteral as ObjectPropertyKey (#31791)
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -1455,6 +1455,11 @@ function lowerObjectPropertyKey(\n kind: 'identifier',\n name: key.node.name,\n };\n+ } else if (key.isNumericLiteral()) {\n+ return {\n+ kind: 'identifier',\n+ name:...
2025-03-17T23:30:58
electron/electron
b90de7d07ec7db942ce400be0a7142145b2dab3a
946030050608acad808adf4d3c5712f5c154ac15
chore: bump chromium to 138.0.7160.0 (main) (#46915) * chore: bump chromium in DEPS to 138.0.7158.0 * chore: bump chromium in DEPS to 138.0.7160.0 * 6509206: Move Keychain UI suppression code into apple_keychain.cc https://chromium-review.googlesource.com/c/chromium/src/+/6509206 * 6489036: Fix DesktopDataControls...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '138.0.7156.0',\n+ '138.0.7160.0',\n 'node_version':\n 'v22.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-05-05T17:58:40
rust-lang/rust
65335b65fe7611ca36a78e2a0eb6b6ee290d953e
55d9f7cb6c7880dc5e2b75f013666ad01e265d1f
Fix markdown warnings in ui/README.md
[ { "path": "tests/ui/README.md", "patch": "@@ -133,7 +133,7 @@ Runtime panics and error handling generate backtraces to assist in debugging and\n \n This directory was originally meant to contain tests related to time complexity and benchmarking.\n \n-However, only a single test was ever added to this catego...
2026-03-11T23:32:58
nodejs/node
bfcba89cc212b826f3dea07909cdd3898bbd14c1
28225857d7e613fad0909e0345aca25c739cc1fb
test: mark test-inspector-network-fetch as flaky again https://redirect.github.com/nodejs/node/pull/59104 did not fix it and it's still flaky in the CI. Refs: https://github.com/nodejs/reliability/blob/main/reports/2025-08-26.md Refs: https://github.com/nodejs/node/issues/59090 PR-URL: https://github.com/nodejs/node/...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -20,6 +20,8 @@ test-fs-read-stream-concurrent-reads: PASS, FLAKY\n test-snapshot-incompatible: SKIP\n \n [$system==win32]\n+# https://github.com/nodejs/node/issues/59090\n+test-inspector-network-fetch: PASS, FLAKY\n # https://github.com/nodejs/node/iss...
2025-08-28T20:21:07
vercel/next.js
eb14325ed44c70671ac4d36c2fe2cb9cef67ca34
689f6fe38eb9bd62fc8471c03af436680a3d0567
Turbopack: remove deployment id suffix from client reference manifest chunks (#88741) Closes PACK-6539 When `experimental.runtimeServerDeploymentId` is enabled, read the `process.env.NEXT_DEPLOYMENT_ID` and append to the chunks when evaluating the `client-reference-manifest.js` Originally, I tried to do it after the...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -968,6 +968,8 @@ pub struct ExperimentalConfig {\n cache_components: Option<bool>,\n use_cache: Option<bool>,\n root_params: Option<bool>,\n+ runtime_server_deployment_id: Option<bool>,\n+\n // ---\n // UNSUPPORTED\n //...
2026-01-20T15:11:24
golang/go
07b10e97d6552e16534aae51f140771a601ef385
e96094402d55b6a104b642ce2adc76d3753843d9
cmd/go/internal/modcmd: inject modfetch.Fetcher_ into DownloadModule This commit continues the injection of the global Fetcher_ variable into the various function calls that make use of it. The purpose is to prepare for the eventual removal of the global Fetcher_ variable and eliminate global state within the modfetc...
[ { "path": "src/cmd/go/internal/modcmd/download.go", "patch": "@@ -366,25 +366,25 @@ func runDownload(ctx context.Context, cmd *base.Command, args []string) {\n // leaving the results (including any error) in m itself.\n func DownloadModule(ctx context.Context, m *ModuleJSON) error {\n \tvar err error\n-\t_,...
2025-11-24T21:53:11
facebook/react
02372952e4f24fa02dcb9b32af26cb2472617cef
9fde224a53693101a4d15e038d6db37e7a3596ff
Don't auto-start browser in SSR fixtures (#32652) I end up restarting these a lot and it's annoying to have it open another tab each time. The flight fixture already doesn't auto-start.
[ { "path": "fixtures/ssr/package.json", "patch": "@@ -20,7 +20,7 @@\n \"prestart\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n \"prebuild\": \"cp -r ../../build/oss-experimental/* ./node_modules/\",\n \"dev\": \"concurrently \\\"npm run dev:server\\\" \\\"npm run dev:client\\\"\"...
2025-03-17T21:26:00