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
golang/go
996b985008c7615004c0dbe8b031928faff3c993
e67d773034fde21e6f726c4add5eeba5882198ae
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additionally, creating list of STs, which store data to adjacent memory cells allows merging them according to the direction of increase of their addresses. I ...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -320,10 +320,70 @@ func memoryBarrierTest(b *Block) bool {\n \treturn false\n }\n \n+// pairStores merges store instructions.\n+// It collects stores into a buffer where they can be freely reordered.\n+// When encountering an instruction that ca...
2026-03-27T10:15:45
facebook/react
733d3aaf99e30627ec25174da9d39efbaa97dba3
404b38c764cf86e6f2ec42f873bb33ce114256d3
Fix FB_WWW eprh bundle dev guard (#36238) We use FB_WWW bundle to inject internal feature flag values, but need to use NODE guard type because this is a node script -- __DEV__ is breaking internal builds Follow up to https://github.com/facebook/react/pull/35951
[ { "path": "scripts/rollup/build.js", "patch": "@@ -453,7 +453,8 @@ function getPlugins(\n globalName,\n filename,\n moduleType,\n- bundle.wrapWithModuleBoundaries\n+ bundle.wrapWithModuleBoundaries,\n+ bundle.wrapWithNodeDevGuard\n ...
2026-04-08T20:12:35
golang/go
7c5ab4118014acd1e7c0fc67028186a4985c0a28
5d6aa23e5b6151d25955a512532383c28c745e18
net: document LookupSRV cname return value Document that the first return value of LookupSRV is the canonical name of the DNS target that was looked up, which may differ from the input name due to CNAME records. Fixes #49982 Change-Id: I574e0f5cdc381d3d9b11b5bd7a5acbea2c9e185d GitHub-Last-Rev: 9c756d48d55587f373c7cf...
[ { "path": "src/net/lookup.go", "patch": "@@ -487,6 +487,11 @@ func (r *Resolver) LookupCNAME(ctx context.Context, host string) (string, error)\n // publishing SRV records under non-standard names, if both service\n // and proto are empty strings, LookupSRV looks up name directly.\n //\n+// The returned cnam...
2026-02-09T02:43:54
nodejs/node
ff080948666f28fbd767548d26bea034d30bc277
43d5058056668b456754755d3f9c100d5ef1c193
doc: remove extensionless CJS exception for type:module packages Remove the documented exception that extensionless files in type: "module" packages are recognized as CommonJS when included via require(). This exception conflicted with the ESM resolution specification which states that extensionless files within a pac...
[ { "path": "doc/api/modules.md", "patch": "@@ -76,10 +76,11 @@ Node.js has two module systems: CommonJS modules and [ECMAScript modules][].\n \n By default, Node.js will treat the following as CommonJS modules:\n \n-* Files with a `.cjs` extension;\n+* Files with a `.cjs` extension.\n \n-* Files with a `.js`...
2026-04-08T08:50:21
vercel/next.js
fd3404504e7bbbb701e03562928c4c1c72439995
de353278be4a6208e37f4a4c9f6f17980e3346ee
Fix React18 tests for unstable_io (#92543) The last attempt to skip tests doesn't work because there is a failure to build. This strategy takes the fixture and only conditionally calls `use` if it exists
[ { "path": "test/e2e/app-dir/unstable-io/fixtures/cache-components/pages/pages-use.tsx", "patch": "@@ -2,7 +2,9 @@ import React from 'react'\n import { unstable_io } from 'next/cache'\n \n export default function PagesUse() {\n- React.use(unstable_io())\n+ if (typeof React.use === 'function') {\n+ React...
2026-04-08T22:16:03
electron/electron
4dfada86ce368583f83d09de2949e77f652f09d0
df81a1d4acd78062f8afc4621133f8be2847efee
fix: menu items not cleaned up after rebuild (#50806) Menu was holding a SelfKeepAlive to itself from construction, so any Menu that was never opened (e.g. an application menu replaced before being shown) stayed pinned in cppgc forever. Repeated calls to Menu.setApplicationMenu leaked every prior Menu along with its m...
[ { "path": "shell/browser/api/electron_api_menu.cc", "patch": "@@ -276,6 +276,7 @@ void Menu::OnMenuWillClose() {\n }\n \n void Menu::OnMenuWillShow() {\n+ keep_alive_ = this;\n Emit(\"menu-will-show\");\n }\n ", "additions": 1, "deletions": 0 }, { "path": "shell/browser/api/electron_api_m...
2026-04-09T02:56:39
facebook/react
808e7ed8e26c07dc15c088105673b639760477f9
0c44b96e97c595198f30bdbe0f637f92ed74ed95
[compiler] Fix set-state-in-effect false negative with NewExpression default param (#36107) ## Summary Fixes #36101 When a component function has a destructured prop with a `NewExpression` default value (e.g. `{ value = new Number() }`), the React Compiler bails out during HIR construction when trying to lower the d...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -3268,6 +3268,21 @@ function isReorderableExpression(\n )\n );\n }\n+ case 'NewExpression': {\n+ const newExpr = expr as NodePath<t.NewExpression>;\n+ const callee = newExpr.get('call...
2026-04-08T18:52:49
golang/go
5d6aa23e5b6151d25955a512532383c28c745e18
352d76b2912b20ede8b3238fc2ed7b697bc2695b
cmd/go: use MkdirTemp to create temp directory for "go bug" Don't use a predictable, potentially attacker-controlled filename in /tmp. Fixes #78584 Fixes CVE-2026-39819 Change-Id: I72116aa6dd8fa50f65b6dc0292a15a8c6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/763882 Reviewed-by: Nicholas Husin <husi...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -184,14 +184,14 @@ func firstLine(buf []byte) []byte {\n // printGlibcVersion prints information about the glibc version.\n // It ignores failures.\n func printGlibcVersion(w io.Writer) {\n-\ttempdir := os.TempDir()\n-\tif tempdir == \"\" {\n+\ttempdi...
2026-04-08T16:55:54
nodejs/node
68e5f873aaf084cd627a9e6bf0fe6e4e76d0208d
511a57a17960013de48f4c6c3faf9a12e8b09e46
stream: propagate destruction in duplexPair Ensure destroying one side of a duplexPair triggers destruction of the other side via process.nextTick(). Only the destruction signal is sent to avoid breaking changes. Fixes: https://github.com/nodejs/node/issues/61015 PR-URL: https://github.com/nodejs/node/pull/61098 Revi...
[ { "path": "lib/internal/streams/duplexpair.js", "patch": "@@ -50,13 +50,37 @@ class DuplexSide extends Duplex {\n this.#otherSide.on('end', callback);\n this.#otherSide.push(null);\n }\n+\n+\n+ _destroy(err, callback) {\n+ const otherSide = this.#otherSide;\n+\n+ if (otherSide !== null && !...
2026-04-07T17:51:49
rust-lang/rust
56f43b5142ff41a450e85ff241778fe45eb988e2
574d8774b9e34c7d9fb07e81caaa67ccc382a0a0
Parenthesize block-like expressions in call callee of pretty printer When a macro expands to a call whose callee is a block (or other "complete" expression like `match`, `if`, `loop`), the AST pretty printer emits the callee without parentheses. In statement position the closing brace ends the expression and the argum...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs", "patch": "@@ -235,7 +235,15 @@ impl<'a> State<'a> {\n // In order to call a named field, needs parens: `(self.fun)()`\n // But not for an unnamed field: `self.0()`\n ast::ExprKind::Field(_, name) => !name.is_...
2026-04-08T13:52:01
electron/electron
df81a1d4acd78062f8afc4621133f8be2847efee
c3e3958668cbc580fffed29bee44b74f056947ff
test: add `desktopCapturer` icon validation (#50261) * chore: testing of desktopCapturer can run on arm * fix: DesktopMediaListCaptureThread crash Fixed a crash when Windows calls ::CoCreateInstance() in the DesktopMediaListCaptureThread before COM is initialized. * test: added test for desktopCapturer fetchWindowI...
[ { "path": "patches/chromium/.patches", "patch": "@@ -150,3 +150,4 @@ fix_use_fresh_lazynow_for_onendworkitemimpl_after_didruntask.patch\n fix_pulseaudio_stream_and_icon_names.patch\n fix_fire_menu_popup_start_for_dynamically_created_aria_menus.patch\n feat_allow_enabling_extensions_on_custom_protocols.patch...
2026-04-08T18:56:27
golang/go
1ea7966042731bae941511fb2b261b9536ad268f
22f65d37c46d8eb087d764a734693d0abe39080f
crypto/tls: prevent deadlock when client sends multiple key update messages When we made setReadTrafficSecret send an alert when there are pending handshake messages, we introduced a deadlock when the client sends multiple key update messages that request a response, as handleKeyUpdate will lock the mutex, and defer t...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -1362,7 +1362,7 @@ func (c *Conn) handleKeyUpdate(keyUpdate *keyUpdateMsg) error {\n \t}\n \n \tnewSecret := cipherSuite.nextTrafficSecret(c.in.trafficSecret)\n-\tif err := c.setReadTrafficSecret(cipherSuite, QUICEncryptionLevelInitial, newSecret); err != nil...
2026-03-23T18:54:41
facebook/react
1b45e2439289fd8e094c44161c89e06c5488671e
80b1cab397764f83efb9828563a259c8052ded0c
Add Flight SSR benchmark fixture (#36180) This PR adds a benchmark fixture for measuring the performance overhead of the React Server Components (RSC) Flight rendering compared to plain Fizz server-side rendering. ### Motivation Performance discussions around RSC (e.g. #36143, #35125) have highlighted the need for r...
[ { "path": "fixtures/flight-ssr-bench/README.md", "patch": "@@ -0,0 +1,62 @@\n+# Flight SSR Benchmark\n+\n+Measures the performance overhead of the React Server Components (RSC) Flight pipeline compared to plain Fizz server-side rendering, across both Node and Edge (web streams) APIs.\n+\n+## Prerequisites\n...
2026-04-02T17:00:28
nodejs/node
f48ac918942bcf468d9e893af55b78049582cdbd
fffd9c6524d8805e3dba76926127c8cbbfaa8c18
test: use on-disk fixture for test-npm-install Instead of writing the fixtures on the fly in the test, put them in the fixtures directory that can be copied into a temporary directory to reproduce in a debugger. Signed-off-by: Joyee Cheung <joyeec9h3@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62584 Refs: ...
[ { "path": "test/fixtures/npm-install/example/example.js", "patch": "@@ -0,0 +1 @@\n+exports.value = 42;", "additions": 1, "deletions": 0 }, { "path": "test/fixtures/npm-install/example/package.json", "patch": "@@ -0,0 +1,5 @@\n+{\n+ \"name\": \"example\",\n+ \"version\": \"1.0.0\",\n+ ...
2026-04-07T01:38:13
electron/electron
c3e3958668cbc580fffed29bee44b74f056947ff
afd5fb4a608ce333a9301c5902912434e9509b0d
fix: devtools re-attaches on open when previously detached (#50807) PR #50646 added a dock state allowlist in SetDockState() that collapsed any non-matching value to "right". WebContents::OpenDevTools passes an empty string when no `mode` option is given, which is the sentinel LoadCompleted() uses to restore `currentD...
[ { "path": "shell/browser/ui/inspectable_web_contents.cc", "patch": "@@ -402,7 +402,7 @@ void InspectableWebContents::SetDockState(const std::string& state) {\n can_dock_ = false;\n } else {\n can_dock_ = true;\n- dock_state_ = IsValidDockState(state) ? state : \"right\";\n+ dock_state_ = (st...
2026-04-08T17:36:47
vercel/next.js
7ac71949ab463a9603f7d1bad7e90c50061c716e
96f759d89b2d0c009bafa1c972119b4e8eba6004
Turbopack: switch from immutable token to path prefix (#92164)
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1590,6 +1590,11 @@ impl Project {\n root_path: self.project_root_path().owned().await?,\n client_root: self.client_relative_path().owned().await?,\n client_root_to_root_path: rcstr!(\"/ROOT\"),\n+ client...
2026-04-08T20:54:08
golang/go
22f65d37c46d8eb087d764a734693d0abe39080f
f5b77a7e2fa0f7ff346c665974a8eded367b1bc2
cmd/go: disallow cgo trust boundary bypass The cgo compiler implicitly trusts generated files with 'cgo' prefixes; thus, SWIG files containing 'cgo' in their names will cause bypass of the trust boundary, leading to code smuggling or arbitrary code execution. The cgo compiler will now produce an error if it encounter...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -3463,6 +3463,10 @@ func (b *Builder) swigIntSize(objdir string) (intsize string, err error) {\n \n // Run SWIG on one SWIG input file.\n func (b *Builder) swigOne(a *Action, file, objdir string, pcCFLAGS []string, cxx bool, intgosize string) error ...
2026-02-24T23:05:34
facebook/react
80b1cab397764f83efb9828563a259c8052ded0c
044d56f3906809b749056059362396fb6b2872ec
Fix typos: occured->occurred, teh->the, accomodate->accommodate (#35616) Fixed spelling errors in comments and error messages: - Fixed 'occured' -> 'occurred' in ReactAsyncActions-test.js - Fixed 'teh' -> 'the' in ReactFiberConfigDOM.js - Fixed 'occured' -> 'occurred' in ErrorBoundary.js - Fixed 'accomodate' -> 'accom...
[ { "path": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ErrorBoundary.js", "patch": "@@ -156,7 +156,7 @@ export default class ErrorBoundary extends Component<Props, State> {\n <CaughtErrorView\n callStack={callStack}\n componentStack={componentStack}\n- ...
2026-03-31T23:01:58
nodejs/node
89cc85ce9835fad9347dcdd10be5a143597167f1
d581ead03200fb12acbf90d775f7bc7f77037eea
doc: update bug bounty program https://nodejs.org/en/blog/announcements/discontinuing-security-bug-bounties PR-URL: https://github.com/nodejs/node/pull/62590 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Rev...
[ { "path": "SECURITY.md", "patch": "@@ -24,9 +24,7 @@ response or engagement within 14 days, escalation is also appropriate.\n \n ### Node.js bug bounty program\n \n-The Node.js project engages in an official bug bounty program for security\n-researchers and responsible public disclosures. The program is ma...
2026-04-06T18:49:18
vercel/next.js
96f759d89b2d0c009bafa1c972119b4e8eba6004
cd01ca9a329f997d9e699770778003a1ddf128c4
CI: Fix issue with conflicting 'engines.pnpm' field in next-stats-action (#92533) This job has been failing on canary pushes, but not on PRs. I'm not sure why it's only happening in canary pushes, but hopefully this should fix the specific error we're seeing when it does fail. Discussion: https://vercel.slack.com/arc...
[ { "path": ".github/actions/next-stats-action/src/index.js", "patch": "@@ -115,6 +115,21 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {\n // 16.3 is released, but we must override it for now because 16.2 uses\n // pnpm 9.6.0, which supports different argumen...
2026-04-08T20:40:13
facebook/react
044d56f3906809b749056059362396fb6b2872ec
2c2fd9d12c7159efef81e7ea6ec899943cf7ca33
docs: fix typos and improve abbreviation usage in DESIGN_GOALS.md (#36170) Hi! While reviewing the React Compiler documentation, I noticed a few minor issues in DESIGN_GOALS.md: - Fixed a typo: `outweight` → `outweigh` in the Non-Goals section. - Updated all instances of `ie` to the standard `i.e.` for better consi...
[ { "path": "compiler/docs/DESIGN_GOALS.md", "patch": "@@ -19,7 +19,7 @@ The idea of React Compiler is to allow developers to use React's familiar declar\n The following are explicitly *not* goals for React Compiler:\n \n * Provide perfectly optimal re-rendering with zero unnecessary recomputation. This is a ...
2026-03-30T23:25:51
golang/go
f5b77a7e2fa0f7ff346c665974a8eded367b1bc2
3985ca0b6264835c049e601900a8072b5d1b13b4
cmd/compile: fix loopbce overflow check logic addWillOverflow and subWillOverflow has an implicit assumption that y is positive, using it outside of addU and subU is really incorrect. This CL fixes those incorrect usage to use the correct logic in place. Thanks to Jakub Ciolek for reporting this issue. Fixes #78333 ...
[ { "path": "src/cmd/compile/internal/ssa/loopbce.go", "patch": "@@ -235,9 +235,11 @@ nextblock:\n \t\t\t\t\t\t\tif init.AuxInt > v {\n \t\t\t\t\t\t\t\treturn false\n \t\t\t\t\t\t\t}\n+\t\t\t\t\t\t\t// TODO(1.27): investigate passing a smaller-magnitude overflow limit to addU\n+\t\t\t\t\t\t\t// for addWillOve...
2026-03-06T00:03:45
electron/electron
afd5fb4a608ce333a9301c5902912434e9509b0d
8679522922c338ce99768c9743a64a7bfc9d1a89
chore: bump chromium to 148.0.7778.0 (main) (#50769) * chore: bump chromium in DEPS to 148.0.7776.0 * chore: bump chromium in DEPS to 148.0.7778.0 * fix(patch): buffered_data_source_host_impl include added upstream Ref: https://chromium-review.googlesource.com/c/chromium/src/+/7712714 Co-Authored-By: Claude <svc-d...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '148.0.7768.0',\n+ '148.0.7778.0',\n 'node_version':\n 'v24.14.1',\n 'nan_version':", "additions": 1, "deletions": 1 }, { "path": "patches/boringssl/expose_ripemd16...
2026-04-08T17:34:24
vercel/next.js
4cd8e53a44c5dbb8c5fa5c835cbba03de29bf2cd
bb75506b78d693bebd36be2d6df1396dc3b0c675
Fix `minimumReleaseAgeExclude` for React and friends (#92535)
[ { "path": "pnpm-workspace.yaml", "patch": "@@ -40,10 +40,7 @@ minimumReleaseAgeExclude:\n - next\n - react\n - react-dom\n- - react-dom-*\n- - react-experimental-builtin\n - react-is\n- - react-is-builtin\n - react-server-dom-*\n- - scheduler-*\n+ - scheduler\n - turbo", "additions": 1,...
2026-04-08T20:08:54
nodejs/node
4f08c6478d6ecd073c03536b8a6c473232e16c37
d93935bf72a18ead8f35dc32f31746b96c4b970e
inspector: return errors when CDP protocol event emission fails PR-URL: https://github.com/nodejs/node/pull/62162 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "src/inspector/dom_storage_agent.cc", "patch": "@@ -17,18 +17,26 @@ using v8::Local;\n using v8::Object;\n using v8::Value;\n \n+static void ThrowEventError(v8::Isolate* isolate, const std::string& message) {\n+ isolate->ThrowException(v8::Exception::TypeError(\n+ v8::String::NewFromUtf8(iso...
2026-04-06T08:18:14
golang/go
3985ca0b6264835c049e601900a8072b5d1b13b4
4978c2029c3ff66da8f1dfe32ac6770ce1514fe8
cmd/compile: fix mem access overlap detection When a no-op interface conversion is wrapped around the rhs of an assignment, the memory overlap detection logic in the compiler failed to peel down conversion to see the actual pointer, causing an incorrect no-overlapping determination. Thanks to Jakub Ciolek for reporti...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -1654,6 +1654,16 @@ func (s *state) stmtList(l ir.Nodes) {\n \t}\n }\n \n+func peelConvNop(n ir.Node) ir.Node {\n+\tif n == nil {\n+\t\treturn n\n+\t}\n+\tfor n.Op() == ir.OCONVNOP {\n+\t\tn = n.(*ir.ConvExpr).X\n+\t}\n+\treturn n\n+}\n+\n // ...
2026-03-12T21:36:33
facebook/react
74568e8627aa43469b74f2972f427a209639d0b6
9627b5a1caa64c1488643bffdf04495106fa3247
[Flight] Transport `AggregateErrors.errors` (#36156)
[ { "path": ".eslintrc.js", "patch": "@@ -566,6 +566,7 @@ module.exports = {\n CallSite: 'readonly',\n ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n+ AggregateError: 'readonly',\n AnimationFrameID: 'readonly',\n WeakRef:...
2026-03-29T01:18:21
electron/electron
8679522922c338ce99768c9743a64a7bfc9d1a89
0828de3ccd92c0d30d2d8c02ef24c56244891e24
chore: iwyu commonly-included headers in shell/ (#50778) * chore: iwyu in shell/browser/api/electron_api_web_contents.h * chore: iwyu in shell/browser/browser.h * chore: iwyu in shell/browser/javascript_environment.h * chore: iwyu in shell/common/gin_hhelper/function_template.h * chore: do not include node_include...
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -77,6 +77,7 @@\n #include \"shell/common/gin_helper/dictionary.h\"\n #include \"shell/common/gin_helper/error_thrower.h\"\n #include \"shell/common/gin_helper/object_template_builder.h\"\n+#include \"shell/common/gin_helper/promise.h\"\n #inclu...
2026-04-08T14:33:42
nodejs/node
e7759896bc2d4ad5f91d184bf62f30c7302ba910
12249ccadc4964c9497a07be94c1764d4717da64
src: add contextify interceptor debug logs PR-URL: https://github.com/nodejs/node/pull/62460 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -62,6 +62,25 @@ struct ToStringHelper {\n static std::string Convert(const std::string& value) { return value; }\n static std::string_view Convert(std::string_view value) { return value; }\n static std::string Convert(bool value) { return value ? \"true\...
2026-04-05T22:31:13
vercel/next.js
108fe00fbdd84f497f3da9fac3855f492fa2c465
de7ce396a224bbaa13216c19bef7b416b06b5a69
fix: replace docs/canary links with stable docs paths in error messages (#92528) ### What? Error messages for the `"use cache"` directive and `after()` API (in `cookies()`, `headers()`, `connection()`) pointed to `/docs/canary/...` instead of `/docs/...`. ### Why? On canary builds, `docs/canary` links can create ci...
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -3942,7 +3942,7 @@ fn emit_error(error_kind: ServerActionsErrorKind) {\n r#\"\n To use \"{directive}\", please enable the feature flag `cacheComponents` in your Next.js config.\n \n- ...
2026-04-08T18:28:46
facebook/react
9627b5a1caa64c1488643bffdf04495106fa3247
f944b4c5352be02623d2d7415c0806350f875114
[Fiber] Fix context propagation into Suspense fallbacks (#36160) ## Summary When a context value changes above a Suspense boundary that is showing its fallback, context consumers inside the fallback do not re-render — they display stale values. `propagateContextChanges`, upon encountering a suspended Suspense bounda...
[ { "path": "packages/react-reconciler/src/ReactFiberNewContext.js", "patch": "@@ -323,12 +323,23 @@ function propagateContextChanges<T>(\n renderLanes,\n workInProgress,\n );\n- if (!forcePropagateEntireTree) {\n- // During lazy propagation, we can defer propagating changes ...
2026-03-27T22:04:53
golang/go
4978c2029c3ff66da8f1dfe32ac6770ce1514fe8
199c4d1c3c9d509a51f777c81cb17d4b17728097
crypto/x509: fix wildcard constraint map case sensitivity When applying excluded constraints to wildcard DNS SANs, the constraint checking implementation did not normalize the case of the constraint nor the SAN, which could lead to incorrect constraint checking results. This change lowercases both the constraint and t...
[ { "path": "src/crypto/x509/constraints.go", "patch": "@@ -351,6 +351,7 @@ func newDNSConstraints(l []string, permitted bool) interface{ query(string) (str\n \tif !permitted {\n \t\tparentConstraints := map[string]string{}\n \t\tfor _, name := range nc.constraints.set {\n+\t\t\tname = strings.ToLower(name)\n...
2026-03-23T17:22:34
electron/electron
a189425373c0ca5929e93888dd7ffa7febb4b9a6
7eccea1315258b7fde446a8465c6cbc69d0f5379
fix: dangling raw_ptr `api::Session::browser_context_` (#50784) * fix: dangling raw_ptr api::Session::browser_context_ * fix: address code review feedback
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -550,8 +550,7 @@ gin::WrapperInfo Session::kWrapperInfo = {{gin::kEmbedderNativeGin},\n Session::Session(v8::Isolate* isolate, ElectronBrowserContext* browser_context)\n : isolate_(isolate),\n network_emulation_token_(base::Ungues...
2026-04-08T06:04:29
nodejs/node
12249ccadc4964c9497a07be94c1764d4717da64
1637db0eb22e8decd0916d299cadd24350df3a7b
deps: libuv: cherry-pick aabb7651de Original commit message: win: properly initialize OSVERSIONINFOW (#5107) Otherwise calling `RtlGetVersion()` might produce UB. Problem was causing random crashes in the node.js test suite with stack traces like this one: ``` node.exe!__report_gsfailure(unsigned __int64...
[ { "path": "deps/uv/src/win/tcp.c", "patch": "@@ -56,6 +56,8 @@ static int minimal_windows10_version1709(void) {\n OSVERSIONINFOW os_info;\n if (!pRtlGetVersion)\n return 0;\n+ os_info.dwOSVersionInfoSize = sizeof(os_info);\n+ os_info.szCSDVersion[0] = L'\\0';\n pRtlGetVersion(&os_info);\n if (...
2026-04-02T09:44:25
vercel/next.js
de7ce396a224bbaa13216c19bef7b416b06b5a69
e75d006d72f042564fec41b7c9655b837e44feae
Node.js streams: Fork points (#92252) ### What? Implements native Node.js stream support for the RSC / HTML rendering. This first step does not include cacheComponents / static generation. Instead of converting between Node.js Readable streams and Web ReadableStreams at every boundary, the rendering pipeline now use...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -1180,13 +1180,12 @@ jobs:\n with:\n afterBuild: |\n export __NEXT_USE_NODE_STREAMS=true\n- export __NEXT_CACHE_COMPONENTS=true\n- export __NEXT_EXPERIMENTAL_CACHED_NAVIGATIONS=true\n- export __NEXT_EXPERIM...
2026-04-08T17:45:15
golang/go
199c4d1c3c9d509a51f777c81cb17d4b17728097
d7b6fb44b5f39cb0f551ed7eb62498089b604a88
html/template: properly track JS template literal brace depth across contexts Properly track JS template literal brace depth across branches/ranges, and prevent accidental re-use of escape analysis by including the brace depth in the stringification/mangling for contexts. Fixes #78331 Fixes CVE-2026-32289 Change-Id:...
[ { "path": "src/html/template/context.go", "patch": "@@ -6,6 +6,7 @@ package template\n \n import (\n \t\"fmt\"\n+\t\"slices\"\n \t\"text/template/parse\"\n )\n \n@@ -37,7 +38,7 @@ func (c context) String() string {\n \tif c.err != nil {\n \t\terr = c.err\n \t}\n-\treturn fmt.Sprintf(\"{%v %v %v %v %v %v %v}...
2026-03-23T20:34:23
facebook/react
f944b4c5352be02623d2d7415c0806350f875114
677818e4a2261e318bb9c0bd0c5c8ba05fcd1880
Fix typos in comments (#35701) <!-- 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 pull request, please make sure the followin...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -4062,7 +4062,7 @@ export function registerSuspenseInstanceRetry(\n instance.data !== SUSPENSE_PENDING_START_DATA ||\n // The boundary is still in pending status but the document has finished loading\n // bef...
2026-03-27T21:55:10
electron/electron
a29674e4cf6c0aefdce9c2a352a24c6aa7554343
81dd0f42e16224ec9f82578868b0e2a7e07c830c
fix: dangling raw_ptr JavascriptEnvironment::isolate_ (#50738)
[ { "path": "shell/browser/javascript_environment.cc", "patch": "@@ -61,25 +61,26 @@ JavascriptEnvironment::JavascriptEnvironment(uv_loop_t* event_loop,\n : isolate_holder_{CreateIsolateHolder(\n Initialize(event_loop, setup_wasm_streaming),\n &max_young_generation_size_)},\n- iso...
2026-04-07T08:03:11
nodejs/node
dec597354bd5e6cee40d71bd64e15bdb8de62cf6
a3108ff65c6f3e658e3dcfc50412b71f10789f7d
crypto: implement randomUUIDv7() Signed-off-by: nabeel378 <mohammadnabeeljameel@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62553 Fixes: https://github.com/nodejs/node/issues/62529 Refs: https://datatracker.ietf.org/doc/html/rfc9562#name-uuid-version-7 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed...
[ { "path": "doc/api/crypto.md", "patch": "@@ -5826,6 +5826,25 @@ added:\n Generates a random [RFC 4122][] version 4 UUID. The UUID is generated using a\n cryptographic pseudorandom number generator.\n \n+### `crypto.randomUUIDv7([options])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `options` {Object}\n+...
2026-04-05T10:12:21
vercel/next.js
e75d006d72f042564fec41b7c9655b837e44feae
70fb25d3c14c74f2a91380037f97f728599f7d85
Bundle skills/ directory into next/dist/skills (#92493) Experimenting with the notion of a "bundled skill" — agent skills shipped directly in the `next` package under `next/dist/skills/<name>/`. The first bundled skill is `next-compile`, which calls the dev server's `get_compilation_issues` MCP tool to check compilat...
[ { "path": "packages/next/taskfile.js", "patch": "@@ -46,6 +46,11 @@ export async function copy_docs(task, opts) {\n .target('dist/docs')\n }\n \n+export async function copy_skills(task, opts) {\n+ const skillsSource = join(__dirname, '../../skills')\n+ await task.source(join(skillsSource, '**/*')).tar...
2026-04-08T17:29:37
golang/go
d7b6fb44b5f39cb0f551ed7eb62498089b604a88
c1352b7df17574e0f7d3ada9514b36ddac993abb
cmd/compile: preserve dot vars necessary for debuggers in DWARF This patch fixes a bug introduced in the recent DWARF refactor / cleanup where `shouldEmitDwarf` was unified and ended up pruning certain dot prefixed vars that are necessary for debuggers. Other dot prefixed vars are already pruned in earlier passes, th...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -675,8 +675,7 @@ func shouldEmitDwarfVar(n *ir.Name) bool {\n \tif n.Sym().Name == \"_\" {\n \t\treturn false\n \t}\n-\tc := n.Sym().Name[0]\n-\tif c == '.' || n.Type().IsUntyped() {\n+\tif n.Type().IsUntyped() {\n \t\treturn false\n \t}\n...
2026-04-07T19:32:00
facebook/react
677818e4a2261e318bb9c0bd0c5c8ba05fcd1880
2233b7d7281fea5beec815cf5af9593d2b80f68d
Fix typos in tests and comments (#35627) <!-- 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 pull request, please make sure th...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/Logger-test.ts", "patch": "@@ -10,7 +10,7 @@ import invariant from 'invariant';\n import {runBabelPluginReactCompiler} from '../Babel/RunReactCompilerBabelPlugin';\n import type {Logger, LoggerEvent} from '../Entrypoint';\n \n-it('logs s...
2026-03-27T21:53:32
vercel/next.js
70fb25d3c14c74f2a91380037f97f728599f7d85
46e2114ea28a39aab4c04c2451aa462af14e62df
fix: resolve function configs in unstable_getResponseFromNextConfig (#92501) ## Summary - `unstable_getResponseFromNextConfig` now resolves async function configs before passing them to `loadCustomRoutes` - Uses `normalizeConfig` — the same utility Next.js already uses at build time to handle `(phase, ctx) => config`...
[ { "path": "packages/next/src/experimental/testing/server/config-testing-utils.test.ts", "patch": "@@ -248,6 +248,45 @@ describe('config-testing-utils', () => {\n })\n })\n \n+ describe('function config', () => {\n+ it('resolves async function configs before matching routes', async () => {\n+ ...
2026-04-08T17:06:02
nodejs/node
a3108ff65c6f3e658e3dcfc50412b71f10789f7d
4b3d82c71d2aa75f9c881cb765dded3e0eb7c3f4
doc: document TransformStream transformer.cancel option Add documentation for the `cancel` option of the `TransformStream` transformer, which allows users to specify a callback that will be called when the stream is canceled. See: https://streams.spec.whatwg.org/#transformer-api Fixes: https://github.com/nodejs/node/...
[ { "path": "doc/api/webstreams.md", "patch": "@@ -1148,6 +1148,12 @@ await Promise.all([\n \n <!-- YAML\n added: v16.5.0\n+changes:\n+ - version:\n+ - v21.5.0\n+ - v20.14.0\n+ pr-url: https://github.com/nodejs/node/pull/50126\n+ description: Supports the `cancel` transformer callback.\n -->\n \n...
2026-04-04T20:17:43
golang/go
497ec0d4e1763ffd167577cc2ac5fdb82b99ad82
6797caf71af755fb0fb1c7be72664619ac79f56f
cmd/go/internal/tool: only forward SIGHUP, SIGINT, SIGQUIT, and SIGTERM These are the signals that are likely to be sent to go tool by other programs. This means we won't forward SIGTSTP, SIGTTIN, SIGTTOU. Doing so was breaking expected behavior in a terminal. Fixes #76173 Change-Id: I018808e8ecf59e4e111f353968d83b8...
[ { "path": "src/cmd/go/internal/tool/signal.go", "patch": "@@ -0,0 +1,14 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build !plan9 && !js\n+\n+package tool\n+\n+import (\n+\t\"...
2026-04-06T14:13:32
facebook/react
2233b7d7281fea5beec815cf5af9593d2b80f68d
ba833da405d44260e94bd47c13eec90816bf44f1
Fix typos: explicitlyu->explicitly, intialized->initialized (#35621) Fixed spelling errors: - Fixed 'explicitlyu' -> 'explicitly' in compiler/CLAUDE.md - Fixed 'intialized' -> 'initialized' in InferReactiveScopeVariables.ts (comment) - Fixed 'intialized' -> 'initialized' in InferMutationAliasingEffects.ts (error messa...
[ { "path": "compiler/CLAUDE.md", "patch": "@@ -76,7 +76,7 @@ yarn snap minimize --update <path>\n \n ## Version Control\n \n-This repository uses Sapling (`sl`) for version control. Sapling is similar to Mercurial: there is not staging area, but new/deleted files must be explicitlyu added/removed.\n+This rep...
2026-03-27T21:52:23
electron/electron
6aaf490aa5b653c19a50b5908ed31f60e4a62626
b8f25c4cedb2e0f5f475912b709aba19c57c26be
chore: bump chromium to 148.0.7768.0 (main) (#50599) * chore: bump chromium in DEPS to 148.0.7765.0 * chore: bump chromium in DEPS to 148.0.7766.0 * fix(patch-conflict): update packed_resources dep name after upstream rename Upstream renamed //chrome:packed_resources_integrity_header to //chrome:packed_resources. U...
[ { "path": "BUILD.gn", "patch": "@@ -775,6 +775,7 @@ source_set(\"electron_lib\") {\n \"//components/zoom\",\n \"//extensions/browser\",\n \"//extensions/browser/api:api_provider\",\n+ \"//extensions/browser/mime_handler:stream_info\",\n \"//extensions/browser/updater\",\n ...
2026-04-07T03:38:46
vercel/next.js
743615ba32d22c430b5c17a224df70b47e3cff5c
053300c1fb885383dac2620564567c603e53e681
docs: clarify cacheLife() cannot be called at module scope (#92326) ### What? Update the "Good to know" callout in the `cacheLife` docs to explicitly state that `cacheLife()` must be called inside a function body, not at module scope, and that doing so throws an error. ### Why? Calling `cacheLife('days')` at module...
[ { "path": "docs/01-app/03-api-reference/04-functions/cacheLife.mdx", "patch": "@@ -37,12 +37,17 @@ const nextConfig = {\n export default nextConfig\n ```\n \n-`cacheLife` requires the `use cache` directive, which must be placed at the file level or at the top of an async function or component.\n+`cacheLife`...
2026-04-08T14:06:07
nodejs/node
bf1aebcc37d97ed7073cf1e4aaf313568128aa0b
3bb416cfd75cff8a95f4d70cf8a9096e35f41a79
http: add req.signal to IncomingMessage PR-URL: https://github.com/nodejs/node/pull/62541 Fixes: https://github.com/nodejs/node/issues/62481 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com>
[ { "path": "doc/api/http.md", "patch": "@@ -2989,6 +2989,51 @@ added: v0.5.9\n \n Calls `message.socket.setTimeout(msecs, callback)`.\n \n+### `message.signal`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Type: {AbortSignal}\n+\n+An {AbortSignal} that is aborted when the underlying socket closes or the\n+r...
2026-04-04T09:24:22
facebook/react
ba833da405d44260e94bd47c13eec90816bf44f1
3cb2c42013eda273ac449126ab9fcc115a09d39d
Fix typo: accomodate -> accommodate (#35623) Fixed spelling error in comment: - Fixed 'accomodate' -> 'accommodate' in InferMutationAliasingEffects.ts <!-- 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 ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -1315,7 +1315,7 @@ class InferenceState {\n #values: Map<InstructionValue, AbstractValue>;\n /*\n * The set of values pointed to by each identifier. This is a set\n- * to accomodate...
2026-03-27T21:51:37
electron/electron
b8f25c4cedb2e0f5f475912b709aba19c57c26be
9fafc81e88345dffea7504a1890e791b4af70379
fix: resolve target bundle path once at start of install (#50745) Resolve the Squirrel.Mac target bundle URL to a canonical path once at the top of -[SQRLInstaller installRequest:] and use it for every step of the install chain, rejecting requests whose path is not already canonical. When running with elevated privile...
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -11,3 +11,4 @@ fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_uttypeconformsto.patch\n fix_clean_up_orphaned_staged_updates_before_downloading_new_update.patch\n fix_add_explicit_json_property_ma...
2026-04-07T02:10:52
rust-lang/rust
574d8774b9e34c7d9fb07e81caaa67ccc382a0a0
c753cef0df1af7b72ce375fb7c9fd4fc31bfb9ec
Parenthesize block-like expressions in index base of pretty printer The AST pretty printer produces invalid Rust when a block expression is the base of an index operation inside a macro expansion. This is a gap in the existing `FixupContext` parenthesization machinery — the approach handles statement position but not ...
[ { "path": "compiler/rustc_ast_pretty/src/pprust/state/expr.rs", "patch": "@@ -677,7 +677,8 @@ impl<'a> State<'a> {\n let expr_fixup = fixup.leftmost_subexpression_with_operator(true);\n self.print_expr_cond_paren(\n expr,\n- expr_fixup.p...
2026-03-18T20:23:30
vercel/next.js
053300c1fb885383dac2620564567c603e53e681
b58616b7f1a70dfe00e46edc943d166fd9875dd5
docs: improve blocking-route error page for params discoverability (#92359) ### What? Improves the `blocking-route` error doc (`errors/blocking-route.mdx`) to make it easier to connect the "Uncached data was accessed outside of `<Suspense>`" error to `await params` in a Page component. ### Why? When a build fails w...
[ { "path": "errors/blocking-route.mdx", "patch": "@@ -8,7 +8,15 @@ When the `cacheComponents` feature is enabled, Next.js expects a parent `Suspens\n \n While some data is inherently only available when a user request is being handled, such as request headers, Next.js assumes that by default any asynchronous...
2026-04-08T13:13:36
nodejs/node
e419afd50c6bc8c6d41188f1affda3a3ef662267
b411f904135bee50ddd1658719ede70db991579f
module,win: fix long subpath import Fixes: https://github.com/nodejs/node/issues/62043 PR-URL: https://github.com/nodejs/node/pull/62101 Fixes: https://github.com/nodejs/node/issues/62043 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
[ { "path": "src/node_modules.cc", "patch": "@@ -425,8 +425,16 @@ void BindingData::GetPackageScopeConfig(\n url::ThrowInvalidURL(realm->env(), resolved.ToStringView(), std::nullopt);\n return;\n }\n+ BufferValue file_path_buf(realm->isolate(),\n+ String::NewFro...
2026-04-03T10:25:26
facebook/react
c0c29e89066df60c8340d4e853d38b5843c165ab
c0d218f0f3e02ed581f74096e56baa947213135d
Fix typos in the documentation (#35439) <!-- 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 pull request, please make sure the...
[ { "path": "compiler/docs/DESIGN_GOALS.md", "patch": "@@ -8,7 +8,7 @@ The idea of React Compiler is to allow developers to use React's familiar declar\n \n * Bound the amount of re-rendering that happens on updates to ensure that apps have predictably fast performance by default.\n * Keep startup time neutra...
2026-03-24T23:09:59
golang/go
899e473c3b4872a9001ce1df60e6cb575502ebb0
e186f8d25cfd86ed4c530e319712ae338a165a4e
archive/tar: limit the number of old GNU sparse format entries We did not set a limit on the maximum size of sparse maps in the old GNU sparse format. Set a limit based on the cumulative size of the extension blocks used to encode the map (consistent with how we limit the sparse map size for other formats). Add an ad...
[ { "path": "src/archive/tar/format.go", "patch": "@@ -147,6 +147,12 @@ const (\n \t// Max length of a special file (PAX header, GNU long name or link).\n \t// This matches the limit used by libarchive.\n \tmaxSpecialFileSize = 1 << 20\n+\n+\t// Maximum number of sparse file entries.\n+\t// We should never ac...
2026-03-23T20:12:44
electron/electron
4d050109456b105f3fc2fad4e7a00249d23c5317
c3189e9886d00ae60fb72766999d693d9c7bf0a5
fix: enforce size constraints on window creation on Windows and Linux (#49906) * enforce size constraints on window creation * set constraints after resizing on init * restore conditional centering
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -140,24 +140,10 @@ NativeWindow::~NativeWindow() {\n \n void NativeWindow::InitFromOptions(const gin_helper::Dictionary& options) {\n // Setup window from options.\n- if (int x, y; options.Get(options::kX, &x) && options.Get(options::kY, &y)) {\n- ...
2026-04-06T20:38:23
vercel/next.js
b58616b7f1a70dfe00e46edc943d166fd9875dd5
aced0cfbf8e74d7305133325b1d3a7c9410a046a
fix: mention params and searchParams in blocking-route error messages (#92360) ### What? Adds `params` and `searchParams` to the Dynamic variant of the blocking-route error message. ### Why? When `const { id } = await params` in a Page component triggers the blocking-route error, the message says "Uncached data or ...
[ { "path": "packages/next/errors.json", "patch": "@@ -1082,7 +1082,7 @@\n \"1081\": \"Route \\\"%s\\\": Runtime data such as \\\\`cookies()\\\\`, \\\\`headers()\\\\`, \\\\`params\\\\`, or \\\\`searchParams\\\\` was accessed inside \\\\`generateViewport\\\\`. This delays the entire page from rendering, resu...
2026-04-08T13:09:15
nodejs/node
8ee5b26f866be79d7c54aced47a0fbd2be524d90
5ff1eab951cf9814e1706f2f179fd5a80bed4d0f
deps: V8: backport bef0d9c1bc90 Original commit message: [api] Add V8::GetWasmMemoryReservationSizeInBytes() When the system does not have enough virtual memory for the wasm cage, installing the trap handler would cause any code allocating wasm memory to throw. Therefore it's useful for the embedder ...
[ { "path": "deps/v8/include/v8-initialization.h", "patch": "@@ -253,6 +253,35 @@ class V8_EXPORT V8 {\n static size_t GetSandboxReservationSizeInBytes();\n #endif // V8_ENABLE_SANDBOX\n \n+ enum class WasmMemoryType {\n+ kMemory32,\n+ kMemory64,\n+ };\n+\n+ /**\n+ * Returns the virtual address ...
2026-03-05T19:22:01
facebook/react
c0d218f0f3e02ed581f74096e56baa947213135d
ed69815cebae33b0326cc69faa90f813bb924f3b
Fix useDeferredValue getting stuck (#36134) Fixes https://github.com/facebook/react/issues/35821 Written/debugged by Claude. ## Test Plan - Verify undoing the source fix fails the newly added test - Verify building a bundle with the fix solves https://github.com/gaearon/react-udv-bug/ repro
[ { "path": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -5040,6 +5040,13 @@ function pingSuspendedRoot(\n // the special internal exception that we use to interrupt the stack for\n // selective hydration. That was temporarily reverted but we once we add\n // it ...
2026-03-24T00:49:05
golang/go
e186f8d25cfd86ed4c530e319712ae338a165a4e
c3c65602d639e60ed6071fee22979b7e3ece1a30
all: update to x/tools@f6476fbaabd396b58618b473e4eb71e1f532b495 This just brings in CL 763663 in hopes of fixing the longest builders. Change-Id: Ib4a24dc214f58e77dfd2999df7ecf5c0dd21d1fc Reviewed-on: https://go-review.googlesource.com/c/go/+/763770 Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: G...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.42.1-0.20260320201212-a76ec62d6c53\n \tgolang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c\n \tgolang.org/x/term v0.39.0\n-\tgolang.org/x/tools v0.43.1-0.20260406190732-b36d1d12a1a7\n+\tgolang.org/x/tools v0.43.1...
2026-04-07T23:12:41
electron/electron
983ebdd6de46c2c69981a8a5aec385b842a15eef
b9c08ef9c2c3250e92da7b073ebecfc04efaff6d
ci: make src-cache upload atomic (#50743) ci: make src-cache upload atomic and sweep orphaned temp files The checkout action's cp of the ~6GB zstd archive directly to the final path on the cache share is non-atomic; an interrupted copy or a concurrent reader produces zstd "Read error (39): premature end" on restore, ...
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -191,19 +191,31 @@ runs:\n # only permits .tar/.tgz so we keep the extension and decode on restore.\n tar -cf - src | zstd -T0 --long=30 -f -o $CACHE_FILE\n echo \"Compressed src to $(du -sh $CACHE_FILE | cut -f1 -d' ')\"\n- ...
2026-04-06T20:04:49
vercel/next.js
aced0cfbf8e74d7305133325b1d3a7c9410a046a
9f8d671bc4f69185ed2fe6e187701f4e215ebc0d
docs: add middleware.mdx deprecation stub for discoverability (#92281) ### What? Add a `middleware.mdx` deprecation stub to the app-router file conventions docs so that searching for `*middleware*` in the bundled docs returns a result. - `docs/01-app/03-api-reference/03-file-conventions/middleware.mdx` — explains th...
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -0,0 +1,21 @@\n+---\n+title: middleware.js\n+description: API reference for the middleware.js file (deprecated, renamed to proxy.js).\n+version: draft\n+related:\n+ title: Learn more about Proxy\n+ links:\n+ - app...
2026-04-08T13:08:35
nodejs/node
25443db104d39a3dcd410fa882884580734cfaa4
a9ac9b12eec0f777b99e80e8672c3f429c7329db
tools: allow triagers to queue a PR for CI until it's reviewed PR-URL: https://github.com/nodejs/node/pull/62524 Fixes: https://github.com/nodejs/node/issues/62496 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": ".github/workflows/auto-start-ci.yml", "patch": "@@ -28,13 +28,13 @@ jobs:\n - name: Get Pull Requests\n id: get_prs_for_ci\n run: >\n- numbers=$(gh pr list \\\n- --repo ${{ github.repository }} \\\n+ echo \"numbers=$(gh pr list \\\n+ ...
2026-03-31T14:35:57
golang/go
c3c65602d639e60ed6071fee22979b7e3ece1a30
524b8606a8e4e8f6e37f77c7d601fdf44497b928
internal/syscall/unix: properly support AT_SYMLINK_NOFOLLOW on Linux On Linux, the fchmodat syscall silently ignores the AT_SYMLINK_NOFOLLOW flag. Change the Linux Fchmodat function to use the fstatat2 syscall (added in Linux 6.6) when available. When fstatat2 is not available, use the same workaround as GNU libc an...
[ { "path": "src/cmd/dist/buildtool.go", "patch": "@@ -92,6 +92,7 @@ var bootstrapDirs = []string{\n \t\"internal/race\",\n \t\"internal/runtime/gc\",\n \t\"internal/saferio\",\n+\t\"internal/strconv\",\n \t\"internal/syscall/unix\",\n \t\"internal/types/errors\",\n \t\"internal/unsafeheader\",", "additio...
2026-03-23T17:34:50
facebook/react
b4546cd0d4db2b913d8e7503bee86e1844073b2e
3f0b9e61c467cd6e09cac6fb69f6e8f68cd3c5d7
[enableInfiniteRenderLoopDetection] Warn about potential infinite loop, instead of interrupting (#35999) The `enableInfiniteRenderLoopDetection` feature flag is currently disabled everywhere. When attempted to roll out this at Meta, we've observed multiple false-positives, where counter-based approach would interrupt ...
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -1792,8 +1792,8 @@ describe('ReactUpdates', () => {\n expect(subscribers.length).toBe(limit);\n });\n \n- it(\"does not infinite loop if there's a synchronous render phase update on another component\", async () => {\n- ...
2026-03-18T14:11:30
electron/electron
9f3cc9122ca5c777c70ddd59066c421e828eac2e
e66e4ca02cd0b79439a94644b9179ca15dd38ff9
build: derive patches upstream-head ref from script path (#50727) * build: derive patches upstream-head ref from script path gclient-new-workdir.py symlinks each repo's .git/refs back to the source checkout, so the fixed refs/patches/upstream-head was shared across all worktrees. Parallel `e sync` runs in different w...
[ { "path": "docs/development/patches.md", "patch": "@@ -79,7 +79,7 @@ $ ../../electron/script/git-import-patches ../../electron/patches/node\n $ ../../electron/script/git-export-patches -o ../../electron/patches/node\n ```\n \n-Note that `git-import-patches` will mark the commit that was `HEAD` when it was r...
2026-04-06T16:42:08
vercel/next.js
9f5d93643de6cd740f41e2b7e5f6c1393c26befb
15215a3a10496e7012a7b2d1ec32cafd81fbf1b1
docs: note PPR default in cacheComponents reference (#92378) ### What? Add a **Good to know** callout on the [`cacheComponents`](https://nextjs.org/docs/app/api-reference/config/next-config-js/cacheComponents) API reference, placed after the Usage list and before **Navigation with Activity**. ### Why? Developers enab...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/cacheComponents.mdx", "patch": "@@ -29,6 +29,12 @@ When `cacheComponents` is enabled, you can use the following cache functions and\n - The [`cacheLife` function](/docs/app/api-reference/config/next-config-js/cacheLife) with `use cache`\n -...
2026-04-08T10:09:44
nodejs/node
a9ac9b12eec0f777b99e80e8672c3f429c7329db
4f6e60226ffda76640d6e113f02675bd1caf9bd4
lib: defer AbortSignal.any() following Avoid registering AbortSignal.any() composites as dependants until they are actually observed. This fixes the long-lived source retention pattern from #62363 while preserving abort semantics through lazy refresh and follow paths. Also unregister fired timeout signals from the ti...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -85,17 +85,16 @@ function lazyMessageChannel() {\n }\n \n const clearTimeoutRegistry = new SafeFinalizationRegistry(clearTimeout);\n-const dependantSignalsCleanupRegistry = new SafeFinalizationRegistry((signalWeakRef) => {\n- const signal = signalW...
2026-04-02T14:15:43
facebook/react
c80a07509582daadf275f36ffe7a88c3b12e9db4
8f4150605449efe909822d8b20fe529d85851afe
Fix focus set for delegated and already focused elements (#36010) I found two focus bugs when working on documentation for Fragment Refs. 1) If an element delegates focus handling, it will return false from setFocusIfFocusable even though a focus event has occured on a different element. The fix for this is a documen...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -4520,18 +4520,30 @@ export function setFocusIfFocusable(\n //\n // We could compare the node to document.activeElement after focus,\n // but this would not handle the case where application code managed focus to a...
2026-03-12T21:36:28
electron/electron
903e65e0486ee1506c9f55dfbd62bf10c96d877d
fef2fd294124d8725805583b72ed10531b794b3f
ci: fetch clang-tidy package in fix-sync (#50704) fix-sync re-downloads llvm-build on macOS/Windows with the base clang and objdump packages, but not clang-tidy. A local gclient sync pulls clang-tidy (checkout_clang_tidy=True in DEPS), so CI's llvm-build tree diverges from a local one. siso hashes the toolchain as act...
[ { "path": ".github/actions/fix-sync/action.yml", "patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python3 sr...
2026-04-06T05:31:30
vercel/next.js
15215a3a10496e7012a7b2d1ec32cafd81fbf1b1
38cffffeccbc68e0c256b4fb9aa17e23f3f308f4
docs: add note on React canary version to View transitions guide (#92315) ## Summary Addresses a DX friction log finding and two minor clarifications in the view transitions guide. ### Changes - Add note explaining that `import { ViewTransition } from 'react'` works because Next.js rewrites it to its internal React...
[ { "path": "docs/01-app/02-guides/view-transitions.mdx", "patch": "@@ -37,6 +37,8 @@ const nextConfig: NextConfig = {\n export default nextConfig\n ```\n \n+App Router uses [React canary releases](https://react.dev/blog/2023/05/03/react-canaries), which contain all stable React 19 changes as well as newer fe...
2026-04-08T09:19:13
golang/go
a2cc178edf7908a2686089bdc35d1e6d134c7dd1
230d1407b04da5d65505415b1a7b4f6d70c75086
go/types: Hasher, a hash function for Types This CL defines a hash function for Types using the maphash.Hasher API proposed in #70471 (CL 657296) that is consistent with the equivalence relation of types.Identical. It also defines a variant, HasherIgnoreTypes, that is consistent with types.IdenticalIgnoreTags. (The a...
[ { "path": "api/next/69420.txt", "patch": "@@ -0,0 +1,6 @@\n+pkg go/types, method (Hasher) Equal(Type, Type) bool #69420\n+pkg go/types, method (Hasher) Hash(*maphash.Hash, Type) #69420\n+pkg go/types, method (HasherIgnoreTags) Equal(Type, Type) bool #69420\n+pkg go/types, method (HasherIgnoreTags) Hash(*map...
2025-03-12T22:13:04
facebook/react
8f4150605449efe909822d8b20fe529d85851afe
5e9eedb57843dc161defdf93ed457ab7d982e324
[DevTools] fix: don't show empty suspended by section (#36011) The potential paddings and margins for the empty block are already handled via CSS selectors.
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js", "patch": "@@ -584,6 +584,9 @@ export default function InspectedElementSuspendedBy({\n break;\n }\n \n+ if (groups.length === 0) {\n+ return null;\n+ }\n return (\n <div>\n <div c...
2026-03-12T21:19:21
nodejs/node
86282b56d20ff4be98003dfbd9aff91fcbfe3cf2
0dfdec9542c88582fbf005f0758a502fc87d64ff
2026-04-01, Version 25.9.0 (Current) Notable changes: async_hooks: * (SEMVER-MINOR) add using scopes to `AsyncLocalStorage` (Stephen Belanger) https://github.com/nodejs/node/pull/61674 cli: * (SEMVER-MINOR) add `--max-heap-size` option (tannal) https://github.com/nodejs/node/pull/58708 crypto: * (SEMVER-MINOR) ...
[ { "path": "CHANGELOG.md", "patch": "@@ -41,7 +41,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.2\">25.8.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.9.0\">25.9.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.8.2\">2...
2026-03-31T20:41:40
electron/electron
fef2fd294124d8725805583b72ed10531b794b3f
4d8fd31e5fa35a4709afd807a6b013042c5967cc
ci: zstd-compress the src cache and drop the doubled win_toolchain (#50702) * ci: shrink src cache and fix Windows tar cleanup - Exclude platform-specific toolchains (llvm-build, rust-toolchain) from the src cache; all platforms now fetch them via fix-sync post-restore - Exclude unused test data and benchmarks: bli...
[ { "path": ".github/actions/checkout/action.yml", "patch": "@@ -28,7 +28,7 @@ runs:\n shell: bash\n run: |\n node src/electron/script/generate-deps-hash.js\n- DEPSHASH=\"v1-src-cache-$(cat src/electron/.depshash)\"\n+ DEPSHASH=\"v2-src-cache-$(cat src/electron/.depshash)\"\n ech...
2026-04-06T00:56:03
vercel/next.js
68d6729f3101e3d61c851f89fefc9d4415daf06e
5636400139fbe3c80a0818b5b7b228cc83ad9638
CI: Update and cleanup next-stats-action, force using pnpm 10.33.0 (#92475) This should fix the stats action: We were checking out Next.js 16.2.2, and that doesn't support the `--out` flag for `pnpm pack`. Let's just force pnpm 10.33.0 here for now. While we're here, I made some other updates and improvements: - Upda...
[ { "path": ".github/actions/next-stats-action/Dockerfile", "patch": "@@ -1,18 +1,19 @@\n # syntax=docker.io/docker/dockerfile:1\n \n-FROM ubuntu:22.04\n+FROM ubuntu:24.04\n \n LABEL com.github.actions.name=\"Next.js PR Stats\"\n LABEL com.github.actions.description=\"Compares stats of a PR with the main bran...
2026-04-07T21:17:58
golang/go
e3b3216242691ab0e02164458bda98346ce36adf
6f662188c2e2640712af74a01f589ee31ba0282f
math/big: Binomial should return 0 if k < 0 Fixes #78541 Change-Id: I73ba10b6d34f9f189b5bdd356d6325d5a4a6985f GitHub-Last-Rev: 0594d99f55c51f2f164d17a61c4eb1b2bbb8462e GitHub-Pull-Request: golang/go#78542 Reviewed-on: https://go-review.googlesource.com/c/go/+/763000 Auto-Submit: Robert Griesemer <gri@google.com> Revi...
[ { "path": "src/math/big/int.go", "patch": "@@ -227,7 +227,7 @@ func (z *Int) MulRange(a, b int64) *Int {\n \n // Binomial sets z to the binomial coefficient C(n, k) and returns z.\n func (z *Int) Binomial(n, k int64) *Int {\n-\tif k > n {\n+\tif k > n || k < 0 {\n \t\treturn z.SetInt64(0)\n \t}\n \t// reduc...
2026-04-06T10:36:44
facebook/react
5e9eedb57843dc161defdf93ed457ab7d982e324
1e3152365df2f7a23a5ad947e83f40914413be16
[Flight] Clear chunk reason after successful module initialization (#36024) When `requireModule` triggers a reentrant `readChunk` on the same module chunk, the reentrant call can fail and set `chunk.reason` to an error. After the outer `requireModule` succeeds, the chunk transitions to initialized but retains the stal...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1040,6 +1040,8 @@ function initializeModelChunk<T>(chunk: ResolvedModelChunk<T>): void {\n // Initialize any debug info and block the initializing chunk on any\n // unresolved entries.\n initializeDebugChunk(response, chun...
2026-03-12T18:17:24
nodejs/node
7b8934d2e4896bf453c6bd5228484fbcaef82cd2
f8ee196c15784c372f30bfbb7d70956fc4d7eb63
build: use `CARGO` environment variable if set When enabling support for Temporal, check for the `CARGO` environment variable to locate the `cargo` binary (defaulting to `cargo` if not set) and use this to build `deps/crates`. This will allow using Cargo on systems where the Cargo binary name is suffixed with the ver...
[ { "path": "configure.py", "patch": "@@ -1452,7 +1452,9 @@ def get_cargo_version(cargo):\n except OSError:\n error('''No acceptable cargo found!\n \n- Please make sure you have cargo installed on your system.''')\n+ Please make sure you have cargo installed on your system and/or\n+ co...
2026-04-01T07:31:10
electron/electron
3f8238b92c5f831025cf25718d4f5bb5faa4848d
64c5440eec3d09eeeb69501fa7a989117c2263d3
fix: defer Wrappable destruction in SecondWeakCallback to a posted task (#50688) V8's second-pass weak callbacks run inside a DisallowJavascriptExecutionScope: they may touch the V8 API but must not invoke JS, directly or indirectly. Several Electron Wrappables (WebContents in particular) emit JS events from their des...
[ { "path": "shell/common/gin_helper/wrappable.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/gin_helper/wrappable.h\"\n \n+#include \"base/task/sequenced_task_runner.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/public/isolate_holder.h\"\n #include \"shell/common/gin_helper/d...
2026-04-05T07:38:08
vercel/next.js
2155e07d71fa23398e41227a79ddd51321240ebd
0ed3b186c920e241079223a158c791ec10d53d56
next-routing: middleware matching and app request URL normalization (#91859) ## Summary - gate middleware invocation with configured next-routing matchers - normalize app request URLs in app-page routing paths - prevent static route matches from inheriting dynamic `routeMatches` - add test coverage for next-routing ca...
[ { "path": "packages/next-routing/src/__tests__/captures.test.ts", "patch": "@@ -454,6 +454,52 @@ describe('Has Condition Captures in Destination', () => {\n expect(result.resolvedPathname).toBe('/localized/en-US/page')\n })\n \n+ it('should use named has regex captures in rewrite destinations', async...
2026-04-07T18:44:52
nodejs/node
1a88acbfa213ea63238c6adde30d965d0b32790c
79b960a2bcecd3192f12c42fa68a1f85ce31bda9
quic: fixup linting/formatting issues Signed-off-by: James M Snell <jasnell@gmail.com> Assisted-by: Opencode/Opus 4.6 PR-URL: https://github.com/nodejs/node/pull/62387 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
[ { "path": "src/node_blob.cc", "patch": "@@ -411,8 +411,7 @@ void Blob::Reader::Pull(const FunctionCallbackInfo<Value>& args) {\n std::move(next), node::bob::OPTIONS_END, nullptr, 0));\n }\n \n-void Blob::Reader::SetWakeup(\n- const FunctionCallbackInfo<Value>& args) {\n+void Blob::Reader::SetWakeup...
2026-03-23T13:50:25
facebook/react
a74302c02d220e3663fcad5836cb90607fc2d006
bae6dd09fb9b08fc4387a9f649d9d1ef9ad1a9e6
Bump undici from 6.21.2 to 6.23.0 in /compiler (#35512) Bumps [undici](https://github.com/nodejs/undici) from 6.21.2 to 6.23.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nodejs/undici/releases">undici's releases</a>.</em></p> <blockquote> <h2>v6.23.0</h2> <h2>⚠️ Securit...
[ { "path": "compiler/yarn.lock", "patch": "@@ -10525,7 +10525,16 @@ string-length@^4.0.1:\n char-regex \"^1.0.2\"\n strip-ansi \"^6.0.0\"\n \n-\"string-width-cjs@npm:string-width@^4.2.0\", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:\n+\"string-width-cjs@npm:string-width@^4.2.0\":\n...
2026-03-12T15:40:37
rust-lang/rust
89a4742773beb36a52ce4876aadb151e0fc5b8e1
906ca7ff5e1f01cdf59388574b4822365bffabea
Fix ICE in next-solver dyn-compatibility check The next solver treated error-containing dispatchability goals as proven and misclassified the trait as dyn compatible. Short-circuit receivers with type errors so object-method confirmation stays on the normal error path.
[ { "path": "compiler/rustc_trait_selection/src/traits/dyn_compatibility.rs", "patch": "@@ -603,6 +603,9 @@ fn receiver_for_self_ty<'tcx>(\n /// contained by the trait object, because the object that needs to be coerced is behind\n /// a pointer.\n ///\n+/// If lowering already produced an error in the receiv...
2026-04-07T14:55:42
electron/electron
64c5440eec3d09eeeb69501fa7a989117c2263d3
30cf60a9356f48cb1740896ba63c7b3c0604e44b
fix: dangling raw_ptr MicrotasksRunner::isolate_ (#50676)
[ { "path": "shell/browser/javascript_environment.cc", "patch": "@@ -86,6 +86,7 @@ JavascriptEnvironment::~JavascriptEnvironment() {\n // Otherwise cppgc::internal::Sweeper::Start will try to request a task runner\n // from the NodePlatform with an already unregistered isolate.\n locker_.reset();\n+ DC...
2026-04-05T04:03:14
golang/go
30ed7f97faa41413659a871c6ccc10de51b58c41
da723e15d7492143459c65e4fecf2c17dc0fa1e4
cmd/go/internal/modload: rename State to Loader Rename modload.State to modload.Loader. Rename all references to module loader state. The term "Loader" now refers to the module loader by default. The package loader was explicitly renamed "packageLoader" in an earlier change in order to distinguish it from the modul...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -42,17 +42,17 @@ func init() {\n }\n \n func runBug(ctx context.Context, cmd *base.Command, args []string) {\n-\tmoduleLoaderState := modload.NewState()\n+\tmoduleLoader := modload.NewLoader()\n \tif len(args) > 0 {\n \t\tbase.Fatalf(\"go: bug takes n...
2026-04-07T13:51:06
vercel/next.js
fea754747872122d167dd8bf1fc5581044e50521
a43cf0c247b72915d82b44539c0dbde13efccfc9
Route Handlers: Fix devRequestTimingInternalsEnd and Turbopack server HMR (#92271) ### What? Fixes issues with `AppRouteRouteModule` that interact with `devRequestTiming` and Turbopack server HMR. 1. **Incorrect `devRequestTimingInternalsEnd` attribution**: The app-route template previously statically imported userl...
[ { "path": "packages/next/src/build/templates/app-route.ts", "patch": "@@ -2,7 +2,6 @@ import {\n AppRouteRouteModule,\n type AppRouteRouteHandlerContext,\n type AppRouteRouteModuleOptions,\n- type AppRouteUserlandModule,\n } from '../../server/route-modules/app-route/module.compiled'\n import { Route...
2026-04-07T17:50:40
nodejs/node
57186e58277b7b0235d5e439356c3e2ab811d3e0
e9b5214d72eadfc66fd205396f4a6c76fed4f399
quic: fix a handful of bugs and missing functionality Signed-off-by: James M Snell <jasnell@gmail.com> Assisted-by: Opencode/Opus 4.6 PR-URL: https://github.com/nodejs/node/pull/62387 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
[ { "path": "lib/internal/blob.js", "patch": "@@ -439,63 +439,76 @@ function createBlobReaderStream(reader) {\n // There really should only be one read at a time so using an\n // array here is purely defensive.\n this.pendingPulls = [];\n+ // Register a wakeup callback that the C++ side...
2026-03-21T14:36:10
facebook/react
bae6dd09fb9b08fc4387a9f649d9d1ef9ad1a9e6
96005e445c4c6df5f222cc62d0327d4a389c339f
Bump qs from 6.4.0 to 6.4.1 in /fixtures/packaging/webpack-alias/dev (#35505) Bumps [qs](https://github.com/ljharb/qs) from 6.4.0 to 6.4.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ljharb/qs/blob/main/CHANGELOG.md">qs's changelog</a>.</em></p> <blockquote> <h2><strong>6.4....
[ { "path": "fixtures/packaging/webpack-alias/dev/yarn.lock", "patch": "@@ -936,8 +936,8 @@ punycode@^1.2.4, punycode@^1.4.1:\n resolved \"https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e\"\n \n qs@~6.4.0:\n- version \"6.4.0\"\n- resolved \"https://regist...
2026-03-12T15:40:22
electron/electron
30cf60a9356f48cb1740896ba63c7b3c0604e44b
ec30e4cdae90325020173a41fea43e64d0aad54e
fix: propagate requesting frame through sync permission checks (#50679) WebContentsPermissionHelper::CheckPermission was hardcoding GetPrimaryMainFrame() and deriving the requesting origin from web_contents_->GetLastCommittedURL(), so the setPermissionCheckHandler callback always received the top frame's origin and de...
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1767,7 +1767,8 @@ bool WebContents::CheckMediaAccessPermission(\n content::WebContents::FromRenderFrameHost(render_frame_host);\n auto* permission_helper =\n WebContentsPermissionHelper::FromWebContents(web_contents);\n-...
2026-04-04T22:59:25
golang/go
da723e15d7492143459c65e4fecf2c17dc0fa1e4
7394184e4ecf7cd1e938b80434f057caeb5ffa58
crypto/tls: avoid atLeastReader and associated allocations. Go 1.21 introduced bytes.Buffer.AvailableBuffer. This mechanism lets us write directly into a Buffer's backing memory while also implementing custom logic without going through interfaces. atLeastReader caused an allocation on every read. On workloads with v...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -800,29 +800,6 @@ func (c *Conn) retryReadRecord(expectChangeCipherSpec bool) error {\n \treturn c.readRecordOrCCS(expectChangeCipherSpec)\n }\n \n-// atLeastReader reads from R, stopping with EOF once at least N bytes have been\n-// read. It is different fro...
2026-01-25T14:42:26
facebook/react
96005e445c4c6df5f222cc62d0327d4a389c339f
b5f01787949b3619ef178a2574b54e2c1043910d
Bump qs from 6.4.0 to 6.4.1 in /fixtures/packaging/webpack/prod (#35432) Bumps [qs](https://github.com/ljharb/qs) from 6.4.0 to 6.4.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ljharb/qs/blob/main/CHANGELOG.md">qs's changelog</a>.</em></p> <blockquote> <h2><strong>6.4.1</st...
[ { "path": "fixtures/packaging/webpack/prod/yarn.lock", "patch": "@@ -936,8 +936,8 @@ punycode@^1.2.4, punycode@^1.4.1:\n resolved \"https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e\"\n \n qs@~6.4.0:\n- version \"6.4.0\"\n- resolved \"https://registry.ya...
2026-03-12T15:38:41
electron/electron
2c6332a7d6361b48ff598761ac18af7ed08e037d
ddc1bd955310b66c3b6e7a236b0dd92344b9ffb2
fix: resolve getFileHandle concurrent stalling by queuing callbacks (#50597) Previously, concurrent calls to FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess for the same file path would silently discard the subsequent callbacks because the internal callback map used a single callback per file path and s...
[ { "path": "shell/browser/file_system_access/file_system_access_permission_context.cc", "patch": "@@ -697,7 +697,11 @@ void FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess(\n content::GlobalRenderFrameHostId frame_id,\n base::OnceCallback<void(SensitiveEntryResult)> callback) {\n DCH...
2026-04-03T16:04:55
golang/go
7394184e4ecf7cd1e938b80434f057caeb5ffa58
f48684c59cf9dce53468e4ae610d5e90739602b5
crypto/ed25519: use FIPS 140-3 GenerateKey and enforce fips140=only Fixes #77594 Change-Id: I2685931ec37d9beb99de2e0398ab6f456a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/745800 Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Ju...
[ { "path": "src/crypto/ed25519/ed25519.go", "patch": "@@ -160,6 +160,19 @@ func GenerateKey(random io.Reader) (PublicKey, PrivateKey, error) {\n \t\t}\n \t}\n \n+\tif fips140only.Enforced() && !fips140only.ApprovedRandomReader(random) {\n+\t\treturn nil, nil, errors.New(\"crypto/ed25519: only crypto/rand.Rea...
2026-02-15T15:02:33
nodejs/node
60f19bc0894eb20f9e525c27b561ef322039382a
7e3c24480457bbe0883505f67535177548fe1b8e
doc: fix 'transfered' typo in quic.md PR-URL: https://github.com/nodejs/node/pull/62492 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
[ { "path": "doc/api/quic.md", "patch": "@@ -519,7 +519,7 @@ added: v23.8.0\n \n Sends an unreliable datagram to the remote peer, returning the datagram ID.\n If the datagram payload is specified as an `ArrayBufferView`, then ownership of\n-that view will be transfered to the underlying stream.\n+that view wi...
2026-03-31T12:34:32
vercel/next.js
29045997356d75c6f5dd9918a6deed534054b5b6
18430c7f9137c735f9f4f7a03d9bb6b5780cd6c3
Optimize how we track data for persistence (#89370) ## Summary Reworks how the turbo-tasks backend tracks modified tasks for persistence snapshots, reducing overhead and simplifying the snapshot lifecycle. **Key changes:** - **Replace `modified` DashMap with per-shard atomic counters + inline flags.** Instead of ma...
[ { "path": "test/e2e/filesystem-cache/next.config.js", "patch": "@@ -17,14 +17,10 @@ const nextConfig = {\n },\n },\n },\n- experimental: enableCaching\n- ? {\n- turbopackFileSystemCacheForBuild: true,\n- }\n- : {\n- turbopackFileSystemCacheForDev: false,\n- turbo...
2026-04-07T16:25:27
facebook/react
b5f01787949b3619ef178a2574b54e2c1043910d
7b5b561bd2dda205ed8f397864379003b707d4ae
Bump jws from 3.2.2 to 3.2.3 (#35373) Bumps [jws](https://github.com/brianloveswords/node-jws) from 3.2.2 to 3.2.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/brianloveswords/node-jws/releases">jws's releases</a>.</em></p> <blockquote> <h2>v3.2.3</h2> <h3>Changed</h3> <u...
[ { "path": "yarn.lock", "patch": "@@ -6015,10 +6015,10 @@ buffer-crc32@^0.2.1, buffer-crc32@^0.2.13, buffer-crc32@~0.2.3:\n resolved \"https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242\"\n integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=\n \n-buffer-e...
2026-03-12T15:38:01
electron/electron
ddc1bd955310b66c3b6e7a236b0dd92344b9ffb2
12109371d3aa06bc95bf18893748782839023a8f
fix: forward activation token from libnotify on notification click (#50568) * feat: forward activation token from libnotify notification clicks When a notification action is clicked on Linux, retrieve the activation token from libnotify (if available) via dlsym and set it using `base::nix::SetActivationToken()`. This...
[ { "path": "shell/browser/notifications/linux/libnotify_notification.cc", "patch": "@@ -4,12 +4,16 @@\n \n #include \"shell/browser/notifications/linux/libnotify_notification.h\"\n \n+#include <dlfcn.h>\n+\n+#include <array>\n #include <string>\n \n #include \"base/containers/flat_set.h\"\n #include \"base/f...
2026-04-03T15:40:36
golang/go
83d0189f8453841abef37b3262713c7f15ac2274
9a1e20beb0240df1f9dcc8e7d4d66de573828309
cmd/internal/testdir: do not fail fast when running asmcheck Print each error as they happen, and continue running. This is helpful if multiple targets fail using -all_codegen. Change-Id: Ifcb87a834662fbd4766e562ecf3ca278dcdc1af2 Reviewed-on: https://go-review.googlesource.com/c/go/+/761465 Reviewed-by: Dmitri Shural...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -696,6 +696,7 @@ func (t test) run() error {\n \t\t// against a set of regexps in comments.\n \t\tops := t.wantedAsmOpcodes(long)\n \t\tself := runtime.GOOS + \"/\" + runtime.GOARCH\n+\t\tvar lastErr error\n \t\tfor _, env := range ops.Envs(...
2026-03-30T19:16:33