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 | b6c9dbe7e1fd208db20b6aac0d25a14e3fc5a456 | 586814bcd96462ae88a131431ec780e69a0764c3 | module: only emit require(esm) warning under --trace-require-module
require(esm) is relatively stable now and the experimental warning
has run its course - it's now more troublesome than useful.
This patch changes it to no longer emit a warning unless
`--trace-require-module` is explicitly used. The flag supports
two ... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -2616,6 +2616,18 @@ added:\n Prints a stack trace whenever an environment is exited proactively,\n i.e. invoking `process.exit()`.\n \n+### `--trace-require-module=mode`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+Prints information about usage of [Loading ECMA... | 2024-12-09T14:47:25 |
facebook/react | dbc5f36fe985258040976056889d8d27b9f67b8d | 92219ff9b80d0884cfc9c4123e7dcbd54ec0221d | [compiler] Support method-call version of macro functions
Adds fixtures for `macro.namespace(...)` style invocations which we use internally in some cases instead of just `macro(...)`. I tried every example i could think of that could possibly break it (including basing one off of another fixture where we hit an invar... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -254,7 +254,7 @@ function* runWithEnvironment(\n memoizeFbtOperandsInSameScope(hir);\n yield log({\n kind: \"hir\",\n- name: \"MemoizeFbtOperandsInSameScope\",\n+ name: \"MemoizeFbtAndMacroOperan... | 2024-06-14T15:44:40 |
vercel/next.js | fcd1809fb47102af730c7e42a92b652f83942d54 | 4bee38175cf17e7f5899ea79968abbf93d77e1c5 | fix: Rspack splitChunks.chunks regex (#83670)
Related test case:
https://github.com/vercel/next.js/blob/canary/test/production/production-browser-sourcemaps/index.test.ts | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -1188,7 +1188,7 @@ export default async function getBaseWebpackConfig(\n chunks: isRspack\n ? // using a function here causes noticable slowdown\n // in rspack\n- /(?!polyfills|main|pages\\/_... | 2025-09-15T18:08:36 |
electron/electron | 0bf53a3876f493080a15c6d609feb3436aa435e0 | 62d4b21819ecee4f634731f7aad80da8abf2801e | fix: `Storage.{get|set|clear}Cookies` via CDP not working (#41718) | [
{
"path": "shell/browser/ui/devtools_manager_delegate.cc",
"patch": "@@ -28,6 +28,7 @@\n #include \"net/socket/stream_socket.h\"\n #include \"net/socket/tcp_server_socket.h\"\n #include \"shell/browser/browser.h\"\n+#include \"shell/browser/electron_browser_context.h\"\n #include \"shell/common/electron_pat... | 2024-03-28T23:09:27 |
nodejs/node | 586814bcd96462ae88a131431ec780e69a0764c3 | acff0ef6371821b9aa8dd5e945235babea954f85 | worker: fix crash when a worker joins after exit
If a worker has not already joined before running to completion
it will join in a SetImmediateThreadsafe which could occur after
the worker has already ended by other means. Mutating a JS object
at that point would fail because the isolate is already disposed.
PR-URL: ... | [
{
"path": "src/node_worker.cc",
"patch": "@@ -449,6 +449,9 @@ void Worker::JoinThread() {\n \n env()->remove_sub_worker_context(this);\n \n+ // Join may happen after the worker exits and disposes the isolate\n+ if (!env()->can_call_into_js()) return;\n+\n {\n HandleScope handle_scope(env()->isolat... | 2024-12-11T13:37:36 |
facebook/react | 92219ff9b80d0884cfc9c4123e7dcbd54ec0221d | d7bb6039de6d8fa7c89b00626418c110872cc2e7 | chore[react-devtools/backend]: remove consoleManagedByDevToolsDuringStrictMode (#29856)
## Summary
Removes the usage of `consoleManagedByDevToolsDuringStrictMode` flag
from React DevTools backend, this is the only place in RDT where this
flag was used. The only remaining part is
[`ReactFiberDevToolsHook`](https:... | [
{
"path": "packages/react-devtools-shared/src/backend/console.js",
"patch": "@@ -22,7 +22,6 @@ import {\n getStackByFiberInDevAndProd,\n supportsNativeConsoleTasks,\n } from './DevToolsFiberComponentStack';\n-import {consoleManagedByDevToolsDuringStrictMode} from 'react-devtools-feature-flags';\n import... | 2024-06-17T15:13:04 |
vercel/next.js | 4bee38175cf17e7f5899ea79968abbf93d77e1c5 | 721def6b5815c6618e152e62501d0d2338d41c77 | [Breaking] Flat config as default in `@next/eslint-plugin-next` (#83763)
> [!NOTE]
> This is not a breaking change for `eslint-config-next` as they are
modified to use the legacy. Therefore, CNA templates or current users
that use `eslint-config-next` won't be affected.
### Why?
This PR uses v16 as an opportunity to... | [
{
"path": "packages/eslint-config-next/core-web-vitals.js",
"patch": "@@ -1,3 +1,3 @@\n module.exports = {\n- extends: [require.resolve('.'), 'plugin:@next/next/core-web-vitals'],\n+ extends: [require.resolve('.'), 'plugin:@next/next/core-web-vitals-legacy'],\n }",
"additions": 1,
"deletions": 1,
... | 2025-09-15T14:34:13 |
electron/electron | 61457c9498e02213b96c92b1bd121d716fc74575 | c6102b9278c81dfed3de3011f93d547921c41263 | feat(serial): allow Bluetooth ports to be requested by service class ID (#41638)
* feat(serial): allow Bluetooth ports to be requested by service class ID
* fix: bluetooth dependency | [
{
"path": "BUILD.gn",
"patch": "@@ -475,6 +475,7 @@ source_set(\"electron_lib\") {\n \"//net:extras\",\n \"//net:net_resources\",\n \"//printing/buildflags\",\n+ \"//services/device/public/cpp/bluetooth:bluetooth\",\n \"//services/device/public/cpp/geolocation\",\n \"//services/device... | 2024-03-28T17:23:13 |
facebook/react | 59e73d90163b16ce820316b1c69710f23096857e | ed8dd2036bfd228638e40f0559f652d062ce0689 | [compiler] Instruction reordering
Adds a pass just after DCE to reorder safely reorderable instructions (jsx, primitives, globals) closer to where they are used, to allow other optimization passes to be more effective. Notably, the reordering allows scope merging to be more effective, since that pass relies on two sco... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -41,6 +41,7 @@ import {\n deadCodeElimination,\n pruneMaybeThrows,\n } from \"../Optimization\";\n+import { instructionReordering } from \"../Optimization/InstructionReordering\";\n import {\n CodegenFun... | 2024-06-12T22:48:34 |
nodejs/node | acff0ef6371821b9aa8dd5e945235babea954f85 | 4a91507b25764230f2090f1a8f036a95b3cd6945 | http2: support ALPNCallback option
PR-URL: https://github.com/nodejs/node/pull/56187
Fixes: https://github.com/nodejs/node/issues/55994
Refs: https://github.com/nodejs/node/pull/45190
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Luigi Pinca <luigipin... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -3136,9 +3136,13 @@ function initializeOptions(options) {\n \n function initializeTLSOptions(options, servername) {\n options = initializeOptions(options);\n- options.ALPNProtocols = ['h2'];\n- if (options.allowHTTP1 === true)\n- options.ALPNProtoc... | 2024-12-11T13:37:21 |
electron/electron | 72c2b9e8625be58aafe3f90f42da745f40663a07 | 08241669bc7a899142a7dbd48ee27dc5a9af5c12 | fix: recognize 'undefined' header value in `ClientRequest` (#41615)
Co-authored-by: zowu <luke.wu@nokia-sbell.com> | [
{
"path": "lib/common/api/net-client-request.ts",
"patch": "@@ -209,6 +209,22 @@ type ExtraURLLoaderOptions = {\n headers: Record<string, { name: string, value: string | string[] }>;\n allowNonHttpProtocols: boolean;\n }\n+\n+function validateHeader (name: any, value: any): void {\n+ if (typeof name ... | 2024-03-27T23:46:07 |
nodejs/node | 4a91507b25764230f2090f1a8f036a95b3cd6945 | fd9a79df7dcf63990ff15c99433d6d86c95b794e | util: do not rely on mutable `Object` and `Function`' `constructor` prop
PR-URL: https://github.com/nodejs/node/pull/56188
Fixes: https://github.com/nodejs/node/issues/55924
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Jordan Harband <ljharb@gmail.com> | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -22,8 +22,11 @@ const {\n DatePrototypeToISOString,\n DatePrototypeToString,\n ErrorPrototypeToString,\n+ Function,\n+ FunctionPrototype,\n FunctionPrototypeBind,\n FunctionPrototypeCall,\n+ FunctionPrototypeSymbolHasInstance,\n FunctionP... | 2024-12-11T11:11:38 |
rust-lang/rust | ecb778fc61906ea2e94247435e516c8fcbc124c5 | cb083142f215bf20c05e97a3ecddd15962d89707 | Remove explicit `tcx` bindings from `query` entries.
As currently written, these have big problems.
- `desc` and `cache_on_disk_if` modifiers use different syntaxes to
introduce `tcx`.
- `desc` is mis-implemented such that the explicit binding isn't even
necessary and the key name can be botched, as the previous t... | [
{
"path": "compiler/rustc_macros/src/query.rs",
"patch": "@@ -103,13 +103,11 @@ impl<T: Parse> Parse for List<T> {\n \n struct Desc {\n modifier: Ident,\n- tcx_binding: Option<Ident>,\n expr_list: Punctuated<Expr, Token![,]>,\n }\n \n struct CacheOnDiskIf {\n modifier: Ident,\n- tcx_bindin... | 2026-02-20T06:01:50 |
facebook/react | 3154ec8a38e6014090039be54e0ca597fa967fdd | f0e8164410049aabc680035e8fd45b657eb020ab | Use a constant HostContext in prod builds for Fabric renderer (#29888)
<!--
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... | [
{
"path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js",
"patch": "@@ -132,6 +132,8 @@ export function appendInitialChild(\n appendChildNode(parentInstance.node, child.node);\n }\n \n+const PROD_HOST_CONTEXT: HostContext = {isInAParentText: true};\n+\n export function createInstance(\n ... | 2024-06-14T17:37:19 |
vercel/next.js | 721def6b5815c6618e152e62501d0d2338d41c77 | deee6f3089e3f4407ef5b8882ba00a273a50df8f | Update next-intlayer reference in i18n doc (#83761)
[`next-intlayer`](https://intlayer.org/doc/environment/nextjs) is an
i18n library that adopts a per-component approach to manage multilingual
content in a next.js application.
### Changes
- Fix doc related to page-router documentation,
- And add App Router realted d... | [
{
"path": "docs/01-app/02-guides/internationalization.mdx",
"patch": "@@ -215,3 +215,4 @@ export default async function RootLayout({ children, params }) {\n - [`paraglide-next`](https://inlang.com/m/osslbuzt/paraglide-next-i18n)\n - [`lingui`](https://lingui.dev)\n - [`tolgee`](https://tolgee.io/apps-integr... | 2025-09-15T14:09:42 |
golang/go | c0ee2fd4e309ef0b8f4ab6f4860e2626c8e00802 | a4d99770c0e5f340d6d11d6353110413dc109138 | cmd/go: explicitly reject module paths "go" and "toolchain"
The module paths "go" and "toolchain" are reserved for the dependency on
the go and toolchain versions. Check for those paths in go mod init to
create modules, go mod edit, and in the module loader and return an
error when attempting to use those paths for a ... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -234,7 +234,11 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \t}\n \n \tif *editModule != \"\" {\n-\t\tif err := module.CheckImportPath(*editModule); err != nil {\n+\t\terr := module.CheckImportPath(*editModule)\n+\t\t... | 2025-07-29T18:17:33 |
vercel/next.js | deee6f3089e3f4407ef5b8882ba00a273a50df8f | de42be7c87340c06abd3a4cabf7b5ce5b1623a03 | docs(data-security): add bun package manager example (#83735)
Adds the `bun add server-only` command to the data security guide.
This change adds the missing Bun package manager example to the
`docs/01-app/02-guides/data-security.mdx` file, ensuring consistency
with other documentation sections.
Fixes #83734
Co-aut... | [
{
"path": "docs/01-app/02-guides/data-security.mdx",
"patch": "@@ -251,6 +251,10 @@ yarn add server-only\n pnpm add server-only\n ```\n \n+```bash package=\"bun\"\n+bun add server-only\n+```\n+\n ```ts filename=\"lib/data.ts\"\n import 'server-only'\n ",
"additions": 4,
"deletions": 0,
"language... | 2025-09-15T13:51:41 |
facebook/react | 2ba462b665bb4691067e67db3cfbffc56959b788 | dfd30974aba0d7740e084f70a8af1cd4c54bb273 | [compiler][playground] Make change detection work in playground
Summary: The change detection mode was unavailable in the playground because the pragma was not a boolean. This fixes that by special casing it in pragma parsing, similar to validateNoCapitalizedCalls
ghstack-source-id: 4a8c17d21ab8b7936ca61c9dd1f7fdf832... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -410,6 +410,17 @@ export function parseConfigPragma(pragma: string): EnvironmentConfig {\n continue;\n }\n \n+ if (\n+ key === \"enableChangeDetectionForDebugging\" &&\n+ (val === undefined ... | 2024-06-13T18:02:47 |
golang/go | a4d99770c0e5f340d6d11d6353110413dc109138 | 70a2ff76485477211397ae6399bee06101bc5935 | runtime/metrics: add cleanup and finalizer queue metrics
These metrics are useful for identifying finalizer and cleanup problems,
namely slow finalizers and/or cleanups holding up the queue, which can
lead to a memory leak.
Fixes #72948.
Change-Id: I1bb64a9ca751fcb462c96d986d0346e0c2894c95
Reviewed-on: https://go-re... | [
{
"path": "src/runtime/metrics.go",
"patch": "@@ -169,6 +169,20 @@ func initMetrics() {\n \t\t\t\tout.scalar = float64bits(nsToSec(in.cpuStats.UserTime))\n \t\t\t},\n \t\t},\n+\t\t\"/gc/cleanups/executed:cleanups\": {\n+\t\t\tdeps: makeStatDepSet(finalStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out ... | 2025-07-23T03:09:27 |
vercel/next.js | bf46a6fad745f702b2ec093683035d9d4b43b979 | 323eebcee7f15d4c880654ed9cd3b46c49e80dc7 | Turbopack: Remove matchers.reload() call on each request (#83720)
## What?
It's likely that because of the bug in #83628 this logic existed in
order to make the tests pass but it adds significant overhead depending
on the size of your `app` directory. Since #83628 matches the watcher no
longer wait for 200ms it shoul... | [
{
"path": "packages/next/src/server/base-server.ts",
"patch": "@@ -606,6 +606,10 @@ export default abstract class Server<\n this.responseCache = this.getResponseCache({ dev })\n }\n \n+ protected reloadMatchers() {\n+ return this.matchers.reload()\n+ }\n+\n private handleRSCRequest: RouteHandle... | 2025-09-15T09:51:57 |
rust-lang/rust | cb083142f215bf20c05e97a3ecddd15962d89707 | 46ccd829eb45012d94bd701d982bb296fb64863b | Remove explicit `tcx` bindings from query `desc`s.
Due to a bug they aren't actually necessary! (A few queries already take
advantage of this, probably unintentionally.) And the next commit will
remove support for explicit `tcx` bindings in favour of implicit. | [
{
"path": "compiler/rustc_middle/src/queries.rs",
"patch": "@@ -239,13 +239,13 @@ rustc_queries! {\n /// Avoid calling this query directly.\n query hir_module_items(key: LocalModDefId) -> &'tcx rustc_middle::hir::ModuleItems {\n arena_cache\n- desc { |tcx| \"getting HIR module items i... | 2026-02-20T05:48:05 |
facebook/react | dfd30974aba0d7740e084f70a8af1cd4c54bb273 | ca9b6a7ebc75371c82748e057f55403518ebb5b1 | created a vscode workspace file for the repo (#29830)
### Summary
Similarly to what has been done on the `react-native` repo in
https://github.com/facebook/react-native/pull/43851, this PR adds a
`react.code-workspace` workspace file when using VSCode.
This disables the built-in TypeScript Language Service for... | [
{
"path": ".prettierrc.js",
"patch": "@@ -14,6 +14,12 @@ module.exports = {\n parser: 'flow',\n arrowParens: 'avoid',\n overrides: [\n+ {\n+ files: ['*.code-workspace'],\n+ options: {\n+ parser: 'json-stringify',\n+ },\n+ },\n {\n files: esNextPaths,\n optio... | 2024-06-13T15:23:42 |
golang/go | 69338a335ada5882b888fb7eabe0ad6f0e12c986 | cedf63616a00c8a6a69f6bbe4bc93b6865cec842 | cmd/go/internal/gover: fix ModIsPrerelease for toolchain versions
We forgot to call the IsPrerelease function on FromToolchain(vers)
rather than on vers itself. IsPrerelase expects a version without the
"go" prefix. See the corresponding code in ModIsValid and ModIsPrefix
that call FromToolchain before passing the ver... | [
{
"path": "src/cmd/go/internal/gover/mod.go",
"patch": "@@ -109,6 +109,9 @@ func ModIsPrefix(path, vers string) bool {\n // The caller is assumed to have checked that ModIsValid(path, vers) is true.\n func ModIsPrerelease(path, vers string) bool {\n \tif IsToolchain(path) {\n+\t\tif path == \"toolchain\" {\... | 2025-07-29T21:12:24 |
vercel/next.js | 99b078b8dacaf93cfdcbd6ff7b5558971fca8562 | 370ba8d05e28723e424979f7a0ae7c6ebed520d9 | Emit build error when `'use cache'` directive is misspelled (#83756)
Handles cases like:
- `'use cache:remote'` (missing space after colon)
- `'use cache : default'` (extra space before colon)
- `'use cache private'` (missing colon)
- `'use cache: '` (missing cache kind)
closes NAR-392 | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -2739,7 +2739,7 @@ impl DirectiveVisitor<'_> {\n });\n } else\n // `use cache` or `use cache: foo`\n- if value == \"use cache\" || value.starts_with(\"u... | 2025-09-13T18:59:39 |
electron/electron | 6e361537994dfeedae2f64b07243118ba0d838d7 | 4f76fff97879ee8f9b2d0dcfd43e686ff8757c69 | build: fix potential source of errors in issue workflow (#41715) | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -38,6 +38,8 @@ jobs:\n - run: npm install mdast-util-from-markdown@2.0.0 unist-util-select@5.1.0\n - name: Add labels\n uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1\n+ env:\n+ IS... | 2024-03-27T16:50:55 |
rust-lang/rust | 46ccd829eb45012d94bd701d982bb296fb64863b | d8b2222b11fc03a31d43707c8c9006f025809ece | Fix bad key names in a couple of queries.
Due to a bug, you can currently use `key` within the `desc` block and
it'll just work regardless of what actual key name you specified. A
subsequent commit will fix this, so let's correct the affected queries
first. | [
{
"path": "compiler/rustc_middle/src/queries.rs",
"patch": "@@ -589,7 +589,7 @@ rustc_queries! {\n }\n \n /// Checks whether a type is representable or infinitely sized\n- query representability(_: LocalDefId) -> rustc_middle::ty::Representability {\n+ query representability(key: LocalDefId) -... | 2026-02-20T05:41:49 |
facebook/react | ca9b6a7ebc75371c82748e057f55403518ebb5b1 | d9a5b6393a9329b60592e34c9e1fe091e6af5090 | [compiler] Fix visitors to emit the correct kind
Our passes aren't sequenced such that we could observe this bug, but this retains the proper terminal kind for pruned-scopes in mapTerminalSuccessors.
ghstack-source-id: 1a03b40e45649bbef7d6db968fb2dbd6261a246a
Pull Request resolved: https://github.com/facebook/react/p... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/visitors.ts",
"patch": "@@ -856,7 +856,7 @@ export function mapTerminalSuccessors(\n const block = fn(terminal.block);\n const fallthrough = fn(terminal.fallthrough);\n return {\n- kind: \"scope\",\n+ kind: term... | 2024-06-12T23:56:22 |
nodejs/node | 549037f772b6e27090aac4e675b54b9595d83a54 | b9329306c66f1e40f16f6992d0e74ec4f374c7dd | doc: fix incorrect link to style guide
The link to the style guide in `pull-requests.md` linked to the main
`README.md` instead of `doc/README.md`. This commit fixes the link.
Refs: https://github.com/nodejs/node/pull/41119
PR-URL: https://github.com/nodejs/node/pull/56181
Reviewed-By: Gireesh Punathil <gpunathi@in.i... | [
{
"path": "doc/contributing/pull-requests.md",
"patch": "@@ -122,7 +122,7 @@ If you are modifying code, please be sure to run `make lint` (or\n code style guide.\n \n Any documentation you write (including code comments and API documentation)\n-should follow the [Style Guide](../../README.md). Code samples\... | 2024-12-10T19:13:22 |
golang/go | cedf63616a00c8a6a69f6bbe4bc93b6865cec842 | 82a1921c3b6b493c4ff358f063c2ffffabba9fd5 | cmd/compile: add floating point min/max intrinsics on s390x
Add the VECTOR FP (MINIMUM|MAXIMUM) instructions to the assembler and
use them in the compiler to implement min and max.
Note: I've allowed floating point registers to be used with the single
element instructions (those with the W instead of V prefix) to all... | [
{
"path": "src/cmd/asm/internal/asm/testdata/s390x.s",
"patch": "@@ -540,6 +540,18 @@ TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-\n \tVSTRCZBS V18, V20, V22, V24\t// e78240306f8a\n \tVSTRCZHS V18, V20, V22, V24\t// e78241306f8a\n \tVSTRCZFS V18, V20, V22, V24\t// e7824230... | 2025-06-27T20:05:38 |
vercel/next.js | 370ba8d05e28723e424979f7a0ae7c6ebed520d9 | fc307c4f23b18a054cdc6dfb5453749a2947b1a0 | [OTel] fix: Root span name should not include high cardinality URL (#75416)
> HTTP span names SHOULD be {method} {target} if there is a
(low-cardinality) target available. If there is no (low-cardinality)
{target} available, HTTP span names SHOULD be {method}.
Some root spans don't have the `next.route` name availabl... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -459,7 +459,7 @@ export async function handler(\n })\n span.updateName(name)\n } else {\n- span.updateName(`${method} ${req.url}`)\n+ span.updateName(`${method}`)\n }\n })\n ... | 2025-09-12T23:42:47 |
electron/electron | 4f76fff97879ee8f9b2d0dcfd43e686ff8757c69 | c82ec0c72b8558a13147fe8f8cd98b2bdef8364e | fix: don't do self-destroy in LibnotifyNotification::Dismiss() (#41691)
Callers of Notification::Dismiss() assume that the notification
instance is not deleted after the call, but this was not the case
for LibnotifyNotification:
- Destroy() would get `this` deleted.
- notify_notification_close() in portal environm... | [
{
"path": "shell/browser/notifications/linux/libnotify_notification.cc",
"patch": "@@ -159,21 +159,21 @@ void LibnotifyNotification::Show(const NotificationOptions& options) {\n \n void LibnotifyNotification::Dismiss() {\n if (!notification_) {\n- Destroy();\n return;\n }\n \n GError* error = n... | 2024-03-27T09:53:23 |
rust-lang/rust | 417e4f9c9d9e2b0ad36599503af0e02bd7db096b | 5fb2ff8611e5a4af4dc85977cfdecfbf3ffa6ade | Fix typo in armv7a-vex-v5.md
Remove duplicate "to" in armv7-vex-v5.md | [
{
"path": "src/doc/rustc/src/platform-support/armv7a-vex-v5.md",
"patch": "@@ -24,7 +24,7 @@ This target is cross-compiled. Dynamic linking is unsupported.\n `std` has only partial support due to platform limitations. Notably:\n - `std::process` and `std::net` are unimplemented. `std::thread` only supports ... | 2026-02-22T03:38:31 |
facebook/react | d9a5b6393a9329b60592e34c9e1fe091e6af5090 | 814a4186459eb79ed9bc6f22de4a4f75ff77558c | fix[react-devtools] divided inspecting elements between inspecting do… (#29885)
# **before**
* nav to dom element from devtools
* nav to devtools element from page
are enabled on extension and disabled on the rest of the flavors.
## extension:
* nav to dom element from devtools **enabled** and working
* nav to... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -280,6 +280,7 @@ function initialize(socket: WebSocket) {\n store = new Store(bridge, {\n checkBridgeProtocolCompatibility: true,\n supportsTraceUpdates: true,\n+ supportsClickToInspect: true,\n });\n \n log('Connected... | 2024-06-13T14:37:51 |
nodejs/node | f184a0aca0493fba27b762d1bd8985bc06711635 | eef06f72eb6856454024943fdf0793a949d88392 | fs,win: fix readdir for named pipe
PR-URL: https://github.com/nodejs/node/pull/56110
Fixes: https://github.com/nodejs/node/issues/56002
Refs: https://github.com/nodejs/node/pull/55623
Refs: https://github.com/nodejs/node/pull/56088
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Luigi Pinca <luigip... | [
{
"path": "src/node_file.cc",
"patch": "@@ -1986,8 +1986,29 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {\n \n BufferValue path(isolate, args[0]);\n CHECK_NOT_NULL(*path);\n+#ifdef _WIN32\n+ // On Windows, some API functions accept paths with trailing slashes,\n+ // while others do... | 2024-12-10T13:31:21 |
vercel/next.js | c6a00f4f534efbd12cbee05d91ad9592df70b294 | 51b14409bdd13695fb420db9cdc968bcb7e26a4c | Fix type for unhandled rejection handler process.removeListener (#83748) | [
{
"path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.tsx",
"patch": "@@ -221,7 +221,7 @@ function installUnhandledRejectionFilter(): void {\n }\n // For other events, use the original method\n return originalProcessRemoveListener.call(process, event, listener... | 2025-09-12T23:11:43 |
electron/electron | c57ce31e84120efc74125fd084931092c9a4d228 | 32b44aa5c8a7e3dd26951aa4201d6faacb5d2851 | test: fix flaky tests in `webContents.navigationHistory` (#41705)
test: fix flaky tests by replacing real urls with data urls | [
{
"path": "spec/api-web-contents-spec.ts",
"patch": "@@ -548,6 +548,9 @@ describe('webContents module', () => {\n \n describe('navigationHistory', () => {\n let w: BrowserWindow;\n+ const urlPage1 = 'data:text/html,<html><head><script>document.title = \"Page 1\";</script></head><body></body></html>... | 2024-03-27T04:49:11 |
facebook/react | 55fdcf87bdab39853252369ad0dc68cb88a15102 | 195d5bb99e366889f0905779a0f9432d1624f999 | [compiler] Fix merging of queued states in InferReferenceEffects
Fixes a bug found by mofeiZ in #29878. When we merge queued states, if the new state does not introduce changes relative to the queued state we should use the queued state, not the new state.
ghstack-source-id: c59f69de15fa89bd1ed049d0a7d221651577ae34
P... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -201,7 +201,7 @@ export default function inferReferenceEffects(\n let queuedState = queuedStates.get(blockId);\n if (queuedState != null) {\n // merge the queued states for this block... | 2024-06-12T21:49:13 |
rust-lang/rust | 7be626903c786021ed1bf50b5601758714e6f5c4 | e077016d18b711d5599deff8e9be725be86db13c | Fix typo in tracing.md for `tracing_separate_thread`
Remove duplicate "the" in documentation. | [
{
"path": "src/tools/miri/doc/tracing.md",
"patch": "@@ -243,7 +243,7 @@ let _trace = enter_trace_span!(M, \"borrow_tracker\", borrow_tracker = \"on_stack_p\n \n ### `tracing_separate_thread` parameter\n \n-Miri saves traces using the the `tracing_chrome` `tracing::Layer` so that they can be visualized in P... | 2026-02-22T03:32:24 |
golang/go | 82a1921c3b6b493c4ff358f063c2ffffabba9fd5 | 2ae059ccaf982c3304fae0b48c1d78ad7192cbdd | all: remove redundant Swiss prefixes
Now that there is only one map implementation we can simplify names.
For #54766.
Change-Id: I6a6a636cc6a8fc5e7712c27782fc0ced7467b939
Reviewed-on: https://go-review.googlesource.com/c/go/+/691596
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Michael Pratt <mpratt@googl... | [
{
"path": "src/cmd/compile/internal/reflectdata/map.go",
"patch": "@@ -15,10 +15,10 @@ import (\n \t\"internal/abi\"\n )\n \n-// SwissMapGroupType makes the map slot group type given the type of the map.\n-func SwissMapGroupType(t *types.Type) *types.Type {\n-\tif t.MapType().SwissGroup != nil {\n-\t\tretur... | 2025-07-29T17:58:35 |
nodejs/node | 0a7eeb506865893e69a85aac1a53dd58f1a04c05 | 80c0055e38b9c79b27a2c3b7da3b62e8d0f5e435 | doc: fix c++ addon hello world sample
PR-URL: https://github.com/nodejs/node/pull/56172
Refs: https://github.com/nodejs/node/issues/56173
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: theanarkh <theratliter@gmail.com> | [
{
"path": "doc/api/addons.md",
"patch": "@@ -72,14 +72,15 @@ namespace demo {\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n+using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n \n void Method(const FunctionCallbackInfo<Value>& args) {\n Isolat... | 2024-12-09T17:43:50 |
electron/electron | 32b44aa5c8a7e3dd26951aa4201d6faacb5d2851 | 7032c0d03c9d4b80fd11bfb972d6fda48b0e6a20 | fix: crash on extension unload when script validation finishes (#41686)
https://chromium-review.googlesource.com/c/chromium/src/+/5225796 | [
{
"path": "shell/browser/extensions/api/scripting/scripting_api.cc",
"patch": "@@ -22,6 +22,7 @@\n #include \"extensions/browser/api/scripting/scripting_utils.h\"\n #include \"extensions/browser/extension_api_frame_id_map.h\"\n #include \"extensions/browser/extension_file_task_runner.h\"\n+#include \"extens... | 2024-03-26T13:32:06 |
facebook/react | 195d5bb99e366889f0905779a0f9432d1624f999 | 50e89ec9f2d44ab140e771e585226f7771da9652 | Execute event handlers in the context of the instance that it's associated with (#29876)
That way we get owner stacks (native or otherwise) for `console.error`
or `console.warn` inside of them.
Since the `reportError` is also called within this context, we also get
them for errors thrown within event listeners. Y... | [
{
"path": "packages/react-dom-bindings/src/events/DOMPluginEventSystem.js",
"patch": "@@ -52,6 +52,7 @@ import {\n enableLegacyFBSupport,\n enableCreateEventHandleAPI,\n enableScopeAPI,\n+ enableOwnerStacks,\n } from 'shared/ReactFeatureFlags';\n import {createEventListenerWrapperWithPriority} from '... | 2024-06-12T20:15:22 |
golang/go | cc571dab91e73413cf2ba1546a4ba485038cf2d1 | 2174a7936c9e6109e2786369072f5b9dc5d631f5 | cmd/compile: deduplicate instructions when rewrite func results
After CL 628075, do not rely on the memory arg of an OpLocalAddr.
Fixes #74788
Change-Id: I4e893241e3949bb8f2d93c8b88cc102e155b725d
Reviewed-on: https://go-review.googlesource.com/c/go/+/691275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/cmd/compile/internal/ssa/expand_calls.go",
"patch": "@@ -243,11 +243,8 @@ func (x *expandState) rewriteFuncResults(v *Value, b *Block, aux *AuxCall) {\n \t\tif len(aRegs) > 0 {\n \t\t\tresult = &allResults\n \t\t} else {\n-\t\t\tif a.Op == OpLoad && a.Args[0].Op == OpLocalAddr {\n-\t\t\t\tadd... | 2025-07-29T10:53:29 |
nodejs/node | 3837c8d71e364833e7f6f3b08f41deb54cfdf106 | dbfcbe371cfedf33fe16856cc71b4ed06b0155ba | build: fix GN build on macOS
use_gold is not defined on macOS.
PR-URL: https://github.com/nodejs/node/pull/56141
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-B... | [
{
"path": "unofficial.gni",
"patch": "@@ -263,7 +263,7 @@ template(\"node_gn_build\") {\n ldflags = [ \"/OPT:NOICF\" ] # link.exe, but also lld-link.exe.\n } else if (is_apple && !use_lld) {\n ldflags = [ \"-Wl,-no_deduplicate\" ] # ld64.\n- } else if (use_gold || use_ll... | 2024-12-09T10:01:55 |
vercel/next.js | 51b14409bdd13695fb420db9cdc968bcb7e26a4c | 99e09714e4f84b961ce3ad95510dced647f12445 | Fix reentrancy of unhandledRejection filtering (#83741)
Node's internal implementation of process.removeAllListeners calls
process.removeListener internally. The simple patching method originally
tried does not account for this which can lead to listeners not being
removed from the actual process event emitter.
To fi... | [
{
"path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.test.ts",
"patch": "@@ -0,0 +1,1015 @@\n+/**\n+ * Testing unhandled rejections in Jest is quite tricky because by default Jest will fail the test\n+ * if there are any unhandled rejections. This is a unit test and we want to... | 2025-09-12T23:09:43 |
electron/electron | 8c427253b3cc0bff8499c1fc0188c9ebaee135bc | ed28ead8ac0cd2e8544d1b437a1b8e529fa3e429 | refactor: update `gin_helper/function_template` (#41534)
* refactor: update gin_helper/function_template
* fix: crash in Node.js Worker threads | [
{
"path": "shell/common/gin_helper/callback.h",
"patch": "@@ -132,8 +132,9 @@ template <typename ReturnType, typename... ArgTypes>\n struct NativeFunctionInvoker<ReturnType(ArgTypes...)> {\n static void Go(base::RepeatingCallback<ReturnType(ArgTypes...)> val,\n gin::Arguments* args) {\n- ... | 2024-03-25T09:01:54 |
facebook/react | f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25 | 93826c8483ffaf6676c437c25619d82f13444413 | Bump braces from 3.0.2 to 3.0.3 in /fixtures/flight-esm (#29857)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to
3.0.3.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a>
3.0.3</... | [
{
"path": "fixtures/flight-esm/yarn.lock",
"patch": "@@ -79,11 +79,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sha512-b8um+L1R... | 2024-06-12T15:17:06 |
golang/go | 2174a7936c9e6109e2786369072f5b9dc5d631f5 | 8330fb48a645a29a79dd5c58ad3d9c54d7e6537c | crypto/tls: use standard chacha20-poly1305 cipher suite names
The different chacha20-poly1305 cipher suites were renamed to
include the _SHA256 suffix, which is the canonical naming convention.
The occurrences of the old names were still not updated, which can lead
to confusion when searching for the canonical names ... | [
{
"path": "src/crypto/tls/cipher_suites.go",
"patch": "@@ -149,8 +149,8 @@ type cipherSuite struct {\n }\n \n var cipherSuites = []*cipherSuite{ // TODO: replace with a map, since the order doesn't matter.\n-\t{TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, 32, 0, 12, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, a... | 2025-07-21T07:34:13 |
nodejs/node | dbfcbe371cfedf33fe16856cc71b4ed06b0155ba | 4f51d461d1fc588c65abcb0911b7c8f22edad607 | assert: make partialDeepStrictEqual work with ArrayBuffers
Fixes: https://github.com/nodejs/node/issues/56097
PR-URL: https://github.com/nodejs/node/pull/56098
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/assert.js",
"patch": "@@ -21,35 +21,44 @@\n 'use strict';\n \n const {\n+ ArrayBufferIsView,\n+ ArrayBufferPrototypeGetByteLength,\n ArrayFrom,\n ArrayIsArray,\n ArrayPrototypeIndexOf,\n ArrayPrototypeJoin,\n ArrayPrototypePush,\n ArrayPrototypeSlice,\n+ DataViewPrototypeGetBuf... | 2024-12-08T22:41:26 |
vercel/next.js | 72cf080a7307957c4a714c1fb36b1b7a390f9766 | 33016f3c55f4595f2601fe9d5ced8f7c675cf7fc | Fix index data route for adapter build-complete (#83730)
Fixes another case caught by testing ensuring we normalize the
`_next/data` filename correctly for `index`. | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -851,7 +851,10 @@ export async function handleBuildComplete({\n outputs.prerenders.push(initialOutput)\n \n if (dataRoute) {\n- let dataFilePath = path.join(pagesDistDir, `${route}.json`)\n+ let dat... | 2025-09-12T16:51:57 |
electron/electron | ed28ead8ac0cd2e8544d1b437a1b8e529fa3e429 | 90a7e5acae5ac8f77443bdc16c678fcee350d22b | fix: WTF-8 decoding issue in `node:fs` (#41673)
fix: WTF-8 decoding issue in node:fs | [
{
"path": "patches/node/.patches",
"patch": "@@ -47,3 +47,4 @@ build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n fix_revert_src_lb_reducing_c_calls_of_esm_legacy_main_resolve.patch\n src_preload_function_for_environment.patch\n deprecate_vector_v8_local_in_v8.patch\n+fs_fix_wtf-8_decod... | 2024-03-24T19:39:37 |
facebook/react | 55c9d45f3b9239d5997788f10b8cdad5bcb81daf | fb57fc5a8a66f38d65e3bc9f83213a0003da5702 | [Flight] Let environmentName vary over time by making it a function of string (#29867)
This lets the environment name vary within a request by the context a
component, log or error being executed in.
A potentially different API would be something like
`setEnvironmentName()` but we'd have to extend the `ReadableS... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -2565,6 +2565,50 @@ describe('ReactFlight', () => {\n );\n });\n \n+ it('can change the environment name inside a component', async () => {\n+ let env = 'A';\n+ function Component(props) {\n+ env = 'B';\n+ ... | 2024-06-12T14:55:42 |
golang/go | 89a0af86b819ceb8095c686fc5109b40082bc8c5 | 5e94d72158077411547287fc36f24b3121cca645 | cmd/compile: allow ops to specify clobbering input registers
Same as clobbering fixed registers, but which register is clobbered
depends on which register was assigned to the input.
Add code similar to resultInArg0 processing that makes a register
copy before allowing the op to clobber the last available copy of a va... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/main.go",
"patch": "@@ -87,6 +87,10 @@ type regInfo struct {\n \t// clobbers encodes the set of registers that are overwritten by\n \t// the instruction (other than the output registers).\n \tclobbers regMask\n+\t// Instruction clobbers the register containing in... | 2025-06-09T23:44:46 |
vercel/next.js | 9a4d31f1ca56318662b106281e5eb1c22375ffdd | 4d26abdd268b3ac9ee0d42ea6bf6f72a72725d8a | Only enable unhandledRejection filtering when opted in (#83726)
We need to debug some unexpected process crashes in front. This change
makes the unhandled rejection filter only enabled when configred with
the __NEXT_USE_UNHANDLED_REJECTION_FILTER environment variable. | [
{
"path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.tsx",
"patch": "@@ -21,6 +21,48 @@\n \n import { workUnitAsyncStorage } from '../app-render/work-unit-async-storage.external'\n \n+const MODE:\n+ | 'enabled'\n+ | 'debug'\n+ | 'true'\n+ | 'false'\n+ | '1'\n+ | '0'\n+ ... | 2025-09-12T15:57:20 |
nodejs/node | 91b6e3c2874b6f6940e6dde5b5d00501d698fd30 | b5056be8544345ae4dd53601400240479f99b9a1 | lib: clean up persisted signals when they are settled
PR-URL: https://github.com/nodejs/node/pull/56001
Refs: https://github.com/nodejs/node/issues/55328
Fixes: https://github.com/nodejs/node/issues/55328
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Juan José ... | [
{
"path": "lib/internal/abort_controller.js",
"patch": "@@ -96,8 +96,21 @@ const dependantSignalsCleanupRegistry = new SafeFinalizationRegistry((signalWeak\n }\n });\n });\n+\n const gcPersistentSignals = new SafeSet();\n \n+const sourceSignalsCleanupRegistry = new SafeFinalizationRegistry(({ sourceSi... | 2024-12-08T12:24:09 |
electron/electron | 90a7e5acae5ac8f77443bdc16c678fcee350d22b | 707b9a58cc991a7a7d120f719701f06181753a0e | fix: normalize path before calling `showItemInFolder` and `openPath` (#41642)
* fix: normalize path before calling ShowItemInFolder
* fix: normalize path before calling OpenPath | [
{
"path": "shell/common/platform_util_win.cc",
"patch": "@@ -336,17 +336,20 @@ void ShowItemInFolder(const base::FilePath& full_path) {\n base::ThreadPool::CreateCOMSTATaskRunner(\n {base::MayBlock(), base::TaskPriority::USER_BLOCKING})\n ->PostTask(FROM_HERE,\n- base::BindOnce... | 2024-03-22T14:28:44 |
facebook/react | fb57fc5a8a66f38d65e3bc9f83213a0003da5702 | 383b2a18456215d2d3ec46f33c0c912e84efa08f | [Flight] Let Errored/Blocked Direct References Turn Nearest Element Lazy (#29823)
Stacked on #29807.
This lets the nearest Suspense/Error Boundary handle it even if that
boundary is defined by the model itself.
It also ensures that when we have an error during serialization of
properties, those can be associat... | [
{
"path": ".eslintrc.js",
"patch": "@@ -571,6 +571,7 @@ module.exports = {\n TimeoutID: 'readonly',\n WheelEventHandler: 'readonly',\n FinalizationRegistry: 'readonly',\n+ Omit: 'readonly',\n \n spyOnDev: 'readonly',\n spyOnDevAndProd: 'readonly',",
"additions": 1,
"deletions"... | 2024-06-11T23:12:39 |
golang/go | 8cd85e602a90cb97051fe95d5243557b566630e6 | cefaed0de0b86ea67588546d2e18f850e7b7d41d | cmd/compile: check domination of loop return in both controls
Fixes #74473
Change-Id: I72ff6b95955ae9407271508aa80f230dcf1b6c74
Reviewed-on: https://go-review.googlesource.com/c/go/+/685816
Reviewed-by: Mark Freeman <mark@golang.org>
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/cmd/compile/internal/ssa/loopbce.go",
"patch": "@@ -37,19 +37,20 @@ type indVar struct {\n // - the minimum bound\n // - the increment value\n // - the \"next\" value (SSA value that is Phi'd into the induction variable every loop)\n+// - the header's edge returning from the body\n //... | 2025-07-04T06:54:14 |
vercel/next.js | e578335fbf0f757a26fb1155308af2e12b28de12 | a63cd29bae8674719032ce3187593c1f2abd7fb0 | [devtool] fix overlay styles are missing (#83721) | [
{
"path": "packages/next/src/build/webpack/loaders/devtool/devtool-style-inject.js",
"patch": "@@ -85,42 +85,50 @@ function startObservingForPortal() {\n \n // Set up MutationObserver to watch for the portal element\n const observer = new MutationObserver((mutations) => {\n- if (mutations.length === ... | 2025-09-12T13:46:08 |
nodejs/node | ac7fea6a1239feb9bc8c25281860aeb0e5864bc3 | 7fdeeac4d34a66c023ab3c1bb791f123031a82fb | lib: handle Float16Array in node:v8 serdes
PR-URL: https://github.com/nodejs/node/pull/55996
Fixes: https://github.com/nodejs/node/issues/55574
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name> | [
{
"path": "lib/eslint.config_partial.mjs",
"patch": "@@ -347,6 +347,11 @@ export default [\n name: 'SubtleCrypto',\n message: \"Use `const { SubtleCrypto } = require('internal/crypto/webcrypto');` instead of the global.\",\n },\n+ // Float16Array is not available in primor... | 2024-12-07T18:24:28 |
electron/electron | 707b9a58cc991a7a7d120f719701f06181753a0e | a32705fd306d8f8f698fb3ae1043b0d84bb0dcb8 | fix: `app.setLoginItemSettings` error getting swallowed by gin conversion (#41647)
* fix: errors getting swallowed by gin conversion
* fix: Windows build
* test: re-enable disabled test | [
{
"path": "filenames.gni",
"patch": "@@ -583,6 +583,8 @@ filenames = {\n \"shell/common/gin_converters/hid_device_info_converter.h\",\n \"shell/common/gin_converters/image_converter.cc\",\n \"shell/common/gin_converters/image_converter.h\",\n+ \"shell/common/gin_converters/login_item_settings... | 2024-03-22T13:00:21 |
facebook/react | 383b2a18456215d2d3ec46f33c0c912e84efa08f | a26e3f403e1d732ecde87db119b4ce21cee20038 | Use the Nearest Parent of an Errored Promise as its Owner (#29814)
Stacked on #29807.
Conceptually the error's owner/task should ideally be captured when the
Error constructor is called but neither `console.createTask` does this,
nor do we override `Error` to capture our `owner`. So instead, we use
the nearest p... | [
{
"path": ".eslintrc.js",
"patch": "@@ -245,7 +245,7 @@ module.exports = {\n },\n ],\n 'no-shadow': ERROR,\n- 'no-unused-vars': [ERROR, {args: 'none'}],\n+ 'no-unused-vars': [ERROR, {args: 'none', ignoreRestSiblings: true}],\n 'no-use-before-define': OFF,\n 'no-useless-concat': O... | 2024-06-11T22:10:24 |
golang/go | cefaed0de0b86ea67588546d2e18f850e7b7d41d | 3aa1b0008169cea3ed79a4a19b66f64479be4402 | reflect: fix noswiss builder
Missed this change in CL 681936
Fixes #74808
Change-Id: I30f6402177c5f8efe9bd11d50fad1770a22762c5
Reviewed-on: https://go-review.googlesource.com/c/go/+/691675
Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/reflect/map_noswiss.go",
"patch": "@@ -69,7 +69,7 @@ func MapOf(key, elem Type) Type {\n \tvar imap any = (map[unsafe.Pointer]unsafe.Pointer)(nil)\n \tmt := **(**mapType)(unsafe.Pointer(&imap))\n \tmt.Str = resolveReflectName(newName(s, \"\", false, false))\n-\tmt.TFlag = 0\n+\tmt.TFlag = abi... | 2025-07-29T22:31:09 |
nodejs/node | 7fdeeac4d34a66c023ab3c1bb791f123031a82fb | ee8810731dac3065395d892b8f82d366df687146 | sea: only assert snapshot main function for main threads
Snapshot main functions are only loaded for main threads in single
executable applications. Update the check to avoid asserting it
in worker threads - this allows worker threads to be spawned in
snapshot main functions bundled into a single executable
applicatio... | [
{
"path": "src/node.cc",
"patch": "@@ -320,7 +320,8 @@ MaybeLocal<Value> StartExecution(Environment* env, StartExecutionCallback cb) {\n CHECK(!env->isolate_data()->is_building_snapshot());\n \n #ifndef DISABLE_SINGLE_EXECUTABLE_APPLICATION\n- if (sea::IsSingleExecutable()) {\n+ // Snapshot in SEA is on... | 2024-12-07T17:25:02 |
electron/electron | 587b66acc1609e78e2d8e86e5f40f2942650e79f | 040acaaf3026aec8148aa010283e650e629d682b | docs: nodejs trademark policy link broken (#41558)
* Fix broken Trademark Policy link
* add durable link
Per codebyter: https://github.com/electron/electron/pull/41558#discussion_r1522938560 | [
{
"path": "README.md",
"patch": "@@ -112,4 +112,4 @@ and more can be found on the [Community page](https://www.electronjs.org/communi\n \n [MIT](https://github.com/electron/electron/blob/main/LICENSE)\n \n-When using Electron logos, make sure to follow [OpenJS Foundation Trademark Policy](https://openjsf.or... | 2024-03-21T14:25:35 |
rust-lang/rust | 041e3a57a2a111604b3b4ba762fea164cb59d638 | e3062fa780fefc860c1d5005b9665751c4d14283 | Remove RDTSC timer and always rely on Instant instead
Fixes https://github.com/rust-lang/miri/issues/4563 | [
{
"path": "src/tools/miri/src/bin/log/mod.rs",
"patch": "@@ -1,3 +1,2 @@\n pub mod setup;\n mod tracing_chrome;\n-mod tracing_chrome_instant;",
"additions": 0,
"deletions": 1,
"language": "Rust"
},
{
"path": "src/tools/miri/src/bin/log/tracing_chrome.rs",
"patch": "@@ -50,8 +50,6 @@ ... | 2026-02-16T17:13:11 |
facebook/react | 2c959f1d775e9c216d029d198971d06a1f8c892a | 270229f0c337dc652f07ef27d2254bb922bfaa9e | [Fiber] Track debugInfo on module state instead of stack (#29807)
Stacked on #29804.
Transferring of debugInfo was added in #28286. It represents the parent
stack between the current Fiber and into the next Fiber we're about to
create. I.e. Server Components in between. ~I don't love passing
DEV-only fields as a... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -1050,8 +1050,10 @@ describe('ReactFlight', () => {\n }\n \n const expectedStack = __DEV__\n- ? // TODO: This should include Throw but it doesn't have a Fiber.\n- '\\n in div' + '\\n in ErrorBoundary ... | 2024-06-11T21:04:13 |
vercel/next.js | a63cd29bae8674719032ce3187593c1f2abd7fb0 | b1e2dc2ad52e0447aad9d567074b1ceb56368e4c | Docs/sep paper cuts (#83689)
Addressing `papercuts` found this month
- Fixes: #83622 | [
{
"path": "docs/01-app/01-getting-started/01-installation.mdx",
"patch": "@@ -101,7 +101,7 @@ Then, add the following scripts to your `package.json` file:\n ```json filename=\"package.json\"\n {\n \"scripts\": {\n- \"dev\": \"next dev\",\n+ \"dev\": \"next dev --turbopack\",\n \"build\": \"next ... | 2025-09-12T13:12:04 |
nodejs/node | f6f519c6b6118dadb442842de98f2d947b095407 | 0547dcfc005ae7d9b60d31a7edc90f5a180f907a | stream: commit pull-into descriptors after filling from queue
Fixes: https://github.com/nodejs/node/issues/56044
PR-URL: https://github.com/nodejs/node/pull/56072
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> | [
{
"path": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -94,6 +94,7 @@ const {\n ArrayBufferViewGetByteLength,\n ArrayBufferViewGetByteOffset,\n AsyncIterator,\n+ canCopyArrayBuffer,\n cloneAsUint8Array,\n copyArrayBuffer,\n createPromiseCallback,\n@@ -2552,6 +2553,15 @@ function re... | 2024-11-27T23:04:18 |
golang/go | 3aa1b0008169cea3ed79a4a19b66f64479be4402 | b1e933d95518a7978efb29772bd6129acf0af452 | regexp: fix compiling alternate patterns of different fold case literals
Fixing Equal method in regexp/syntax package fixes compilation of
some alternate patterns like "0A|0[aA]".
Fixes #59007
Change-Id: Idd519c6841167f932899b0ada347fb90a38a765e
GitHub-Last-Rev: 6f43cbca6361c0d084a12abeec65d7c659a4fe61
GitHub-Pull-R... | [
{
"path": "src/regexp/find_test.go",
"patch": "@@ -98,6 +98,8 @@ var findTests = []FindTest{\n \t{`\\B`, \"x y\", nil},\n \t{`\\B`, \"xx yy\", build(2, 1, 1, 4, 4)},\n \t{`(|a)*`, \"aa\", build(3, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2)},\n+\t{`0A|0[aA]`, \"0a\", build(1, 0, 2)},\n+\t{`0[aA]|0A`, \"0a\", build(... | 2025-07-04T22:59:25 |
electron/electron | 040acaaf3026aec8148aa010283e650e629d682b | dd3fd78e63bac52211cc3c271a39681ac3135e97 | fix: support `withFileTypes` in `fs.{readdir|readdirSync}` (#41627)
fix: support withFileTypes in fs.{readdir|readdirSync} | [
{
"path": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -89,18 +89,19 @@ const gid = process.getgid?.() ?? 0;\n const fakeTime = new Date();\n \n function getDirents (p: string, { 0: names, 1: types }: any[][]): Dirent[] {\n- const info = splitPath(p);\n- const len = names.length;\n- for (let i = 0; i < le... | 2024-03-21T14:22:40 |
rust-lang/rust | e3062fa780fefc860c1d5005b9665751c4d14283 | 16507514414b2bb5b839db6bb5b52e22bd45a062 | Avoid keeping ThreadData borrowed while formatting tracing arguments
Fixes RefCell being borrowed mutably twice, see https://github.com/rust-lang/miri/issues/4563#issuecomment-3415871750 .
There are some places in rustc where the implementation of an argument passed to a tracing span makes a nested tracing call, e.g.... | [
{
"path": "src/tools/miri/src/bin/log/tracing_chrome.rs",
"patch": "@@ -53,6 +53,7 @@ use std::{\n use crate::log::tracing_chrome_instant::TracingChromeInstant;\n \n /// Contains thread-local data for threads that send tracing spans or events.\n+#[derive(Clone)]\n struct ThreadData {\n /// A unique ID f... | 2026-02-16T17:24:19 |
facebook/react | 270229f0c337dc652f07ef27d2254bb922bfaa9e | 01a40570c3cd852593c9bc88978b11cb9a2c5720 | [Fiber] Create virtual Fiber when an error occurs during reconcilation (#29804)
This lets us rethrow it in the conceptual place of the child.
There's currently a problem when we suspend or throw in the child fiber
reconciliation phase. This work is done by the parent component, so if
it suspends or errors it is a... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -964,67 +964,47 @@ describe('ReactFlight', () => {\n const testCases = (\n <>\n <ClientErrorBoundary expectedMessage=\"This is a real Error.\">\n- <div>\n- <Throw value={new TypeError('Thi... | 2024-06-11T19:57:41 |
vercel/next.js | b1e2dc2ad52e0447aad9d567074b1ceb56368e4c | c03aaee5508f82370db2d6121eae3b4acee75a4e | [test] Update snapshots for Rspack + React 18 (#83712)
After fixing the workflow config for Rspack in #83677, we're now running
more Rspack tests with React 18 on the `canary` branch. A few snapshot
tests now need to be updated because of that. The special cases are the
same as what we already had for Turbopack + Reac... | [
{
"path": "test/development/acceptance/ReactRefreshLogBox.test.ts",
"patch": "@@ -11,6 +11,7 @@ import path from 'path'\n import { outdent } from 'outdent'\n \n const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+const isRspack = !!process.env.NEXT_RSPACK\n \n describe('ReactRefreshLogB... | 2025-09-12T08:58:03 |
nodejs/node | 65024ae5a14aea2f264769faf01cfafb2e0c307c | eb5aa5f0e1a159b11765d4638eaeb7399e5bc333 | doc: fix module.md headings
PR-URL: https://github.com/nodejs/node/pull/56131
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "doc/api/module.md",
"patch": "@@ -64,159 +64,6 @@ const require = createRequire(import.meta.url);\n const siblingModule = require('./sibling-module');\n ```\n \n-### `module.constants.compileCacheStatus`\n-\n-<!-- YAML\n-added: v22.8.0\n--->\n-\n-> Stability: 1.1 - Active Development\n-\n-The fol... | 2024-12-06T14:22:06 |
golang/go | f3582fc80e19050d915ac9621bbeecef78c0548e | f7d167fe710501f687fad006125f4ec60be42c35 | cmd/compile: add unsigned power-of-two detector
Fixes #74485
Change-Id: Ia22a58ac43bdc36c8414d555672a3a3eafc749ca
Reviewed-on: https://go-review.googlesource.com/c/go/+/689815
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1014,11 +1014,10 @@\n // See ../magic.go for a detailed description of these algorithms.\n \n // Unsigned divide by power of 2. Strength reduce to a shift.\n-(Div8u n (Const8 [c])) && isPowerOfTwo(c) => (Rsh8Ux64 n (Const64 <typ.... | 2025-07-23T11:48:18 |
electron/electron | 61ddb1aa07551d0a157bbc0b855d3074f5fe4e22 | 00da7279cb4e4bef2ba2d6ba7f0f0afb32ea2650 | chore: bump pylint to 2.17 (#41576)
* build: bump pylint to 2.17
Xref: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5062345
* fix pylint consider-using-f-string warnings pt 1: use flynt for automated fixes
* fix pylint consider-using-f-string warnings pt 2: manual fixes
* fix pyl... | [
{
"path": "script/apply_all_patches.py",
"patch": "@@ -13,7 +13,7 @@\n def apply_patches(target):\n repo = target.get('repo')\n if not os.path.exists(repo):\n- warnings.warn('repo not found: %s' % repo)\n+ warnings.warn(f'repo not found: {repo}')\n return\n patch_dir = target.get('patch_dir'... | 2024-03-21T13:48:23 |
facebook/react | 0c65538be85d7e0f55e683512849486114ae56d9 | 2f47e667daec604e0e2314984066987a05bd96e9 | Bump braces from 3.0.2 to 3.0.3 in /fixtures/legacy-jsx-runtimes (#29844)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to
3.0.3.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a>... | [
{
"path": "fixtures/legacy-jsx-runtimes/yarn.lock",
"patch": "@@ -1030,11 +1030,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@^3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sh... | 2024-06-11T15:36:36 |
vercel/next.js | 58641694bc4df15280dbee0d502828f1f8e24b41 | ea034f6ff96e54ddab4b81796ae5ad7232e05ede | fix: dev should produce the correct default fallback regex to match builds/Turbopack (#83701)
`test/e2e/middleware-general/test/index.test.ts` has been frequently
flaking recently in dev likely due to a timing change. If a default
middleware matcher isn't written to disk, `setup-dev-bundler` returns a
default regex of... | [
{
"path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts",
"patch": "@@ -474,7 +474,7 @@ async function startWatcher(\n serverFields.actualMiddlewareFile\n )\n middlewareMatchers = staticInfo.middleware?.matchers || [\n- { regexp: '.*', originalSou... | 2025-09-12T02:28:37 |
nodejs/node | 53356c37b759f54b7da0c66558dde7f5755894e2 | d7fdbb994cda8b2e1da4240eb97270c6abbaa9dd | lib: fix `fs.readdir` recursive async
Fixes: https://github.com/nodejs/node/issues/56006
PR-URL: https://github.com/nodejs/node/pull/56041
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "lib/fs.js",
"patch": "@@ -1370,6 +1370,102 @@ function mkdirSync(path, options) {\n }\n }\n \n+/*\n+ * An recursive algorithm for reading the entire contents of the `basePath` directory.\n+ * This function does not validate `basePath` as a directory. It is passed directly to\n+ * `binding.readd... | 2024-12-05T20:25:25 |
golang/go | e0b07dc22eaab1b003d98ad6d63cdfacc76c5c70 | 25816d401c459a9dfedded3b42315a8bd2d32802 | os/exec: fix incorrect expansion of "", "." and ".." in LookPath
Fix incorrect expansion of "" and "." when $PATH contains an executable
file or, on Windows, a parent directory of a %PATH% element contains an
file with the same name as the %PATH% element but with one of the
%PATHEXT% extension (ex: C:\utils\bin is in ... | [
{
"path": "src/os/exec/dot_test.go",
"patch": "@@ -177,4 +177,48 @@ func TestLookPath(t *testing.T) {\n \t\t\t}\n \t\t}\n \t})\n+\n+\tchecker := func(test string) func(t *testing.T) {\n+\t\treturn func(t *testing.T) {\n+\t\t\tt.Helper()\n+\t\t\tt.Logf(\"PATH=%s\", os.Getenv(\"PATH\"))\n+\t\t\tp, err := Look... | 2025-06-30T14:58:59 |
electron/electron | 66dec24e32a001d3517461b78bf7e9f488bb4e62 | 433d6c33d87b62eab2e920d7b74af9ab3e397f62 | fix: `serial-port-added` should respect filters (#41621)
fix: serial-port-added should respect filters | [
{
"path": "shell/browser/serial/serial_chooser_controller.cc",
"patch": "@@ -93,6 +93,9 @@ api::Session* SerialChooserController::GetSession() {\n \n void SerialChooserController::OnPortAdded(\n const device::mojom::SerialPortInfo& port) {\n+ if (!FilterMatchesAny(port))\n+ return;\n+\n ports_.pus... | 2024-03-20T14:18:41 |
facebook/react | 2f47e667daec604e0e2314984066987a05bd96e9 | 54185a35d90b3a82a638999a7f7c15970932fd1b | Bump braces from 3.0.2 to 3.0.3 in /fixtures/flight (#29845)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to
3.0.3.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a>
3.0.3</li>
... | [
{
"path": "fixtures/flight/yarn.lock",
"patch": "@@ -3674,11 +3674,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@^3.0.2, braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity ... | 2024-06-11T15:35:53 |
vercel/next.js | 8348bd32add9fae26a78b217750fa596ae9e6cc6 | 5abb663b96493292031b04ef977686949f0a4445 | Update content-security-policy.mdx, fix development environment error (#83665)
fix _nextjsDevtools csp error which happens in development environment
after enabling csp and following the current documents.
Full Error:
- Refused to apply inline style because it violates the following
Content Security Policy directive:... | [
{
"path": "docs/01-app/02-guides/content-security-policy.mdx",
"patch": "@@ -548,7 +548,7 @@ export function middleware(request: NextRequest) {\n const cspHeader = `\n default-src 'self';\n script-src 'self' 'nonce-${nonce}' 'strict-dynamic' ${isDev ? \"'unsafe-eval'\" : ''};\n- style-src 'self... | 2025-09-11T21:07:49 |
nodejs/node | d7fdbb994cda8b2e1da4240eb97270c6abbaa9dd | 839ad8bd0814c576ae2dd078b178ba904add53a0 | module: mark evaluation rejection in require(esm) as handled
Previously the implemention of require(esm) only converted the
rejected promise from module evaluation into an error, but the
rejected promise was still treated as a pending unhandled
rejection by the promise rejection callback, because the promise
is create... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -663,6 +663,22 @@ void ModuleWrap::EvaluateSync(const FunctionCallbackInfo<Value>& args) {\n CHECK(result->IsPromise());\n Local<Promise> promise = result.As<Promise>();\n if (promise->State() == Promise::PromiseState::kRejected) {\n+ // The rejected pro... | 2024-12-05T16:12:50 |
golang/go | aa95ab8215760dfd6e1b8bb02aa2211021108512 | 4c854b7a3e5fc3e84a06511bce71ce01cbb4bb33 | image: fix formatting of godoc link
Change-Id: I8fa8741e0db174f0c32af0a393ee1b037d5b7e51
Reviewed-on: https://go-review.googlesource.com/c/go/+/680455
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Mark Freeman <mark@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/image/image.go",
"patch": "@@ -34,7 +34,9 @@\n // regardless of whether the image is itself malformed or not. A call to\n // [DecodeConfig] which returns a header which does not match the image returned\n // by [Decode] may be considered a security issue, and should be reported per the\n-// [... | 2025-06-10T14:56:45 |
electron/electron | 433d6c33d87b62eab2e920d7b74af9ab3e397f62 | b02918883fffcb6bcd726e7cc6e60d4e3e8a7d73 | fix: missing badge text on Windows (#41618)
https://chromium-review.googlesource.com/c/chromium/src/+/5053607 | [
{
"path": "shell/browser/browser_win.cc",
"patch": "@@ -40,6 +40,7 @@\n #include \"shell/common/gin_helper/dictionary.h\"\n #include \"shell/common/skia_util.h\"\n #include \"shell/common/thread_restrictions.h\"\n+#include \"skia/ext/font_utils.h\"\n #include \"skia/ext/legacy_display_globals.h\"\n #include... | 2024-03-19T11:50:30 |
facebook/react | 54185a35d90b3a82a638999a7f7c15970932fd1b | b5b9daa44d3cd5849d2a48da3c1db71410d9e294 | Bump braces from 3.0.2 to 3.0.3 in /fixtures/stacks (#29843)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to
3.0.3.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a>
3.0.3</li>
... | [
{
"path": "fixtures/stacks/yarn.lock",
"patch": "@@ -298,11 +298,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sha512-b8um+L1RzM... | 2024-06-11T15:35:40 |
vercel/next.js | 5abb663b96493292031b04ef977686949f0a4445 | 1c341690c1bee097702d50881b3bc331a040d740 | Don't create client-side debug channel if the feature is disabled (#83699)
Creating the client-side debug channel when
`experimental.reactDebugChannel` is falsy went unnoticed in the
[original PR](https://github.com/vercel/next.js/pull/82748), because
this doesn't provoke any obvious errors. The debug info is still
co... | [
{
"path": "packages/next/src/build/define-env.ts",
"patch": "@@ -333,6 +333,8 @@ export function getDefineEnv({\n !isTurbopack || (config.experimental.turbopackPersistentCaching ?? false),\n 'process.env.__NEXT_OPTIMIZE_ROUTER_SCROLL':\n config.experimental.optimizeRouterScrolling ?? false,\... | 2025-09-11T19:04:42 |
nodejs/node | c4aa34aa4dc5accb100be07b4aceded83eeb3956 | 3c2da4b849db2e19f7e92f6fb741b6604cbdf6c2 | doc: add LJHarb to collaborators
Fixes: https://github.com/nodejs/node/issues/55918
PR-URL: https://github.com/nodejs/node/pull/56132
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Debadree Chatterjee <debad... | [
{
"path": "README.md",
"patch": "@@ -379,6 +379,8 @@ For information about the governance of the Node.js project, see\n **Nitzan Uziely** <<linkgoron@gmail.com>>\n * [LiviaMedeiros](https://github.com/LiviaMedeiros) -\n **LiviaMedeiros** <<livia@cirno.name>>\n+* [ljharb](https://github.com/ljharb) -\n+ ... | 2024-12-04T19:14:44 |
golang/go | f8eae7a3c33fcf9d31117b1a1a49a47b0343f811 | 098426447182a216991923d5bf95cdd3ae836e2c | os/user: fix tests to pass on non-english Windows
Tests on Windows are dependent on the english names of system accounts
and groups.
But on a french install of Windows the system accounts are:
- AUTORITE NT\Système
- AUTORITE NT\SERVICE LOCAL
- AUTORITE NT\SERVICE RÉSEAU
To allow the tests to pass on non-english Win... | [
{
"path": "src/os/user/user_windows_test.go",
"patch": "@@ -18,6 +18,7 @@ import (\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \t\"syscall\"\n \t\"testing\"\n \t\"unicode\"\n@@ -261,9 +262,21 @@ func TestGroupIdsTestUser(t *testing.T) {\n \t}\n }\n \n+var isSystemDefaultLCIDEnglish = sync.... | 2025-07-18T10:36:00 |
electron/electron | b02918883fffcb6bcd726e7cc6e60d4e3e8a7d73 | 1cd7419718e4246bc663680f5a6ade61d7bd8ced | fix: support recursive readdir in Asar files (#41582) | [
{
"path": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -1,5 +1,5 @@\n import { Buffer } from 'buffer';\n-import { constants } from 'fs';\n+import { Dirent, constants } from 'fs';\n import * as path from 'path';\n import * as util from 'util';\n \n@@ -46,7 +46,17 @@ process._getOrCreateArchive = getOrCreateAr... | 2024-03-19T10:10:14 |
facebook/react | b5b9daa44d3cd5849d2a48da3c1db71410d9e294 | 43c17d13efc0c356a89a9036f173680ba1c115d2 | [compiler] HIR-based FlattenScopesWithHooksOrUse
Per title, implements an HIR-based version of FlattenScopesWithHooksOrUse as part of our push to use HIR everywhere. This is the last pass to migrate before PropagateScopeDeps, which is blocking the fix for `bug.invalid-hoisting-functionexpr`, ie where we can infer inco... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -71,6 +71,7 @@ import {\n import { alignMethodCallScopes } from \"../ReactiveScopes/AlignMethodCallScopes\";\n import { alignReactiveScopesToBlockScopesHIR } from \"../ReactiveScopes/AlignReactiveScopesToBlock... | 2024-06-10T21:14:52 |
vercel/next.js | cc00206c51113190c3b51eaa09ee1b6cd0474dd8 | c8edeb6f6c50ba232c3a32fd027ebc4b162d4c1e | fix(Turbopack): Enable scope hoisting for large files or module counts (#83399)
# Improve BytePos encoding for large source maps
This PR enhances the BytePos encoding mechanism in scope-hoisted modules
to handle larger source maps. The previous implementation had
limitations when dealing with large byte positions, wh... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -39,7 +39,7 @@ use std::{\n collections::hash_map::Entry,\n fmt::{Debug, Display, Formatter},\n mem::take,\n- sync::Arc,\n+ sync::{Arc, Mutex},\n };\n \n use anyhow::{Context, Result, anyhow, bail};\n@@ -1101,7 +110... | 2025-09-11T16:22:27 |
nodejs/node | 7bedcfd4a2144f7dbcf8d13f0a38ac733acd4088 | fe12b01bf49cee1597596d817f7a1d451bb71ba7 | doc: fix typo
PR-URL: https://github.com/nodejs/node/pull/56125
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "doc/changelogs/CHANGELOG_V22.md",
"patch": "@@ -80,11 +80,11 @@ When a `Buffer` is created using a resizable `ArrayBuffer`, the `Buffer` length\n ```js\n const ab = new ArrayBuffer(10, { maxByteLength: 20 });\n const buffer = Buffer.from(ab);\n-console.log(buffer.byteLength); 10\n+console.log(buf... | 2024-12-04T02:35:30 |
golang/go | cd3655a8243b5f52b6a274a0aba5e01d998906c0 | d5dc36af455ebd3e613780136766fba0cef7b0c4 | internal/runtime/maps: fix spelling errors in comments
Change-Id: I289d26f75bb556b46699159f06ce7eb03d34656d
GitHub-Last-Rev: 10ce76df1d4951e021d460808c9d477cfbcf7c5c
GitHub-Pull-Request: golang/go#74733
Reviewed-on: https://go-review.googlesource.com/c/go/+/690095
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBo... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -39,7 +39,7 @@ const (\n // On other architectures, bitset uses one byte per slot, where each byte is\n // either 0x80 if the slot is part of the set or 0x00 otherwise. This makes it\n // convenient to calculate for an entire group at once using s... | 2025-07-24T02:36:26 |
rust-lang/rust | fba1ca8b9f841ea5e43a0790e2e45576a74c9541 | 86d0e71947d0309723e3546869e2599ae28549ab | fix: correctly parenthesize inverted condition in convert_if_to_bool_then
The convert_if_to_bool_then assist was producing incorrect code when
the Some branch was in the else arm and the condition was a method call
expression (e.g. is_empty()).
Before:
if test.is_empty() { None } else { Some(()) }
was incorrectly... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_bool_then.rs",
"patch": "@@ -102,6 +102,11 @@ pub(crate) fn convert_if_to_bool_then(acc: &mut Assists, ctx: &AssistContext<'_>\n ast::Expr::BlockExpr(block) => unwrap_trivial_block(block),\n e => e,\n ... | 2026-02-21T05:33:20 |
vercel/next.js | 6b0559f0b81206cfda51c04dee338ffaf6f3f4ce | 4d82a4aa13ff4d5f9b0179dcaa185666df617756 | [CI] Fix GitHub Actions matrix configuration for React versions (#83677)
The `build-and-test` workflow runs on `canary` are currently annotated
with the following error
([x-ref](https://github.com/vercel/next.js/actions/runs/17629372493)):
```
Error when evaluating 'strategy' for job 'test-rspack-production'. .github... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -269,9 +269,9 @@ jobs:\n group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6]\n # Empty value uses default\n # TODO: Run with React 18.\n- # Integration tests use the installed React version in next/package.json.include:\n+ ... | 2025-09-11T13:59:22 |
facebook/react | fb3b9ead472ec0254e4ce7bd9000eb100010f08e | c015abd9dc32e9604e992cf351f1e130fd2a0de0 | fix[react-devtools] component badge in light mode is now not invisible (#29852)
In light mode, component badges in profiler were invisible due to using
the alpha channel to produce the grayish color. Instead I'm using the
equivalent RGB without that alpha.
**before**
In light mode, component badges in profiler w... | [
{
"path": "packages/react-devtools-shared/src/devtools/constants.js",
"patch": "@@ -50,7 +50,7 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-commit-gradient-text': '#000000',\n '--color-component-name': '#6a51b2',\n '--color-component-name-inverted': '#... | 2024-06-11T13:32:39 |
electron/electron | 193e162ec6efbb688de2a0fd533c87ab0666d133 | 3759e59bbda0ea9fe0660288b2f3e6ff8d139c56 | chore: bump chromium to 124.0.6359.0 (main) (#41584)
* chore: bump chromium in DEPS to 124.0.6355.0
* 5341411: view-transition: Ensure resources are cleaned up in all cases.
https://chromium-review.googlesource.com/c/chromium/src/+/5341411
* chore: fixup patch indices
* 5354013: Return nullopt on error fro... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '124.0.6353.0',\n+ '124.0.6359.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-03-15T18:03:42 |
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.