repo stringclasses 11
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-10 17:52:01 |
|---|---|---|---|---|---|
facebook/react | eb2f784e752ba690f032db4c3d87daac77a5a2aa | 723b25c6444e4dcabe710ae33bc93cea79324428 | Add hint for Node.js cjs-module-lexer for eslint-plugin-react-hook types (#34953)
<!--
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 submi... | [
{
"path": "packages/eslint-plugin-react-hooks/index.js",
"patch": "@@ -1,11 +1 @@\n module.exports = require('./src/index.ts');\n-\n-// Hint to Node’s cjs-module-lexer to make named imports work\n-// https://github.com/facebook/react/issues/34801#issuecomment-3433478810\n-// eslint-disable-next-line ft-flow... | 2025-10-22T21:51:01 |
nodejs/node | 8c380ded4606a0c719a7f8bb7914b7a8f5041d31 | 37e40040a7ff391120c1664b9145e7ccf6486a77 | async_hooks: add trackPromises option to createHook()
This adds a trackPromises option that allows users to completely opt
out of the promise hooks that are installed whenever an async hook is
added. For those who do not need to track promises, this avoids
the excessive hook invocation and the heavy overhead from it.
... | [
{
"path": "doc/api/async_hooks.md",
"patch": "@@ -144,18 +144,20 @@ function destroy(asyncId) { }\n function promiseResolve(asyncId) { }\n ```\n \n-## `async_hooks.createHook(callbacks)`\n+## `async_hooks.createHook(options)`\n \n <!-- YAML\n added: v8.1.0\n -->\n \n-* `callbacks` {Object} The [Hook Callbac... | 2026-01-28T11:25:24 |
electron/electron | 0284b9afcc1dbb7c01aac962ea585d80ac68cdd5 | 52061b4c28e0a7f208be5dbad6e4ea2e5663ffb5 | build: fixup attestation for release assets (#49732)
* build: fixup attestation for release assets
* Generate artifact attestation for generated artifacts
* set id-token for attestation
* Add artifact-metadata permission for attestation
* add permissions for testing attestations
* Revert "add permissions for test... | [
{
"path": ".github/workflows/linux-publish.yml",
"patch": "@@ -46,6 +46,7 @@ jobs:\n publish-x64:\n uses: ./.github/workflows/pipeline-segment-electron-publish.yml\n permissions:\n+ artifact-metadata: write\n attestations: write\n contents: read\n id-token: write\n@@ -65,6 +... | 2026-02-11T12:17:59 |
golang/go | 9e0b5684e1f7166d6427635673001c80218ac9f4 | b7d1c5887561ee5502b6c04baaa27ead13b63971 | net: correctly handle non-nil empty cmsg buffer on windows
Fixes #77875.
Change-Id: I0ed91be7ed10c04ddea3af55548a8dbf0be5f3a8
Reviewed-on: https://go-review.googlesource.com/c/go/+/750420
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: David Chase <drchase@goog... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -167,9 +167,11 @@ func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMs\n \tmsg := wsaMsgPool.Get().(*windows.WSAMsg)\n \tmsg.Buffers.Len = uint32(len(p))\n \tmsg.Buffers.Buf = unsafe.SliceData(p)\n-\tmsg.Control = syscall.... | 2026-03-01T16:43:57 |
facebook/react | 723b25c6444e4dcabe710ae33bc93cea79324428 | bbb7a1fdf741eed6b7adcd48a441259819d664cc | Add hint for Node.js cjs-module-lexer for eslint-plugin-react-hook types (#34951)
<!--
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 submi... | [
{
"path": "packages/eslint-plugin-react-hooks/index.js",
"patch": "@@ -1 +1,11 @@\n module.exports = require('./src/index.ts');\n+\n+// Hint to Node’s cjs-module-lexer to make named imports work\n+// https://github.com/facebook/react/issues/34801#issuecomment-3433478810\n+// eslint-disable-next-line ft-flow... | 2025-10-22T18:05:49 |
nodejs/node | 74c36584653346fa4940194380b2ab5201942dd0 | 150d154bf1ba6cc28ca6276b94117b5a2813e6c8 | build: enable -DV8_ENABLE_CHECKS flag
Fixes: https://github.com/nodejs/node/issues/61301
PR-URL: https://github.com/nodejs/node/pull/61327
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "configure.py",
"patch": "@@ -1969,7 +1969,7 @@ def configure_library(lib, output, pkgname=None):\n \n \n def configure_v8(o, configs):\n- set_configuration_variable(configs, 'v8_enable_v8_checks', release=1, debug=0)\n+ set_configuration_variable(configs, 'v8_enable_v8_checks', release=0, debug... | 2026-01-28T04:17:08 |
golang/go | b7d1c5887561ee5502b6c04baaa27ead13b63971 | 383000da24e9b32dbe3cae4c48cbb233d7c62253 | cmd/go: disallow go env -w GOROOT=...
The go command determines GOROOT from where the binary is.
It is an error to try to run a go command with a mismatched Go tree.
The only possible use for 'go env -w GOROOT=...' would be if you
copied the go executable to a new place (say, $HOME/bin) and needed
to set the default G... | [
{
"path": "src/cmd/go/internal/envcmd/env.go",
"patch": "@@ -604,7 +604,17 @@ func getOrigEnv(key string) string {\n \n func checkEnvWrite(key, val string) error {\n \tswitch key {\n-\tcase \"GOEXE\", \"GOGCCFLAGS\", \"GOHOSTARCH\", \"GOHOSTOS\", \"GOMOD\", \"GOWORK\", \"GOTOOLDIR\", \"GOVERSION\", \"GOTELE... | 2026-02-26T17:39:48 |
facebook/react | 6b344c7c5359d0113389ef92d0a6a4d5cbb76677 | 71b3a03cc936c8eb30a6e6108abf5550f5037f71 | Switch to `export =` to fix eslint-plugin-react-hooks types (#34949)
<!--
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 ... | [
{
"path": "packages/eslint-plugin-react-hooks/npm/index.d.ts",
"patch": "@@ -5,4 +5,6 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-export {default} from './cjs/eslint-plugin-react-hooks';\n+import reactHooks from './cjs/eslint-plugin-react-hooks';\n+\n+export = reactHooks;",
... | 2025-10-22T16:31:09 |
electron/electron | 1c621cc98246413e141af26bab1eb46cecc8f83f | 57a6e430252a6ca1cbc3f24a5de39e779fdf985e | docs: fix typos across documentation (#49734)
Fix 40 typos across 25 documentation files including misspellings,
missing words, doubled words, wrong words, and grammatical errors. | [
{
"path": "docs/api/app.md",
"patch": "@@ -633,7 +633,7 @@ Returns `string` - The current application directory.\n Returns `string` - A path to a special directory or file associated with `name`. On\n failure, an `Error` is thrown.\n \n-If `app.getPath('logs')` is called without called `app.setAppLogsPath()... | 2026-02-11T11:45:46 |
vercel/next.js | 885016306d325fb682e831e0e9679a0990a1e6b1 | 196ed2b83919892d45eaf7aed80852d0c9cc38c7 | docs(turbopack): Merge the contents of the "cells" page in the mdbook with our rustdocs (#91126)
Merges the content from https://turbopack-rust-docs.vercel.sh/turbo-engine/cells.html into our rustdocs. I also tried fixing the wording of a few things for accuracy, and adding a bit more detail where warranted.
Mostly, ... | [
{
"path": ".alexrc",
"patch": "@@ -3,6 +3,7 @@\n \"attacks\",\n \"color\",\n \"dead\",\n+ \"dirty\",\n \"execute\",\n \"executed\",\n \"executes\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/crates/turbo-tasks/README.md",
... | 2026-03-11T22:22:34 |
nodejs/node | 8fd5f6be79aa992c4b5130f403d2ba7a69f87d8d | e15541524280039c6f325093630d75baeb55e3d3 | test: ensure removeListener event fires for once() listeners
Adds test coverage for the removeListener event being emitted
when a once() listener is automatically removed after execution.
This verifies that streams and other EventEmitters correctly
emit removeListener events when once() wrappers clean up.
PR-URL: htt... | [
{
"path": "lib/events.js",
"patch": "@@ -687,9 +687,10 @@ EventEmitter.prototype.removeListener =\n this._events = { __proto__: null };\n } else {\n delete events[type];\n- if (events.removeListener)\n- this.emit('removeListener', type, list.listener || listen... | 2026-01-27T19:37:53 |
golang/go | 383000da24e9b32dbe3cae4c48cbb233d7c62253 | b9545da71c2f5e93355d82a1f9b5ead02f2bc617 | cmd/internal/obj: fix indirect tail call code
The assembler isn't handling this correctly for most architectures.
Of course, the two I tried first, arm64 and amd64, worked, so I assumed
other archs could handle it also. Apparently not.
Should fix dashboard failures introduced by CL 751465.
Change-Id: I9fc4f123d11acf... | [
{
"path": "src/cmd/internal/obj/arm/obj5.go",
"patch": "@@ -352,16 +352,25 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\tcase obj.ARET:\n \t\t\tnocache(p)\n+\n+\t\t\tretSym, retReg := p.To.Sym, p.To.Reg\n+\t\t\tif retReg == obj.REG_NONE {\n+\t\t\t\tretReg = REGLINK\n... | 2026-03-06T23:44:41 |
electron/electron | 57a6e430252a6ca1cbc3f24a5de39e779fdf985e | ef5b232e9f734f8448a70a7dec10b8270d1df882 | fix: revoke Read access after removing file via FileSystemAccess API (#49620)
Refs https://chromium-review.googlesource.com/6677249 | [
{
"path": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -36,6 +36,7 @@\n #include \"shell/browser/web_contents_permission_helper.h\"\n #include \"shell/common/gin_converters/callback_converter.h\"\n #include \"shell/common/gin_converters/file_path_converter.h\"\n+... | 2026-02-10T14:48:05 |
vercel/next.js | 196ed2b83919892d45eaf7aed80852d0c9cc38c7 | 9848d22842049693526f18bb5788e6d7fbc62fc4 | Fix syntax contexts in server action transform (#91210)
```
let x: Ident = IdentName::new(name, span).into();
```
should never be done. It uses `SyntaxContext::default()` for the Ident. So from swc's perspective, you are referring to a different variable than you think. When constructing an `Ident`, you should usually... | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -481,12 +481,15 @@ impl<C: Comments> ServerActions<C> {\n ) -> Box<Expr> {\n let mut new_params: Vec<Param> = vec![];\n \n+ let closure_bound_ident =\n+ Ident::new(atom!(\"$$ACTION_CLOSURE_... | 2026-03-11T21:16:01 |
facebook/react | 71b3a03cc936c8eb30a6e6108abf5550f5037f71 | 39c6545cef85b5251e519080fd315bff728d87de | [forgive] Various fixes to prepare for internal sync (#34928)
Fixes a few small things:
- Update imports to reference root babel-plugin-react-compiler rather
than from `[...]/src/...`
- Remove unused cosmiconfig options parsing for now
- Update type exports in babel-plugin-react-compiler accordingly | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/index.ts",
"patch": "@@ -29,10 +29,13 @@ export {\n ProgramContext,\n tryFindDirectiveEnablingMemoization as findDirectiveEnablingMemoization,\n findDirectiveDisablingMemoization,\n+ defaultOptions,\n type CompilerPipelineValue,\n type ... | 2025-10-21T14:57:18 |
nodejs/node | 7c9f5db055f570be454e54f63ca0ed7a4454c625 | 720fefff6ac151a896128b8db95967f9bfa2e21b | doc: added `requestOCSP` option to `tls.connect`
Fixes #61042
Put a period at the end of the line
Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/61064
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/tls.md",
"patch": "@@ -1737,6 +1737,9 @@ changes:\n verification fails. The method should return `undefined` if the `servername`\n and `cert` are verified.\n * `session` {Buffer} A `Buffer` instance, containing TLS session.\n+ * `requestOCSP` {boolean} If `true`, specifies that... | 2026-01-27T11:23:35 |
vercel/next.js | b1db02697c8b856ab7298ba72f4fd9e6aa7df302 | 29812f268ed0307ed91c224c8f55d48ee683c6c4 | fix(turbopack): unref ThreadsafeFunctions to allow Node.js exit after build (#91107)
## What?
Calls `unref()` on the `ThreadsafeFunction`s created in
`NapiNextTurbopackCallbacks::from_js` (`throw_turbopack_internal_error`
and `on_before_deferred_entries`).
## Why?
These `ThreadsafeFunction`s are not unref'd, which ... | [
{
"path": "crates/next-napi-bindings/src/next_api/project.rs",
"patch": "@@ -421,7 +421,7 @@ pub fn project_new(\n turbo_engine_options: NapiTurboEngineOptions,\n napi_callbacks: NapiNextTurbopackCallbacksJsObject,\n ) -> napi::Result<JsObject> {\n- let napi_callbacks = NapiNextTurbopackCallbacks... | 2026-03-11T19:05:52 |
facebook/react | 39c6545cef85b5251e519080fd315bff728d87de | 613cf80f263663f2c9923324ca41591c230c20ad | Fix indices of hooks in devtools when using useSyncExternalStore (#34547)
## Summary
This PR updates getChangedHooksIndices to account for the fact that
useSyncExternalStore internally mounts two hooks, while DevTools should
treat it as a single user-facing hook.
It introduces a helper isUseSyncExternalStoreHook to ... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -1913,6 +1913,20 @@ export function attach(\n return false;\n }\n \n+ function isUseSyncExternalStoreHook(hookObject: any): boolean {\n+ const queue = hookObject.queue;\n+ if (!queue) {\n+ return false;\... | 2025-10-21T12:59:20 |
electron/electron | 99fce5b6ca171ac92649ee6a71f89d967e331208 | 7c66112e88e8401d07d1c2ce14e010e8093dd63e | fix: address upstream Chromium shift to enable `CoreAudio Tap API` for audio capture used in electron's `desktopCapturer` (🍏 macOS). (#49717)
* fix: Enable CoreAudio Tap API for Audio Capture (🍏 macOS)
* fix: addressed markdown issue which caused pre-commit hook failure
🧑🔧 : Ref : https://github.com/electron/e... | [
{
"path": "docs/api/desktop-capturer.md",
"patch": "@@ -94,18 +94,45 @@ The `desktopCapturer` module has the following methods:\n Returns `Promise<DesktopCapturerSource[]>` - Resolves with an array of [`DesktopCapturerSource`](structures/desktop-capturer-source.md) objects, each `DesktopCapturerSource` repr... | 2026-02-10T14:06:21 |
nodejs/node | 720fefff6ac151a896128b8db95967f9bfa2e21b | e33ce7a6fe6caf8c84663c446913e7f6f46a62aa | test: fix flaky debugger test
PR-URL: https://github.com/nodejs/node/pull/58324
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> | [
{
"path": "test/parallel/test-debugger-break.js",
"patch": "@@ -53,6 +53,7 @@ const cli = startCLI([script]);\n 'marks the debugger line');\n \n await cli.command('sb(\"break.js\", 6)');\n+ await cli.waitFor(/> 6.*[.\\s\\S]*debug>/);\n assert.doesNotMatch(cli.output, /Could not resolve breakpoint/)... | 2026-01-27T04:49:02 |
golang/go | 90b428ebf565f61a8ef13d2b6a59c55704923c74 | ec3373e379696c5d9ba6874caed34a309a76181b | net: skip TestListenIPv6WildcardAddr on platforms w/o IPv4-mapped IPv6
On these platforms, Listen and friends default to IPv4 for wildcard
addresses (unless network is "tcp6" or "udp6") due to lack of support
for dual-stack IPv6 sockets (IPV6_V6ONLY=0).
Fixes #77945.
Change-Id: I50c4be1d4fd620dd997d4d0f02bd74e8e41e4... | [
{
"path": "src/net/ipsock_test.go",
"patch": "@@ -283,19 +283,15 @@ func TestAddrListPartition(t *testing.T) {\n }\n \n func TestListenIPv6WildcardAddr(t *testing.T) {\n-\tswitch runtime.GOOS {\n-\tcase \"js\", \"wasip1\":\n+\tif runtime.GOOS == \"js\" || runtime.GOOS == \"wasip1\" {\n \t\tt.Skip(\"fake net... | 2026-03-04T18:11:01 |
facebook/react | 613cf80f263663f2c9923324ca41591c230c20ad | ea0c17b0952e2b866a1f0dd4b5ac28c7df9d8518 | [DevTools] chore: add useSyncExternalStore examples to shell (#34932)
Few examples of using `useSyncExternalStore` that can be useful for
debugging hook tree reconstruction logic and hook names parsing feature. | [
{
"path": "packages/react-devtools-shell/src/app/InspectableElements/InspectableElements.js",
"patch": "@@ -20,6 +20,7 @@ import SimpleValues from './SimpleValues';\n import SymbolKeys from './SymbolKeys';\n import UseMemoCache from './UseMemoCache';\n import UseEffectEvent from './UseEffectEvent';\n+import... | 2025-10-21T12:51:44 |
electron/electron | fd0108907a1623433f3aaf2ece4bca318f60873a | 3fa3e91f90ccb23f88d156fc8671ec4abfb652ae | build: fixup build attestation (#49730) | [
{
"path": "script/release/uploaders/upload.py",
"patch": "@@ -376,7 +376,7 @@ def upload_io_to_github(release, filename, filepath, version):\n github_output.write(\",\")\n else:\n github_output.write('UPLOADED_PATHS=')\n- github_output.write(filename)\n+ github_output.write(o... | 2026-02-09T16:50:17 |
vercel/next.js | 21b9f6ba53a82ecf99acbeb795fbe4cf16f6b762 | 19ff1babf0f47363194b66f6fccc2c82109a26d8 | fix: correct appPaths sort order for parallel routes with route groups (#91160)
### What?
Fixes webpack dev 404s when parallel routes have children nested inside
a route group (e.g. `@slot` + `(b1)/page`) and when a parallel route has
`page.tsx` directly inside it (e.g. `@slot/page.tsx`).
### Why?
Two separate issu... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -43,7 +43,10 @@ import {\n } from './utils'\n import { normalizePagePath } from '../shared/lib/page-path/normalize-page-path'\n import type { ServerRuntime } from '../types'\n-import { normalizeAppPath } from '../shared/lib/router/utils/app-paths'... | 2026-03-11T16:03:50 |
nodejs/node | 6beb65e00ef197fdfc392f79e7836bc1761bfd3d | d14b484c73ff15010e51b0f290845306b0443d47 | 2026-01-26, Version 25.5.0 (Current)
Notable changes:
crypto:
* update root certificates to NSS 3.119 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/61419
deps:
* (SEMVER-MINOR) add LIEF as a dependency (Joyee Cheung) https://github.com/nodejs/node/pull/61167
* (SEMVER-MINOR) add tools and scripts to ... | [
{
"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.4.0\">25.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V25.md#25.5.0\">25.5.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V25.md#25.4.0\">2... | 2026-01-26T12:42:25 |
golang/go | bbed50aaa3033c9be6a5268268a7faf226be9de0 | de5c138eef88685442dc71e36dd98d66b885a605 | cmd/link: sort .pdata by function start address
Loosely based on CL 678795.
The PE/COFF spec requires RUNTIME_FUNCTION entries in the .pdata
section to be ordered by their function start address. Previously
the linker emitted them in symbol order.
An unsorted table triggers the MSVC linker error:
fatal error LN... | [
{
"path": "src/cmd/cgo/internal/test/seh_internal_windows_test.go",
"patch": "@@ -1,16 +0,0 @@\n-// Copyright 2024 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 cgo && windows && internal\n-\n-... | 2026-02-10T13:21:15 |
facebook/react | ea0c17b0952e2b866a1f0dd4b5ac28c7df9d8518 | 031595d720955723a0dab67068abc3db759cbc69 | [compiler] loosen computed key restriction for compiler (#34902)
We have a whole ton of compiler errors due to us using a helper to
return breakpoints for CSS-in-js, which results in code like:
```
const styles = {
[responsive.up('xl')]: { ... }
}
```
this results in TONS of bailouts due to `(BuildHIR::lowerExpres... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -1568,20 +1568,6 @@ function lowerObjectPropertyKey(\n name: key.node.value,\n };\n } else if (property.node.computed && key.isExpression()) {\n- if (!key.isIdentifier() && !key.isMemberExpression()) {... | 2025-10-20T20:52:11 |
electron/electron | 3fa3e91f90ccb23f88d156fc8671ec4abfb652ae | a3563422c471adb2298f728184bedb053a5110e4 | docs: fix framerate limit when osr with shared texture (#49705) | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -2168,7 +2168,7 @@ Returns `boolean` - If _offscreen rendering_ is enabled returns whether it is cu\n * `fps` Integer\n \n If _offscreen rendering_ is enabled sets the frame rate to the specified number.\n-Only values between 1 and 240 are accepted.\n+When ... | 2026-02-09T14:18:06 |
golang/go | de5c138eef88685442dc71e36dd98d66b885a605 | 8933fb98f309443a5ca3aeda2163017737dbe795 | encoding/json: unwrap IO errors from SyntacticError in transformSyntacticError
When GOEXPERIMENT=jsonv2 is enabled, transformSyntacticError has a
case for bare IO errors (export.IsIOError), but this case is never
reached when the IO error is wrapped inside a *jsontext.SyntacticError.
This happens because consumeObjec... | [
{
"path": "src/encoding/json/v2_scanner.go",
"patch": "@@ -56,6 +56,11 @@ var errUnexpectedEnd = errors.New(\"unexpected end of JSON input\")\n func transformSyntacticError(err error) error {\n \tswitch serr, ok := err.(*jsontext.SyntacticError); {\n \tcase serr != nil:\n+\t\t// If the SyntacticError wraps ... | 2026-02-25T11:07:25 |
nodejs/node | 644ba1f7e6cc67d9b68083897abd7b602a3c548f | a27052f2e0471b154b9911bd554c2d537264aa3a | module: do not wrap module._load when tracing is not enabled
This prevents clobbering the stack traces with another internal
frame and removes the unnecessary hoops from step-debugging.
PR-URL: https://github.com/nodejs/node/pull/61479
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Marco Ippolito... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -238,15 +238,21 @@ let statCache = null;\n function wrapModuleLoad(request, parent, isMain) {\n const logLabel = `[${parent?.id || ''}] [${request}]`;\n const traceLabel = `require('${request}')`;\n+ const channel = onRequire();\n \n startT... | 2026-01-26T11:20:53 |
vercel/next.js | 187f35f28721bf633ff9082d90d123f1347cfc47 | ff36c17c142d8cea81fa4b370b3288aa60e78d07 | Add experimental.lightningCssFeatures config option (#90901)
### What?
Adds a new `experimental.lightningCssFeatures` config option that lets
users control which CSS features lightningcss should always transpile
(`include`) or never transpile (`exclude`), regardless of browserslist
targets.
```js
// next.config.js
m... | [
{
"path": "Cargo.lock",
"patch": "@@ -4542,6 +4542,7 @@ dependencies = [\n \"indexmap 2.13.0\",\n \"indoc\",\n \"itertools 0.10.5\",\n+ \"lightningcss\",\n \"mime_guess\",\n \"modularize_imports\",\n \"next-custom-transforms\",\n@@ -4636,6 +4637,7 @@ dependencies = [\n \"futures-util\",\n \"getrando... | 2026-03-11T07:06:52 |
facebook/react | 3cde211b0cb1c707114c27d7fd23683d02086e31 | 1d3664665b4e52bd1daee775e1e95feb563799d9 | React DevTools 7.0.0 -> 7.0.1 (#34926)
Full list of changes:
* Text layout fixes for stack traces with badges
([eps1lon](https://github.com/eps1lon) in
[#34925](https://github.com/facebook/react/pull/34925))
* chore: read from build/COMMIT_SHA fle as fallback for commit hash
([hoxyq](https://github.com/hoxyq) in
[#34... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"7.0.0\",\n+ \"version\": \"7.0.1\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2025-10-20T17:39:28 |
electron/electron | a3563422c471adb2298f728184bedb053a5110e4 | 9db2290bcddd5a6e1c1f40000e0272be49bd1a10 | ci: fix patches changes detected in apply patches workflow (#49701) | [
{
"path": ".github/workflows/apply-patches.yml",
"patch": "@@ -66,6 +66,7 @@ jobs:\n git config user.name \"Electron Bot\"\n git fetch origin refs/pull/${PR_NUMBER}/head\n git merge --squash FETCH_HEAD\n+ git commit -n -m \"Squashed commits\"\n - name: Checkout & Sync & Sa... | 2026-02-06T21:48:30 |
rust-lang/rust | eca09dedef8d8d94a099f800045b013570d7569a | b17670d3de2f62acba94abf3560cd002a75db42f | fix tests | [
{
"path": "src/etc/lldb_lookup.py",
"patch": "@@ -91,7 +91,18 @@ def classify_rust_type(type: lldb.SBType, is_msvc: bool) -> RustType:\n \n def synthetic_lookup(valobj: lldb.SBValue, _dict: LLDBOpaque) -> object:\n \"\"\"Returns the synthetic provider for the given value\"\"\"\n- is_msvc = valobj.Get... | 2025-11-15T10:28:56 |
golang/go | ef160abf2dc24fbf8d8c34a7ca18b2c1d2f60e7f | 07e487bc5ceb05d5fdbbec3c66f75a8a36460038 | cmd/go: avoid repetitive "invalid version" error on go get
When go get encounters an invalid version string like "branch/with/slash",
the error message redundantly repeats the version information:
go get: pkg@branch/with/slash: invalid version: version "branch/with/slash" invalid: disallowed version string
This ha... | [
{
"path": "src/cmd/go/internal/modfetch/proxy.go",
"patch": "@@ -238,13 +238,17 @@ func (p *proxyRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error\n // versionError returns err wrapped in a ModuleError for p.path.\n func (p *proxyRepo) versionError(version string, err error) error {\n \tif v... | 2026-02-12T11:32:16 |
nodejs/node | a27052f2e0471b154b9911bd554c2d537264aa3a | 5e104c8c03c4b466acd333a32767d4bd1cf89608 | Revert "inspector: fix compressed responses"
This reverts commit 186c7a9c74eaeb5742792d00fc098ecf2e971ed9.
PR-URL: https://github.com/nodejs/node/pull/61502
Fixes: https://github.com/nodejs/node/issues/61501
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Lu... | [
{
"path": "lib/internal/inspector/network.js",
"patch": "@@ -10,15 +10,8 @@ const {\n const dc = require('diagnostics_channel');\n const { now } = require('internal/perf/utils');\n const { MIMEType } = require('internal/mime');\n-const {\n- createGunzip,\n- createInflate,\n- createBrotliDecompress,\n- c... | 2026-01-26T11:10:23 |
vercel/next.js | ff36c17c142d8cea81fa4b370b3288aa60e78d07 | 38a1d1d73b6104230ba4cf5836201ba47262cab5 | [turbopack] Render code frames on the turbopack side (#90534)
Not that error rendering performance is critical, but it is silly to pass frame information from turbopack to js just to have js pass the same information back to native code to draw a frame. | [
{
"path": "Cargo.lock",
"patch": "@@ -4650,12 +4650,14 @@ dependencies = [\n \"once_cell\",\n \"owo-colors\",\n \"rand 0.10.0\",\n+ \"regex\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n \"serde_json\",\n \"supports-hyperlinks\",\n \"swc_core\",\n \"terminal_hyperlink\",\n+ \"terminal_size\",\n \"tokio... | 2026-03-11T01:52:40 |
facebook/react | 1d3664665b4e52bd1daee775e1e95feb563799d9 | 2bcbf254f168ddec567156f802d19315e64e4aa8 | [DevTools] Text layout fixes for stack traces with badges (#34925) | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.css",
"patch": "@@ -3,8 +3,9 @@\n }\n \n .CallSite, .BuiltInCallSite {\n- display: block;\n+ display: flex;\n padding-left: 1rem;\n+ white-space-collapse: preserve;\n }\n \n .IgnoredCallSite, .BuiltInCallSite {\n@@ -... | 2025-10-20T17:33:47 |
golang/go | 07e487bc5ceb05d5fdbbec3c66f75a8a36460038 | e36ae89c186a5220075ef3ee0b7e2a41470fa6dc | cmd/go: exclude vendor directories in go work use -r
When using "go work use -r" to recursively add modules, vendor
directories are incorrectly included. Modules under vendor/ are
managed by "go mod vendor" and should not be added to go.work.
The WalkDir callback in workUse did not skip directories named
"vendor", un... | [
{
"path": "src/cmd/go/internal/workcmd/use.go",
"patch": "@@ -163,6 +163,9 @@ func workUse(ctx context.Context, s *modload.State, gowork string, wf *modfile.W\n \t\t\t\t}\n \t\t\t\treturn nil\n \t\t\t}\n+\t\t\tif d.Name() == \"vendor\" {\n+\t\t\t\treturn filepath.SkipDir\n+\t\t\t}\n \t\t\tlookDir(path)\n \t... | 2026-02-12T10:50:43 |
nodejs/node | c1402c66449372e8e0d1e62d8d7487df52fd233c | 8117cb03f49e72fc24174f33471669225e3bbaa9 | process: do not truncate long strings in `--print`
Fixes: https://github.com/nodejs/node/issues/61337
PR-URL: https://github.com/nodejs/node/pull/61497
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "lib/internal/process/execution.js",
"patch": "@@ -455,8 +455,12 @@ function runScriptInContext(name, body, breakFirstLine, print, module, baseUrl,\n if (print) {\n const { log } = require('internal/console/global');\n \n- process.on('exit', () => {\n- log(result);\n+ const printR... | 2026-01-25T21:41:07 |
vercel/next.js | 7640d0bd3c35575ddc8937be4552664a52135b7b | c44558be7ad89a6dab7c20bb2cd23218b49a90ad | [turbopack] hashing improvements to turbo-persistence (#90936)
## Summary
Reduces CPU overhead in turbo-persistence SST reads through three optimizations:
1. **Switch from `twox-hash` to `xxhash-rust`** — `twox_hash::XxHash3_64::with_seed(0)` heap-allocates a 192-byte secret buffer on every call. `xxhash_rust::xxh3:... | [
{
"path": "Cargo.lock",
"patch": "@@ -4031,7 +4031,7 @@ version = \"0.11.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5\"\n dependencies = [\n- \"twox-hash 1.6.3\",\n+ \"twox-hash\",\n ]\n \n [[package]... | 2026-03-11T00:01:43 |
electron/electron | 9db2290bcddd5a6e1c1f40000e0272be49bd1a10 | 60d35bbaf4b52287c37b09e4f343fd8959998afb | fix: restore macos 12 support in Node 24 (#49697) | [
{
"path": "patches/node/.patches",
"patch": "@@ -46,3 +46,4 @@ test_make_buffer_sizes_32bit-aware_in.patch\n src_refactor_module_wrap_cc_to_update_fixedarray_get_params.patch\n src_refactor_wasmstreaming_finish_to_accept_a_callback.patch\n src_stop_using_v8_propertycallbackinfo_t_this.patch\n+build_restore_... | 2026-02-06T15:48:37 |
golang/go | 0359353574980629e42c73f7ed54397f7fdff321 | 6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8 | net/url: add Values.Clone
This change implements a method Clone on Values
that creates a deep copy of all of the subject's
consistent values.
CL 746800 added URL.Clone and this one therefore closes
out the feature.
Fixes #73450
Change-Id: I6fb95091c856e43063ab641c03034e1faaff8ed6
Reviewed-on: https://go-review.goog... | [
{
"path": "api/next/73450.txt",
"patch": "@@ -1 +1,2 @@\n pkg net/url, method (*URL) Clone() *URL #73450\n+pkg net/url, method (Values) Clone() Values #73450",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/net/url/73450.md",
"patch"... | 2026-02-18T23:12:01 |
facebook/react | 2bcbf254f168ddec567156f802d19315e64e4aa8 | aaad0ea055ce0c10b263db8505338cb1eedb86de | [compiler] Fix false positive for useMemo reassigning context vars (#34904)
Within a function expression local variables may use StoreContext for
local context variables, so the reassignment check here was firing too
often. We should only report an error for variables that are declared
outside the function, ie part of... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateUseMemo.ts",
"patch": "@@ -184,25 +184,28 @@ function validateNoContextVariableAssignment(\n fn: HIRFunction,\n errors: CompilerError,\n ): void {\n+ const context = new Set(fn.context.map(place => place.identifier.id));\n ... | 2025-10-20T15:42:04 |
rust-lang/rust | ccc3c0116283371b0ae351a10f3fdbb3e3163805 | a25435bcf7cfc9b953d356eda3a51db8da9e3386 | Use `Hcx`/`hcx` consistently for `StableHashingContext`.
The `HashStable` and `ToStableHashKey` traits both have a type parameter
that is sometimes called `CTX` and sometimes called `HCX`. (In practice
this type parameter is always instantiated as `StableHashingContext`.)
Similarly, variables with these types are some... | [
{
"path": "compiler/rustc_ast/src/ast.rs",
"patch": "@@ -120,8 +120,8 @@ impl PartialEq<&[Symbol]> for Path {\n }\n }\n \n-impl<CTX: rustc_span::HashStableContext> HashStable<CTX> for Path {\n- fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher) {\n+impl<Hcx: rustc_span::HashStableContext... | 2026-03-31T07:50:03 |
nodejs/node | 3fed9fbc0b8acd7d37f9079abe3df67d66aafa95 | 680ee6ee6626069418b7f63a07d152be4382e15c | src: throw RangeError on failed ArrayBuffer BackingStore allocation
This also updates `ERR_MEMORY_ALLOCATION_FAILED` to be a RangeError,
aligning with V8's OutOfMemory error type.
PR-URL: https://github.com/nodejs/node/pull/61480
Refs: https://github.com/nodejs/node/blob/c755b0113ce0cb6d83baf2cf070ba381a5673db2/deps/... | [
{
"path": "src/encoding_binding.cc",
"patch": "@@ -17,6 +17,7 @@ namespace encoding_binding {\n using v8::ArrayBuffer;\n using v8::BackingStore;\n using v8::BackingStoreInitializationMode;\n+using v8::BackingStoreOnFailureMode;\n using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::HandleScope;\... | 2026-01-25T15:18:45 |
vercel/next.js | f1f83236d26b1e5e2a503d5aabf31778674e19fd | 36698c94634949eda9eb7d870416097072d6b75c | [turbopack] Add support for fixed key blocks (#90844)
## What?
Adds fixed-size key block types to turbo-persistence SST files. When all entries in a key block share the same key size and value type, the 4-byte-per-entry offset table is eliminated entirely. Entry positions become a direct arithmetic calculation: `head... | [
{
"path": "turbopack/crates/turbo-persistence/README.md",
"patch": "@@ -108,7 +108,7 @@ The hashes are sorted.\n \n `n` is `(block size + 1) / 10`\n \n-#### Key Block\n+#### Key Block (variable-size)\n \n - 1 byte block type (1: key block with hash, 2: key block without hash)\n - 3 bytes entry count\n@@ -15... | 2026-03-10T22:22:09 |
electron/electron | 15dc7170ef2e432e8f340ab7242dea2d5e932f74 | 59e434a27fe80bd9182a4067f05e7f620d28f735 | ci: fix ai-pr label commenting (#49685) | [
{
"path": ".github/workflows/pull-request-labeled.yml",
"patch": "@@ -60,6 +60,7 @@ jobs:\n with:\n actions: 'create-comment'\n token: ${{ steps.generate-token.outputs.token }}\n+ issue-number: ${{ github.event.pull_request.number }}\n body: |\n <!-- ai-pr -->\... | 2026-02-05T19:27:46 |
golang/go | 6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8 | 73db2f85aab25c06f47c832364600d2c5e243ffa | testing: fix construction of the testing artifacts path
The existing implementation had a few problems:
- It constructs a path which starts with a forward slash, which is
then immediately rejected by filepath.Localize() as invalid.
- It did not correctly remove the module path from the import path if
the test was in t... | [
{
"path": "src/testing/testing.go",
"patch": "@@ -1363,6 +1363,21 @@ func (c *common) makeArtifactDir() (string, error) {\n \t\treturn c.makeTempDir()\n \t}\n \n+\tartifactBase := filepath.Join(artifactDir, c.relativeArtifactBase())\n+\tif err := os.MkdirAll(artifactBase, 0o777); err != nil {\n+\t\treturn \... | 2026-03-05T00:46:20 |
facebook/react | 02c80f0d8702cb894f6ef9748e7b18ffdd388a55 | 21272a680f07cb69873eb3668e7baaebfcf05606 | [DevTools] fix: dont ship source maps for css in prod builds (#34913)
This has been causing some issues with the submission review on Firefox
store: we use OS-level paths in these source maps, which makes the build
artifact different from the one that's been submitted.
Also saves ~100Kb for main.js artifact. | [
{
"path": "packages/react-devtools-extensions/src/main/cloneStyleTags.js",
"patch": "@@ -1,5 +1,14 @@\n-function cloneStyleTags() {\n- const linkTags = [];\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE fi... | 2025-10-20T12:39:42 |
nodejs/node | 680ee6ee6626069418b7f63a07d152be4382e15c | b7bf7fef2659feb42fae468565cdb164149ee1bb | doc: remove `v` prefix for version references
PR-URL: https://github.com/nodejs/node/pull/61488
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Luigi P... | [
{
"path": "BUILDING.md",
"patch": "@@ -741,7 +741,7 @@ Refs:\n [Visual Studio 2022 (17.13 or newer)](https://visualstudio.microsoft.com/downloads/)\n or the \"C++ build tools\" workload from the\n [Build Tools](https://aka.ms/vs/17/release/vs_buildtools.exe),\n- with the default optional components. ... | 2026-01-25T09:38:06 |
vercel/next.js | ae9c9d6cd599877793eb90d49bac53102a68a9e0 | e341790630d98cad731cc05c7e1f803e88097975 | fix(css): rewrite MiniCssExtractPlugin insert function to ES5 to support legacy browsers (#90556)
## What?
Rewrite the `insert` function passed to `MiniCssExtractPlugin` in
`packages/next/src/build/webpack/config/blocks/css/index.ts` to use only
ES5-compatible syntax.
## Why?
The `insert` option of `mini-css-extrac... | [
{
"path": "packages/next/src/build/webpack/config/blocks/css/index.ts",
"patch": "@@ -612,14 +612,25 @@ export const css = curry(async function css(\n ignoreOrder: true,\n insert: function (linkTag: HTMLLinkElement) {\n if (typeof _N_E_STYLE_LOAD === 'function') {\n- ... | 2026-03-10T19:52:24 |
electron/electron | 59e434a27fe80bd9182a4067f05e7f620d28f735 | dec7f937ae20ac926e2c3ff51d5d01f99b5e3ea5 | refactor: use ComPtr pattern for MSIX to avoid exception handling (#49645)
* Revert "fix: fix Windows MSIX release build errors (#49613)"
This reverts commit 4b5d5f9dd5bb7eadec299060fc73ba1178388feb.
* refactor: use WRL ComPtr pattern for MSIX to avoid exception handling
The MSIX auto-updater code was using C++/Win... | [
{
"path": "BUILD.gn",
"patch": "@@ -420,37 +420,6 @@ action(\"electron_generate_node_defines\") {\n args = [ rebase_path(target_gen_dir) ] + rebase_path(inputs)\n }\n \n-# MSIX updater needs to be in a separate source_set because it uses C++/WinRT\n-# headers that require exceptions to be enabled.\n-sourc... | 2026-02-05T18:42:28 |
golang/go | bf1b0973db38346afae460e80d18020fa7de4e8c | 252a8adbc08f5b8ae97d2a857bf12810da54a11c | cmd/compile/internal/typecheck: simplify tcSliceHeader
types2 handles all constant-related bounds checks in user Go code now,
so it's safe to remove all constants checking in tcSliceHeader function.
Fixed #77919
Change-Id: Ibc137c84792d4898eb073cdeabac175684f73746
Reviewed-on: https://go-review.googlesource.com/c/go... | [
{
"path": "src/cmd/compile/internal/typecheck/expr.go",
"patch": "@@ -7,7 +7,6 @@ package typecheck\n import (\n \t\"fmt\"\n \t\"go/constant\"\n-\t\"go/token\"\n \t\"internal/types/errors\"\n \t\"strings\"\n \n@@ -826,18 +825,6 @@ func tcSliceHeader(n *ir.SliceHeaderExpr) ir.Node {\n \tn.Len = DefaultLit(Ex... | 2026-03-03T16:10:05 |
facebook/react | 21272a680f07cb69873eb3668e7baaebfcf05606 | 1440f4f42d59a7de4559dac972b62d9be771d1d9 | Lower case "rsc stream" debug info (#34921)
This is an aesthetic thing. Most simple I/O entries are things like
"script", "stylesheet", "fetch" etc. which are all a single word and
lower case. The "RSC stream" name sticks out and draws unnecessary
attention to itself where as it's really the least interesting to look
... | [
{
"path": "packages/internal-test-utils/debugInfo.js",
"patch": "@@ -64,7 +64,7 @@ function normalizeIOInfo(config: DebugInfoConfig, ioInfo) {\n if (promise) {\n promise.then(); // init\n if (promise.status === 'fulfilled') {\n- if (ioInfo.name === 'RSC stream') {\n+ if (ioInfo.name === ... | 2025-10-20T06:42:38 |
vercel/next.js | 1eab3361c7c60abd35fef742ee3c89affb3ca013 | 110ed228bbaaff3271c6ca116e60df24ccfae821 | fix: Use a pnpm preinstall script to fix catch-22 in next binary creation (#91016)
We've had a longstanding issue where you'd have to run `pnpm i` _twice_ on a fresh checkout because `pnpm` wouldn't set up binary symlinks until after the binary exists, but the binary wouldn't exist until after `pnpm build` was done:
... | [
{
"path": ".github/workflows/build_reusable.yml",
"patch": "@@ -300,16 +300,6 @@ jobs:\n - run: ANALYZE=1 pnpm build\n if: ${{ inputs.skipInstallBuild != 'yes' }}\n \n- # Some packages e.g. `devlow-bench` depend on `pnpm build` to generate\n- # their `dist` directory. The first run o... | 2026-03-10T18:21:15 |
nodejs/node | 146f2be146275772b9925dfa50918d5d2b83f9e4 | f70020305c5416792e5517211b53e3d6d44fc282 | node-api: fix node_api_create_object_with_properties name
PR-URL: https://github.com/nodejs/node/pull/61319
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "benchmark/napi/create_object_with_properties/binding.cc",
"patch": "@@ -58,7 +58,7 @@ static napi_value CreateObjectWithPropertiesNew(napi_env env,\n \n for (uint32_t i = 0; i < params.count; i++) {\n napi_value obj;\n- napi_create_object_with_properties(\n+ node_api_create_object_wit... | 2026-01-23T03:51:23 |
electron/electron | 50381a6d579b35b436266ba9520e18a954b3b575 | 41c7e9bb219987700db716d851b68a2226ecf9eb | refactor: don't log error just for unsigned code (#49654) | [
{
"path": "shell/common/mac/codesign_util.cc",
"patch": "@@ -106,7 +106,10 @@ bool ProcessSignatureIsSameWithCurrentApp(pid_t pid) {\n status = SecCodeCheckValidity(process_code.get(), kSecCSDefaultFlags,\n self_requirement.get());\n if (status != errSecSuccess && status ... | 2026-02-05T06:26:17 |
golang/go | 252a8adbc08f5b8ae97d2a857bf12810da54a11c | e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab | internal/runtime/maps/: devirtualize hashing for specialized maps
This change improves performance of specialized maps and opens opportunity for further improvement by inlining hashing calls in the future (right now we can't inline functions from GOASM).
MapAccessBenchmarks
goos: linux
goarch: amd64
pkg: runtime
cpu:... | [
{
"path": "src/internal/runtime/maps/runtime.go",
"patch": "@@ -14,6 +14,18 @@ import (\n )\n \n // Functions below pushed from runtime.\n+//\n+//go:noescape\n+//go:linkname memhash32 runtime.memhash32\n+func memhash32(p unsafe.Pointer, h uintptr) uintptr\n+\n+//go:noescape\n+//go:linkname memhash64 runtime... | 2026-02-24T12:16:35 |
facebook/react | 2cfb221937eac48209d01d5dda5664de473b1953 | 58bdc0bb967098f14562cd76af0668f2056459a0 | [Flight] Allow passing DEV only startTime as an option (#34912)
When you use the `createFromFetch` API we assume that the start time of
the request is the same time as when you call `createFromFetch` but in
principle you could use it with a Promise that starts earlier and just
happens to resolve to a `Response`.
When... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -2561,6 +2561,7 @@ function ResponseInstance(\n findSourceMapURL: void | FindSourceMapURLCallback, // DEV-only\n replayConsole: boolean, // DEV-only\n environmentName: void | string, // DEV-only\n+ debugStartTime: void | number,... | 2025-10-19T20:38:33 |
vercel/next.js | 51797dbd3fb8ae99ea3c39971a38c1f768e0abc4 | bfb8cc7ab3009241a540b0593142cc21dc50b18d | Trace upload: add git and environment info (#91124)
This adds the following to uploaded trace data:
- Git branch/ref name
- Whether the trace was uploaded from a Vercel environment
- Prefers Vercel git environment variable data over running git
Test Plan: Ran a manual test app with EXPERIMENTAL_FLAGS_DEBUG=1, set
th... | [
{
"path": "packages/next/src/trace/trace-uploader.ts",
"patch": "@@ -99,8 +99,10 @@ interface TraceEvent {\n interface TraceMetadata {\n anonymousId: string\n arch: string\n+ branch: string\n commit: string\n cpus: number\n+ isVercelEnvironment: boolean\n isTurboSession: boolean\n mode: string... | 2026-03-10T17:13:15 |
nodejs/node | b935a3970bd141a272e829b54ecde0f990f07eb1 | 320b2d2b49bf39cbef2f26f59ec7339f8365093b | sea: add --build-sea to generate SEA directly with Node.js binary
Instead of relying on a WASM build of postject to perform the
injection, add LIEF as dependency and generate the SEA directly
from core via a new CLI option --build-sea which takes the SEA
config. This simplifies SEA generation for users and makes it
ea... | [
{
"path": ".github/CODEOWNERS",
"patch": "@@ -152,13 +152,15 @@\n /test/parallel/test-runner-* @nodejs/test_runner\n \n # Single Executable Applications\n+/deps/LIEF @nodejs/single-executable\n /deps/postject @nodejs/single-executable\n /doc/api/single-executable-applications.md @nodejs/single-executable\n ... | 2025-12-23T23:30:32 |
electron/electron | 9740c989da1ec4d7068bc26b3110a615894a45ad | 4ea2d816b8e7296c58111054fe9e0ecff253b7eb | fix: default accelerator for role-based menu items (#49558)
fix: apply default accelerator for role-based menu items
Co-authored-by: Kimgun3383 <tygob5247@gmail.com> | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -107,7 +107,7 @@ A `string` (optional) indicating the item's role, if set. Can be `undo`, `redo`,\n \n #### `menuItem.accelerator`\n \n-An `Accelerator` (optional) indicating the item's accelerator, if set.\n+An `Accelerator | null` indicating the item's accel... | 2026-02-04T21:45:29 |
vercel/next.js | ae6406afdd6733bc57642a88cbaeef3e85442c44 | 2ecfbfc1cd4e1f7ba72dac4724efbf930ec93241 | docs(turbopack): Copy over turbopack-trace-server docs (#91111)
**Rendered:** https://github.com/vercel/next.js/blob/dd1cc6fba3cff5fbc38dac3ff4426b481bfcbcb5/contributing/turbopack/tracing.md
This is the content from https://turbopack-rust-docs.vercel.sh/tracing_turbopack.html with some minor updates:
- Use GitHub F... | [
{
"path": "contributing.md",
"patch": "@@ -25,3 +25,7 @@\n - [Adding a new feature](./contributing/core/adding-features.md)\n - [Developing Using Local App](./contributing/core/developing-using-local-app.md)\n <!-- - [Using the VS Code Debugger](./contributing/core/vscode-debugger.md) -->\n+\n+## Turbopack\... | 2026-03-09T23:04:07 |
facebook/react | 58bdc0bb967098f14562cd76af0668f2056459a0 | bf11d2fb2f01174974b7e1fa5b1c01d34936724b | [Flight] Ignore bound-anonymous-fn resources as they're not considered I/O (#34911)
When you create a snapshot from an AsyncLocalStorage in Node.js, that
creates a new bound AsyncResource which everything runs inside of.
https://github.com/nodejs/node/blob/3437e1c4bd529e51d96ea581b6435bbeb77ef524/lib/internal/async_... | [
{
"path": "packages/react-server/src/ReactFlightServerConfigDebugNode.js",
"patch": "@@ -142,10 +142,28 @@ export function initAsyncDebugInfo(): void {\n }: UnresolvedPromiseNode);\n }\n } else if (\n- type !== 'Microtask' &&\n- type !== 'TickObject' &&\n- ... | 2025-10-19T18:56:56 |
golang/go | e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab | 50d988e4e037d9d41ac223a62706dfea47a100e4 | cmd/compile: use tail calls for wrappers for embedded interfaces
type I interface {
foo()
}
type S struct {
I
}
Because I is embedded in S, S needs a foo method. We generate a
wrapper function to implement (*S).foo. It just loads the embedded
field I out of S and calls foo on it.
When the thing in S.I its... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1306,14 +1306,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \t\tr := v.Reg()\n \t\tgetgFromTLS(s, r)\n-\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail:\n+\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail, ssa.OpAMD64CALLt... | 2026-03-05T00:07:30 |
electron/electron | 6a47bb47315d68570db2767e91cb2d6ff0bc996f | ef11669b67c6b025207077c27b3beb04a72722a0 | fix: use `temp` directory for singleton test and clean up at end (#49604)
* fix: create directory for singleton test in `temp` instead of `home`
* fix: remove directory for singleton test at test end
* refactor: avoid extraneous declarations in singleton test
* refactor: reintroduce `userDataFolder` declaration in ... | [
{
"path": "spec/fixtures/api/singleton-userdata/main.js",
"patch": "@@ -3,11 +3,17 @@ const { app } = require('electron');\n const fs = require('node:fs');\n const path = require('node:path');\n \n+const userDataFolder = path.join(app.getPath('temp'), 'electron-test-singleton-userdata');\n+\n // non-existen... | 2026-02-04T19:43:36 |
facebook/react | ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4 | 40c7a7f6cac62bd6721328524cc787475ce026eb | Resolve the .default export of a React.lazy as the canonical value (#34906)
For debug purposes this is the value that the `React.lazy` resolves to.
It also lets us look at that value for descriptions like its name. | [
{
"path": "packages/react/src/ReactLazy.js",
"patch": "@@ -20,6 +20,8 @@ import {enableAsyncDebugInfo} from 'shared/ReactFeatureFlags';\n \n import {REACT_LAZY_TYPE} from 'shared/ReactSymbols';\n \n+import noop from 'shared/noop';\n+\n const Uninitialized = -1;\n const Pending = 0;\n const Resolved = 1;\n@@... | 2025-10-19T18:56:25 |
vercel/next.js | 4e2353edb2ee1b7b6ab96c3d844fed3713a7cc18 | c0bf4b6f00044805f0ed29f6d7a57fc96b6b2fbc | fix: app-page URL normalization (#91121)
## Summary
Fix an App Router request normalization gap where app-page route-module
requests could keep internal RSC/segment-prefetch URLs in `req.url`.
This could leak paths like:
- `.../.segments/_tree.segment.rsc`
- `.../__PAGE__.segment.rsc`
into App Router render state ... | [
{
"path": "packages/next/src/server/route-modules/app-page/module.ts",
"patch": "@@ -32,6 +32,7 @@ import { RSCPathnameNormalizer } from '../../normalizers/request/rsc'\n import { SegmentPrefixRSCPathnameNormalizer } from '../../normalizers/request/segment-prefix-rsc'\n import type { UrlWithParsedQuery } fr... | 2026-03-09T23:01:35 |
nodejs/node | 20b62ff488af5fac547931ed73cf07cbff286ff9 | 34abee5b3bd3576fc8b01dd012a430e173adc08c | test: use fixture directories for sea tests
Instead of copying and writing files on the fly for SEA tests,
put the fixtures into a directory and copy them into tmpdir
for testing. This allows easier reproduction and debugging
when they do fail - we can just copy the entire fixture directory
and test directly from ther... | [
{
"path": "test/common/sea.js",
"patch": "@@ -4,6 +4,9 @@ const common = require('../common');\n const fixtures = require('../common/fixtures');\n const tmpdir = require('../common/tmpdir');\n const { inspect } = require('util');\n+const fs = require('fs');\n+const path = require('path');\n+const assert = r... | 2026-01-01T14:37:58 |
golang/go | 50d988e4e037d9d41ac223a62706dfea47a100e4 | bf84b002d64d0b150818268e520fee0172a5c462 | runtime: when panicking, skip ahead to previous panic
While looking up the stack for a defer to run, if we come across
a panic frame we can skip ahead (up) to where the previous panic
was looking for a defer to run.
Switch from keeping LR (the caller's pc) to PC (the frame's PC).
Seems easier to reason about.
Fixes ... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -920,7 +920,7 @@ func (p *_panic) start(pc uintptr, sp unsafe.Pointer) {\n \t// caller instead, we avoid needing to unwind through an extra\n \t// frame. It also somewhat simplifies the terminating condition for\n \t// deferreturn.\n-\tp.lr, p.fp = pc, sp\n+\tp... | 2026-01-12T23:05:24 |
electron/electron | 431f77ca1c265a347ce3cc5376aed129bf4f0f89 | 51a9101c3de7794baad9c35cce57adecf9ea3ad3 | fix: remove menu observer before destroying menu_controller_ (#49648)
* fix: remove menu observer before destroying menu_controller_
* fix: resolves private inheritance conflict | [
{
"path": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -68,6 +68,10 @@ Menu::Menu(gin::Arguments* args)\n }\n \n Menu::~Menu() {\n+ RemoveModelObserver();\n+}\n+\n+void Menu::RemoveModelObserver() {\n if (model_) {\n model_->RemoveObserver(this);\n }",
"additions": 4,
"deletions":... | 2026-02-04T15:11:00 |
nodejs/node | 34abee5b3bd3576fc8b01dd012a430e173adc08c | c755b0113ce0cb6d83baf2cf070ba381a5673db2 | http: fix rawHeaders exceeding maxHeadersCount limit
Fixes: https://github.com/nodejs/node/issues/61284
PR-URL: https://github.com/nodejs/node/pull/61285
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By... | [
{
"path": "lib/_http_common.js",
"patch": "@@ -59,9 +59,11 @@ const MAX_HEADER_PAIRS = 2000;\n // called to process trailing HTTP headers.\n function parserOnHeaders(headers, url) {\n // Once we exceeded headers limit - stop collecting them\n- if (this.maxHeaderPairs <= 0 ||\n- this._headers.length ... | 2026-01-22T20:37:43 |
facebook/react | ef88c588d51366d16c5323dba4bd197aeb85e4ea | dc485c7303f0d7d10fdbd2ccd4a020574e679840 | [DevTools] Tweak the rects design and create multi-environment color scheme (#34880)
<img width="1011" height="811" alt="Screenshot 2025-10-16 at 2 20 46 PM"
src="https://github.com/user-attachments/assets/6dea3962-d369-4823-b44f-2c62b566c8f1"
/>
The selection is now clearer with a wider outline which spans the
bound... | [
{
"path": "packages/react-devtools-shared/src/devtools/constants.js",
"patch": "@@ -136,8 +136,6 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-timeline-text-dim-color': '#ccc',\n '--color-timeline-react-work-border': '#eeeeee',\n '--color-timebar-backgr... | 2025-10-17T22:51:02 |
golang/go | bf84b002d64d0b150818268e520fee0172a5c462 | 51a8f213cdedcf2a6368437c136897d6b09a442d | crypto/x509: add more test cases for name constraints.
This version of the code passes the tests, however, Go 1.25 currently
fails.
See I747e51edc16c1111f6a114de33af35f618793c90 for a backport of the test
cases to Go 1.25 and a fix for the issue discovered there.
Found as part of https://issues.chromium.org/issues/4... | [
{
"path": "src/crypto/x509/name_constraints_test.go",
"patch": "@@ -1656,6 +1656,174 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\t\tsans: []string{\"dns:\"},\n \t\t},\n \t},\n+\n+\t{\n+\t\tname: \"subdomain excluded constraints preclude outer wildcard names\",\n+\t\troots: []constraintsSpec{\n... | 2026-03-02T09:48:29 |
vercel/next.js | 014b9987faa629accb6150c917bc328358d299a0 | 6a73374215e86da6e847526cdca7418f4450a1a1 | Turbopack: implement module.hot.accept(deps, cb) and module.hot.decline(deps) (#90443)
### What?
Implements dependency-level HMR accept and decline for Turbopack,
covering both ESM (`import.meta.turbopackHot`) and CJS (`module.hot`)
modules.
Previously Turbopack only supported self-accept (`module.hot.accept()`
with... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -367,6 +367,9 @@ pub struct ProjectOptions {\n \n /// The version of Next.js that is running.\n pub next_version: RcStr,\n+\n+ /// Whether server-side HMR is enabled (--experimental-server-fast-refresh).\n+ pub server_hmr: bool,\n }\n \n... | 2026-03-09T17:51:17 |
electron/electron | 8fdb7549bb3009db3f1c42e1d167028500aba39e | c3428fa4133f66d0da336849a71667fb05fe64b8 | fix: alt-space should route through 'system-context-menu' (#49619)
fix: alt-space should route through system-context-menu | [
{
"path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -150,6 +150,31 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n return views::DesktopWindowTreeHostWin::HandleMouseEvent(event);\n }\n \n+bool ElectronDesktopWindowTreeHostWin::Hand... | 2026-02-03T16:34:58 |
facebook/react | dc485c7303f0d7d10fdbd2ccd4a020574e679840 | c35f6a3041816613e704772ca9dafb26568d9f89 | [Flight] Fix detached `ArrayBuffer` error when streaming typed arrays (#34849)
Using `renderToReadableStream` in Node.js with binary data from
`fs.readFileSync` (or `Buffer.allocUnsafe`) could cause downstream
consumers (like compression middleware) to fail with "Cannot perform
Construct on a detached ArrayBuffer".
T... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js",
"patch": "@@ -10,11 +10,11 @@\n \n 'use strict';\n \n+import fs from 'fs';\n+import os from 'os';\n+import path from 'path';\n import {patchSetImmediate} from '../../../../scripts/jest/patchSetImmediate';\n \n-global.Rea... | 2025-10-17T20:13:52 |
golang/go | cbab448de1c562e417b179d29f99758f4680630b | 2ebb15729599c71c4bb9ea83849315e214c81b78 | crypto/x509: fix name constraint checking panic
Apparently we allow empty dNSName SANs (e.g. a domain name of ""), which
causes the excluded domain name wildcard checking to panic, because we
assume names are always non-empty. RFC 5280 appears to say the empty
string should not be accepted, although confusingly refers... | [
{
"path": "src/crypto/x509/constraints.go",
"patch": "@@ -375,7 +375,7 @@ func (dnc *dnsConstraints) query(s string) (string, bool) {\n \t\treturn constraint, true\n \t}\n \n-\tif !dnc.permitted && s[0] == '*' {\n+\tif !dnc.permitted && len(s) > 0 && s[0] == '*' {\n \t\ttrimmed := trimFirstLabel(s)\n \t\tif... | 2026-02-11T22:49:13 |
nodejs/node | e9b0849606ccaa607698ccb2e88f7245113968c3 | 931a292b9b19249137a29eb6a8eb84085be837fb | build,win: improve logs when ClangCL is missing
PR-URL: https://github.com/nodejs/node/pull/61438
Fixes: https://github.com/nodejs/node/issues/61437
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
Reviewed-By: Chengz... | [
{
"path": "vcbuild.bat",
"patch": "@@ -246,7 +246,7 @@ call :getnodeversion || exit /b 1\n set NODE_MAJOR_VERSION=\n for /F \"tokens=1 delims=.\" %%i in (\"%NODE_VERSION%\") do set \"NODE_MAJOR_VERSION=%%i\"\n if %NODE_MAJOR_VERSION% GEQ 24 (\n- echo Using ClangCL because the Node.js version being compiled... | 2026-01-22T18:48:58 |
rust-lang/rust | 25dbba03a273dbeb11c591dd7f49bb7fb2c37e1e | e5c6f7afcd3ce210c5c40b12cea2b5e93f93957e | Fix `mismatched_lifetime_syntaxes` suggestions for hidden path lifetimes | [
{
"path": "compiler/rustc_lint/src/lifetime_syntax.rs",
"patch": "@@ -387,26 +387,24 @@ fn emit_mismatch_diagnostic<'tcx>(\n build_mismatch_suggestion(info.lifetime.ident.as_str(), &suggest_change_to_explicit_bound)\n });\n \n- let is_bound_static = bound_lifetime.is_some_and(|info| info.life... | 2026-03-30T13:46:47 |
electron/electron | 233caf84695d56b6ffad83461e2728fe7588cddb | 86209f60eb3aedf8368fff0d415a17d2dcb7d0a6 | fix(squirrel.mac): clean up old staged updates before downloading new update (#49365)
fix: clean up old staged updates before downloading new update
When checkForUpdates() is called while an update is already staged,
Squirrel creates a new temporary directory for the download without
cleaning up the old one. This can... | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -9,3 +9,4 @@ refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecated_u... | 2026-02-03T16:04:06 |
facebook/react | c35f6a3041816613e704772ca9dafb26568d9f89 | adbc32de32bc52f9014cedb5ff5a502be35aff51 | [compiler] Optimize props spread for common cases (#34900)
As part of the new inference model we updated to (correctly) treat
destructuring spread as creating a new mutable object. This had the
unfortunate side-effect of reducing precision on destructuring of props,
though:
```js
function Component({x, ...rest}) {
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts",
"patch": "@@ -19,6 +19,7 @@ import {\n Environment,\n FunctionExpression,\n GeneratedSource,\n+ getHookKind,\n HIRFunction,\n Hole,\n IdentifierId,\n@@ -198,6 +199,7 @@ export function infer... | 2025-10-17T18:59:17 |
vercel/next.js | 6a73374215e86da6e847526cdca7418f4450a1a1 | 9c939729d1681adfe6b1d62670ceedd901f85b8b | Improve unsafe code safety documentation in turbo-tasks-backend (#90755)
### What?
Improves safety documentation for all `unsafe` code in the
`turbo-tasks-backend` crate (6 files, comment-only changes).
### Why?
A comprehensive audit of all 14 files containing `unsafe` code in
`turbo-tasks-backend` found **no sound... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/mod.rs",
"patch": "@@ -144,7 +144,11 @@ where\n }\n let tx = self.backend.backing_storage.start_read_transaction();\n let tx = tx.map(|tx| {\n- // Safety: self is actually valid for 'a, s... | 2026-03-09T14:41:47 |
golang/go | 2ebb15729599c71c4bb9ea83849315e214c81b78 | fb16297ae571a232e46a67e6e40027f1f82ef6ec | crypto/x509: fix full email constraint matching
For full email addresses (local@domain), we stored a map between the
case sensitive local portion to the case insensitive domain portion, and
used that to check if a email SAN matched the constraint. This could be
abused, because it was a map[string]string, meaning if an... | [
{
"path": "src/crypto/x509/constraints.go",
"patch": "@@ -58,11 +58,11 @@ import (\n // of nameConstraintsSet, to handle constraints which define full email\n // addresses (i.e. 'test@example.com'). For bare domain constraints, we use the\n // dnsConstraints type described above, querying the domain portion... | 2026-02-11T23:16:38 |
rust-lang/rust | 1a67e2be36e50967ea962d90364b6b150055a966 | cf7da0b7277cad05b79f91b60c290aa08a17a6f0 | Fix AtomicPtr::update's cfg gate | [
{
"path": "library/core/src/sync/atomic.rs",
"patch": "@@ -2136,7 +2136,7 @@ impl<T> AtomicPtr<T> {\n /// ```\n #[inline]\n #[stable(feature = \"atomic_try_update\", since = \"1.95.0\")]\n- #[cfg(target_has_atomic = \"8\")]\n+ #[cfg(target_has_atomic = \"ptr\")]\n #[cfg_attr(miri, trac... | 2026-03-31T01:33:53 |
nodejs/node | fa703276104faa049acc4fa0944bcf8679dc34b6 | 7698480bd2de02815fe1b0a901d3768485895d4a | lib: return undefined for localStorage without file
Make localStorage return undefined and emit a warning when
--localstorage-file is not provided. Mark the property as
non-enumerable to avoid breaking {...globalThis}.
Fixes: https://github.com/nodejs/node/issues/60303
PR-URL: https://github.com/nodejs/node/pull/6133... | [
{
"path": "lib/internal/process/pre_execution.js",
"patch": "@@ -404,8 +404,26 @@ function setupWebStorage() {\n \n // https://html.spec.whatwg.org/multipage/webstorage.html#webstorage\n exposeLazyInterfaces(globalThis, 'internal/webstorage', ['Storage']);\n+\n+ // localStorage is non-enumerable when -... | 2026-01-22T16:35:38 |
electron/electron | 86209f60eb3aedf8368fff0d415a17d2dcb7d0a6 | bdf2b674622fac64112f4ea7299120ab5a332dd0 | fix: possible crash in FileSystem API (#49578)
Refs https://chromium-review.googlesource.com/6880247
Fixes a crash that can arise in the File System Access API in the
following scenario:
1. Create fileHandle1 at path1.
2. Call fileHandle1.remove() or user manually delete the file.
3. Create fileHandle2 at path2.
4. ... | [
{
"path": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -400,31 +400,47 @@ class FileSystemAccessPermissionContext::PermissionGrantImpl\n }\n }\n \n+ // Updates the in-memory permission grant for the `new_path` in the `grants`\n+ // map using the same gran... | 2026-02-03T14:15:54 |
facebook/react | adbc32de32bc52f9014cedb5ff5a502be35aff51 | 1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9 | [compiler] More fbt compatibility (#34887)
In my previous PR I fixed some cases but broke others. So, new approach.
Two phase algorithm:
* First pass is forward data flow to determine all usages of macros.
This is necessary because many of Meta's macros have variants that can
be accessed via properties, eg you can do... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -83,21 +83,11 @@ export type ExternalFunction = z.infer<typeof ExternalFunctionSchema>;\n export const USE_FIRE_FUNCTION_NAME = 'useFire';\n export const EMIT_FREEZE_GLOBAL_GATING = '__DEV__';\n \n-export const Ma... | 2025-10-17T18:37:28 |
golang/go | fb16297ae571a232e46a67e6e40027f1f82ef6ec | 36d8b15842748194c4a2ce7e9cf46c65a958283c | html/template: properly escape URLs in meta content attributes
The meta tag can include a content attribute that contains URLs, which
we currently don't escape if they are inserted via a template action.
This can plausibly lead to XSS vulnerabilities if untrusted data is
inserted there, the http-equiv attribute is set... | [
{
"path": "doc/godebug.md",
"patch": "@@ -160,6 +160,13 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n \n+Go 1.27 added a new `htmlmetacontenturlescape` setting that controls whether\n+... | 2026-01-09T19:12:01 |
vercel/next.js | 9c939729d1681adfe6b1d62670ceedd901f85b8b | 5a226232621078e83a4d3a8123affb45334aa2ac | Fix preview tarball script to include @next/swc-linux-x64-gnu (#91099)
### What?
Adds `@next/swc-linux-x64-gnu` to the preview tarball patching script
(`scripts/patch-preview-tarball.mjs`):
1. Adds the package to the `PACKAGES_TO_PATCH` list so its tarball URL
is fetched.
2. Adds the package as an explicit dependenc... | [
{
"path": "scripts/patch-preview-tarball.mjs",
"patch": "@@ -10,6 +10,7 @@ const PACKAGES_TO_PATCH = [\n '@next/mdx',\n '@next/env',\n '@next/bundle-analyzer',\n+ '@next/swc-linux-x64-gnu',\n ]\n \n // --- Argument parsing ---\n@@ -186,6 +187,12 @@ async function patchPackageJson(projectPath, tarball... | 2026-03-09T13:32:12 |
nodejs/node | 186c7a9c74eaeb5742792d00fc098ecf2e971ed9 | 363758c79917bb7f6cceced79b6fe49c51abb592 | inspector: fix compressed responses
PR-URL: https://github.com/nodejs/node/pull/61226
Fixes: https://github.com/nodejs/node/issues/61222
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com> | [
{
"path": "lib/internal/inspector/network.js",
"patch": "@@ -10,8 +10,15 @@ const {\n const dc = require('diagnostics_channel');\n const { now } = require('internal/perf/utils');\n const { MIMEType } = require('internal/mime');\n+const {\n+ createGunzip,\n+ createInflate,\n+ createBrotliDecompress,\n+ c... | 2025-12-30T20:10:26 |
electron/electron | 4413a0f642af2f8aab04e27939b74f78edba4056 | 3776731f4a7e9e5f3094133649fa8b4a0723b0b7 | fix: wrong cause and removed flag in cookie change listener (#49103) | [
{
"path": "docs/api/cookies.md",
"patch": "@@ -51,7 +51,12 @@ Returns:\n * `event` Event\n * `cookie` [Cookie](structures/cookie.md) - The cookie that was changed.\n * `cause` string - The cause of the change with one of the following values:\n- * `explicit` - The cookie was changed directly by a consumer'... | 2026-02-03T09:19:35 |
facebook/react | 1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9 | 7f5ea1bf67a1a920919ebe2ae6657bdebe505aa0 | [compiler] Cleanup and enable validateNoVoidUseMemo (#34882)
This is a great validation, so let's enable by default. Changes:
* Move the validation logic into ValidateUseMemo alongside the new check
that the useMemo result is used
* Update the lint description
* Make the void memo errors lint-only, they don't require ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -988,7 +988,7 @@ function getRuleForCategoryImpl(category: ErrorCategory): LintRule {\n severity: ErrorSeverity.Error,\n name: 'void-use-memo',\n description:\n- 'Validates that useM... | 2025-10-16T20:08:57 |
golang/go | 36d8b15842748194c4a2ce7e9cf46c65a958283c | 4270a44ed749c581457eed30239ad79195ff39c9 | net/url: reject IPv6 literal not at start of host
This change rejects IPv6 literals that do not appear at the start of the
host subcomponent of a URL.
For example:
http://example.com[::1] -> rejects
http://[::1] -> accepts
Thanks to Masaki Hara (https://github.com/qnighy) of Wantedly.
Fixes #77578.
F... | [
{
"path": "src/net/url/url.go",
"patch": "@@ -547,7 +547,9 @@ func parseAuthority(scheme, authority string) (user *Userinfo, host string, err\n // parseHost parses host as an authority without user\n // information. That is, as host[:port].\n func parseHost(scheme, host string) (string, error) {\n-\tif open... | 2026-01-28T20:29:52 |
vercel/next.js | 5e4a54ea39a4433b066386f36cbf1c1c74d2ae7b | 762bff650fc487a8aff0c99be3d18c6a5e12317c | docs(localFont): enhance details about using the localFont function (#88189)
### What?
Enhance the documentation about how to use the `localFont` function.
### Why?
The Next.js documentation about [local
fonts](https://nextjs.org/docs/app/getting-started/fonts#local-fonts)
has insufficient information about where to ... | [
{
"path": "docs/01-app/01-getting-started/13-fonts.mdx",
"patch": "@@ -305,7 +305,7 @@ export default function MyApp({ Component, pageProps }) {\n \n <AppOnly>\n \n-To use a local font, import your font from `next/font/local` and specify the [`src`](/docs/app/api-reference/components/font#src) of your local... | 2026-03-09T12:20:31 |
rust-lang/rust | 2d87df126960770259499fffc0afcbc262c06944 | cf7da0b7277cad05b79f91b60c290aa08a17a6f0 | Add a test for a now fixed ICE with `offset_of!()` | [
{
"path": "tests/ui/offset-of/offset-of-unsized-trait-object-missing-lifetime.rs",
"patch": "@@ -0,0 +1,20 @@\n+//@ edition:2021\n+// Regression test for #125805.\n+// ICE when using `offset_of!` on a field whose type is a bare trait object\n+// with a missing lifetime parameter.\n+\n+trait X<'a> {}\n+\n+us... | 2026-03-30T23:08:31 |
electron/electron | 3776731f4a7e9e5f3094133649fa8b4a0723b0b7 | db5606b4b357aa6489cd9d1239b12fdf60888afc | fix: menu state in macOS dock menus (#49574) | [
{
"path": "shell/browser/mac/electron_application_delegate.mm",
"patch": "@@ -109,7 +109,14 @@ - (void)applicationDidResignActive:(NSNotification*)notification {\n }\n \n - (NSMenu*)applicationDockMenu:(NSApplication*)sender {\n- return menu_controller_ ? menu_controller_.menu : nil;\n+ if (!menu_controll... | 2026-02-02T22:01:34 |
nodejs/node | dc04bf6761e3860d9000f4b5bb3bcd73afc5f5a2 | 16188998e2f7ad8a5855477429e8da689c3f0dd9 | buffer: make methods work on Uint8Array instances
Removes the reliance on prototype bound methods internally
so that Uint8Arrays can be set as the bound `this` value when calling
the various Buffer methods. Introduces some additional tamper protection
by removing internal reliance on writable properties.
Fixes: https... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -415,6 +415,21 @@ function:\n * [`Buffer.from(arrayBuffer[, byteOffset[, length]])`][`Buffer.from(arrayBuf)`]\n * [`Buffer.from(string[, encoding])`][`Buffer.from(string)`]\n \n+### Buffer methods are callable with `Uint8Array` instances\n+\n+All methods on the Bu... | 2026-01-21T14:51:10 |
facebook/react | 2381ecc290c588f6366bdcf377529668bb3cc360 | 5418d8bdc12ae00859029bcd2abc9eb65e8f4fb4 | [ESLint] Disallow passing effect event down when inlined as a prop (#34820)
## Summary
Fixes https://github.com/facebook/react/issues/34793.
We are allowing passing down effect events when they are inlined as a
prop.
```
<Child onClick={useEffectEvent(...)} />
```
This seems like a case that someone not familiar w... | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRulesOfHooks-test.js",
"patch": "@@ -1555,6 +1555,17 @@ const allTests = {\n `,\n errors: [useEffectEventError('onClick', false)],\n },\n+ {\n+ code: normalizeIndent`\n+ // Invalid because useEffectEvent is being pa... | 2025-10-16T18:18:01 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.