repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
nodejs/node | 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 |
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 | 67f7d47a9b8f450c93ee69edd16aed68e910ff1e | 561ee24d4a7c805e9837ee4cfbb5671a35e41b5a | [Flight] Fix debug info filtering to include later resolved I/O (#35036)
In #35019, we excluded debug I/O info from being considered for
enhancing the owner stack if it resolved after the defined `endTime`
option that can be passed to the Flight client. However, we should
include any I/O that was awaited before that e... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -510,7 +510,9 @@ function filterDebugInfo(\n return;\n }\n \n- // Remove any debug info entries that arrived after the defined end time.\n+ // Remove any debug info entries after the defined end time. For async info\n+ // that... | 2025-11-03T21:59:40 |
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 |
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 |
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 | 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 |
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 |
facebook/react | 4f93170066c5ee7519749b45c5962a6b970cf977 | 0fa32506dab4293dfffae662e181d2f970aa95ba | [Flight] Cache the value if we visit the same I/O or Promise multiple times along different paths (#35005)
We avoid visiting the same async node twice but if we see it again we
returned "null" indicating that there's no I/O there.
This means that if you have two different Promises both resolving from
the same I/O nod... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2316,15 +2316,37 @@ function visitAsyncNode(\n request: Request,\n task: Task,\n node: AsyncSequence,\n- visited: Set<AsyncSequence | ReactDebugInfo>,\n+ visited: Map<\n+ AsyncSequence | ReactDebugInfo,\n+ void | null | ... | 2025-10-29T14:55:43 |
rust-lang/rust | 1d0dcfab18b1f80e86d691e7082e297f7ce940c1 | ba11b1e3f09829428844b74829146fcf7c38d3d0 | c-variadic: error when we can't guarantee that the backend does the right thing
specifically this emits an error when
- a custom target is used
- `RiscV32 if self.llvm_abiname == "ilp32e"` this abi is used for 32-bit
embedded targets, and clang/llvm document that the ABI may change in
the future. | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -760,7 +760,7 @@ impl<'a> AstValidator<'a> {\n match fn_ctxt {\n FnCtxt::Foreign => return,\n FnCtxt::Free | FnCtxt::Assoc(_) => {\n- if !self.sess.target.arch.supports_c_variadic_definit... | 2026-02-21T12:36:05 |
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 |
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 |
facebook/react | 0fa32506dab4293dfffae662e181d2f970aa95ba | fb0d96073c588ca2f652f9c97849234576db534f | [Flight] Clone subsequent I/O nodes if it's resolved more than once (#35003)
IO tasks can execute more than once. E.g. a connection may fire each
time a new message or chunk comes in or a setInterval every time it
executes.
We used to treat these all as one I/O node and just updated the end time
as we go. Most of the... | [
{
"path": "packages/react-server/src/ReactFlightServerConfigDebugNode.js",
"patch": "@@ -208,10 +208,29 @@ export function initAsyncDebugInfo(): void {\n switch (node.tag) {\n case IO_NODE: {\n lastRanAwait = null;\n- // Log the end time when we resolved the ... | 2025-10-28T17:27:35 |
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 |
rust-lang/rust | 8c043676a112155d824c9748534639704c145652 | 70dd3bceca234ba2957f14d4083ea29ce29f1872 | Refactor `get_standard_error_message` | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -196,6 +196,13 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n } = self.on_unimplemented_note(main_trait_predicate, main_obligation, &mut long_ty_file);\n \n ... | 2026-03-31T21:21: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 |
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 |
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 |
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 |
facebook/react | fb0d96073c588ca2f652f9c97849234576db534f | b4455a6ee6450fae830ae0b6e53e77f7a147bc27 | [tests] disableLegacyMode in test-renderer (#35002)
500 tests failed from not using async act. Will fix the tests and then
re-land this. | [
{
"path": "packages/shared/forks/ReactFeatureFlags.test-renderer.native-fb.js",
"patch": "@@ -16,7 +16,7 @@ export const disableCommentsAsDOMContainers = true;\n export const disableInputAttributeSyncing = false;\n export const disableLegacyContext = false;\n export const disableLegacyContextForFunctionComp... | 2025-10-28T16:53:30 |
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 |
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 |
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 |
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 |
facebook/react | d3d0ce329e81c7081feda5d37130d01e0607b8a4 | ba0590f3068829327cb25689b46926d6509893ea | [script] Add yarn generate-changelog (#34962)
(disclaimer: I used codex to write this script)
Adds a new `yarn generate-changelog` script to simplify the process of
writing changelogs. You can use it as follows:
```
$ yarn generate-changelog --help
Usage: yarn generate-changelog [--codex|--claude] [--debug] [<pkg@v... | [
{
"path": "package.json",
"patch": "@@ -152,6 +152,7 @@\n \"download-build-in-codesandbox-ci\": \"yarn build --type=node react/index react.react-server react-dom/index react-dom/client react-dom/src/server react-dom/test-utils react-dom.react-server scheduler/index react/jsx-runtime react/jsx-dev-runtim... | 2025-10-27T19:48:36 |
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 |
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 |
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 | 64cf1ec68503f10cda5dcc88df2209d22ec3dd08 | 0f159dc1acb2ad04e0eb88b83943a9ef4520fee3 | Update `Erasable` impls for lists.
- Merge the `List` and `ListWithCachedTypeInfo` impls by referring to
the shared underlying type, `RawList`. This required increasing the
visibility of `RawList`.
- Explain why a separate impl is needed for `RawList`.
- Remove an incorrect FIXME comment. Fat reference types wil... | [
{
"path": "compiler/rustc_middle/src/query/erase.rs",
"patch": "@@ -109,8 +109,6 @@ pub fn restore_val<T: Erasable>(erased_value: Erased<T>) -> T {\n unsafe { transmute_unchecked::<MaybeUninit<T::Storage>, T>(data) }\n }\n \n-// FIXME(#151565): Using `T: ?Sized` here should let us remove the separate\n-... | 2026-03-31T01:23:22 |
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 |
facebook/react | 408b38ef7304faf022d2a37110c57efce12c6bad | 09056abde76c464f4632f322a0ac30cd3984cee6 | [compiler] Improve display of errors on multi-line expressions (#34963)
When a longer function or expression is identified as the source of an
error, we currently print the entire expression in our error message.
This is because we delegate to a Babel helper to print codeframes. Here,
we add some checking and abbrevia... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -12,6 +12,28 @@ import {Err, Ok, Result} from './Utils/Result';\n import {assertExhaustive} from './Utils/utils';\n import invariant from 'invariant';\n \n+// Number of context lines to display above the source of a... | 2025-10-23T18:30:28 |
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 |
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 |
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 |
rust-lang/rust | 147d11099f47c4013cff1d8d67d5d8da722b7fe9 | c0e8750beac073b8d377db2d608fba45ff1e1cba | fixing tidy issues | [
{
"path": "tests/ui/enum/enum_u8_variant.rs",
"patch": "@@ -1,5 +1,6 @@\n //@ run-pass\n-//Test that checks pattern matching works correctly on a repr(u8) enum whose only variant contains an inner 'u8' field\n+//Test that checks pattern matching works correctly on a repr(u8) enum\n+// whose only variant con... | 2026-03-31T19:36:37 |
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 |
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 | 09056abde76c464f4632f322a0ac30cd3984cee6 | c91783c1f2231ca5d99f5700f4c7fda4006a217e | [Compiler] Improve error for calculate in render useEffect validation (#34580)
Summary:
Change error and update snapshots
The error now mentions what values are causing the issue which should
provide better context on how to fix the issue
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://saplin... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -103,6 +103,7 @@ import {validateNoFreezingKnownMutableFunctions} from '../Validation/ValidateNoF\n import {inferMutationAliasingEffects} from '../Inference/InferMutationAliasingEffects';\n import {inferMutati... | 2025-10-23T18:05:55 |
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 |
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 |
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 |
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 |
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 |
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 |
rust-lang/rust | 9626ca2e3ad8abf52a2d20f876bd6e9ee376666c | e4fdb554ad2c0270473181438e338c42b5b30b0c | fix pin docs | [
{
"path": "library/core/src/pin.rs",
"patch": "@@ -740,7 +740,7 @@\n //!\n //! While counter-intuitive, it's often the easier choice: if you do not expose a\n //! <code>[Pin]<[&mut] Field></code>, you do not need to be careful about other code\n-//! moving out of that field, you just have to ensure is that ... | 2026-03-31T16:37:33 |
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 |
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 | 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 |
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 |
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 |
rust-lang/rust | f0c7cd28b8d8eb7f9a1bb48df1a0f9c049af5677 | 13e2abaac846b2680ae93e1b3bd9fe7fe1b9a7fe | build_helper: fix yarn locking, add check, and bump lockfile | [
{
"path": "src/build_helper/src/npm.rs",
"patch": "@@ -1,7 +1,7 @@\n use std::error::Error;\n use std::path::{Path, PathBuf};\n use std::process::Command;\n-use std::{fs, io};\n+use std::{env, fs, io};\n \n /// Install all the npm deps, and return the path of `node_modules`.\n pub fn install(src_root_path: ... | 2026-03-31T14:37:01 |
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 |
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 |
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 |
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 |
rust-lang/rust | ebf22f83f10e17ec3840b23c799b68ce674d995f | 86796ddaa05195537762258dc5b41dbb4f78d604 | fix unit test | [
{
"path": "tests/ui/asm/x86_64/goto.stderr",
"patch": "@@ -22,9 +22,11 @@ warning: value assigned to `value` is never read\n --> $DIR/goto.rs:71:25\n |\n LL | let mut value = false;\n- | ^^^^^\n+ | ^^^^^ this value is reassigned later and neve... | 2026-03-31T11:54:28 |
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 |
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 | 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 |
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 | 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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 | 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 |
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 |
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 |
nodejs/node | 7d0417f997f2f9144e0ac49185679424435cd13c | fadb214d9574a4d77d9e2bccdbe8e7b86e53e52f | doc: clarify process.argv[1] behavior for -e/--eval
Signed-off-by: Jeevankumar-S <jeevenkumar2003@email.com>
PR-URL: https://github.com/nodejs/node/pull/61366
Fixes: https://github.com/nodejs/node/issues/61363
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -834,8 +834,8 @@ added: v0.1.27\n The `process.argv` property returns an array containing the command-line\n arguments passed when the Node.js process was launched. The first element will\n be [`process.execPath`][]. See `process.argv0` if access to the original ... | 2026-01-21T09:25:36 |
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 |
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 |
golang/go | 460522ed1d987f05db04dec5c099887a07115337 | b16360470c1eb574e8b7fa7a606810bf7cb6df7c | net/http: restore accidentally removed package doc
Remove a blank line which accidentally crept in between
the package doc comment and the package line.
Fixes #77948
Change-Id: I6b513c1e9ea97d2a4b3c6f7b9b10092a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/751520
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/net/http/doc.go",
"patch": "@@ -105,5 +105,4 @@ Alternatively, the following GODEBUG settings are currently supported:\n The \"omithttp2\" build tag may be used to disable the HTTP/2 implementation\n contained in the http package.\n */\n-\n package http",
"additions": 0,
"deletions": ... | 2026-03-04T21:22:44 |
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 |
nodejs/node | a5ae2b2879d9c381d21b74e5a56c3604a0458c9c | 42d94e0623a02c1581b008176e4815c8ae619e5e | doc: remove Windows Dev Home instructions from BUILDING
PR-URL: https://github.com/nodejs/node/pull/61434
Fixes: https://github.com/nodejs/node/issues/61424
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com>
Reviewed-By: Michaël Zasso <targos@prot... | [
{
"path": "BUILDING.md",
"patch": "@@ -791,14 +791,6 @@ To install Node.js prerequisites from PowerShell Terminal:\n winget configure .\\.configurations\\configuration.dsc.yaml\n ```\n \n-Alternatively, you can use [Dev Home](https://learn.microsoft.com/en-us/windows/dev-home/)\n-to install the prerequisite... | 2026-01-21T07:19:17 |
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 |
golang/go | b16360470c1eb574e8b7fa7a606810bf7cb6df7c | 50126a8e44f76134349edf5ba3cc94efabc61c80 | cmd/compile: fix ICE when indexing zero-sized arrays of non-SSAable types
Fixes #77868
Change-Id: I3348825e24a71595c514113497db365a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/749881
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gse... | [
{
"path": "src/cmd/compile/internal/ssagen/ssa.go",
"patch": "@@ -3555,9 +3555,9 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value {\n \t\t\t\t\t// use constants for the bounds check.\n \t\t\t\t\tz := s.constInt(types.Types[types.TINT], 0)\n \t\t\t\t\ts.boundsCheck(z, z, ssa.BoundsIndex... | 2026-02-28T11:05:10 |
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 |
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 |
electron/electron | db5606b4b357aa6489cd9d1239b12fdf60888afc | 1159de52e7f12145e47dd8a0bb34e4e53a58662c | fix: handle out of order recording errors in skia graphite (#49608) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -144,3 +144,4 @@ fix_linux_tray_id.patch\n expose_gtk_ui_platform_field.patch\n fix_os_crypt_async_cookie_encryption.patch\n patch_osr_control_screen_info.patch\n+graphite_handle_out_of_order_recording_errors.patch",
"additions": 1,
"deletions": 0,... | 2026-02-02T13:20:19 |
nodejs/node | 42d94e0623a02c1581b008176e4815c8ae619e5e | 488aaee51f0098565128ce842bcf561d539295ed | doc: clarify TypedArray properties on Buffer
"properties" is a more generic wording which also includes non-method
properties like `byteLength`.
Fixes: https://github.com/nodejs/node/issues/34946
PR-URL: https://github.com/nodejs/node/pull/61355
Refs: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/... | [
{
"path": "doc/api/buffer.md",
"patch": "@@ -243,7 +243,7 @@ changes:\n -->\n \n `Buffer` instances are also JavaScript {Uint8Array} and {TypedArray}\n-instances. All {TypedArray} methods are available on `Buffer`s. There are,\n+instances. All {TypedArray} methods and properties are available on `Buffer`s. ... | 2026-01-20T21:42:19 |
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 |
golang/go | 50126a8e44f76134349edf5ba3cc94efabc61c80 | 7aeb2f7e285006ad68789581dedf2b35ba444dbf | runtime, cmd/compile: use preemptible memclr for large pointer-free clears
Large memory clearing operations (via clear() or large slice allocation)
currently use non-preemptible assembly loops. This blocks the Garbage
Collector from performing a Stop The World (STW) event, leading to
significant tail latency or even i... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1598,11 +1598,13 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer... | 2026-03-01T23:53:03 |
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 |
electron/electron | 4b5d5f9dd5bb7eadec299060fc73ba1178388feb | 0cbf3c29185105179a1c91fb11dd7590f3d2ba15 | fix: fix Windows MSIX release build errors (#49613)
* fix: fix MSIX release build
* fix: add C++/WinRT headers
* build: modify include paths
* fix: compile msix as seperate source set
* build: add additional needed deps for msix | [
{
"path": "BUILD.gn",
"patch": "@@ -420,6 +420,37 @@ 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-02T06:27:42 |
nodejs/node | 93eaba8e1d673c0f0019e6ba332f31abda562092 | 3ecd33944f4d7bb4031942ec6349fa0b6385aeef | lib: fix typo in `util.js` comment
Fix typo: 'explictly' -> 'explicitly' in getCallSites function comment.
PR-URL: https://github.com/nodejs/node/pull/61365
Reviewed-By: Qingyu Deng <i@ayase-lab.com>
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihri... | [
{
"path": "lib/util.js",
"patch": "@@ -453,7 +453,7 @@ function getCallSites(frameCount = 10, options) {\n \n // Using kDefaultMaxCallStackSizeToCapture as reference\n validateNumber(frameCount, 'frameCount', 1, 200);\n- // If options.sourceMaps is true or if sourceMaps are enabled but the option.sourc... | 2026-01-20T11:05:26 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.