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 |
|---|---|---|---|---|---|
electron/electron | a974b74e8226c7c655130c9e1b3a15a42c651044 | da6ab9235391966a3a82ae9e23e33956b26b9d1c | fix: replace deprecated libnotify API calls (#43962)
notify_notification_set_hint_string() is deprecated, so let's use
notify_notification_set_hint() instead.
Xref: https://github.com/GNOME/libnotify/commit/2fe1748295c97cd8251e1711e0f54c4d65633d48 | [
{
"path": "BUILD.gn",
"patch": "@@ -74,7 +74,6 @@ if (is_linux) {\n \"notify_notification_set_image_from_pixbuf\",\n \"notify_notification_set_timeout\",\n \"notify_notification_set_urgency\",\n- \"notify_notification_set_hint_string\",\n \"notify_notification_set_hint\",\n ... | 2024-09-26T16:21:45 |
facebook/react | 0d7c12c7790c4a7315af80f8c73ac951f024f4fe | 6532c412566f7223f82b1460023180c25e15fca3 | [compiler][ez] Enable some sprout tests that no longer need to be disabled
Summary:
As title. Better support for flow typing, bugfixes, etc fixes these
ghstack-source-id: 6326653ce42b33b6c1c76a494434d133382ca80a
Pull Request resolved: https://github.com/facebook/react/pull/30591 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/component-declaration-basic.flow.expect.md",
"patch": "@@ -7,8 +7,17 @@ export default component Foo(bar: number) {\n return <Bar bar={bar} />;\n }\n \n+component Bar(bar: number) {\n+ return <div>{bar}</div>;\n+}\n+... | 2024-08-12T19:55:55 |
vercel/next.js | ec0d1661058833bf6d159ce057b7db862bab5a1a | 0bcdbe488f66761f669806b503e67762579b689b | docs: fix proxy matcher overflow (#85337)
Also closes: https://github.com/vercel/next.js/issues/85344 | [
{
"path": "docs/01-app/01-getting-started/16-proxy.mdx",
"patch": "@@ -22,10 +22,7 @@ Some common scenarios where Proxy is effective include:\n - Rewriting to different pages based on A/B tests or experiments\n - Modifying headers for all pages or a subset of pages\n \n-Proxy is _not_ a good fit for:\n-\n--... | 2025-10-27T16:29:13 |
golang/go | 300d9d2714164e455abc7990d52de9de6b084df1 | a846bb0aa523c8781248161b63bc2ab6a245cec1 | runtime: initialise debug settings much earlier in startup process
This is necessary specifically to set the value of `debug.decoratemappings`
sufficiently early in the startup sequence that all memory ranges allocated
can be named appropriately using the new Linux-specific naming API
introduced in #71546.
Example ou... | [
{
"path": "src/runtime/decoratemappings_test.go",
"patch": "@@ -0,0 +1,72 @@\n+// Copyright 2025 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+package runtime_test\n+\n+import (\n+\t\"os\"\n+\t\"regexp\"\... | 2025-09-18T14:54:57 |
nodejs/node | af85f3f169b5ce151ad4662cc74775e8c2973e1d | 5077ea41491d555b44675f86502d4a91850dcbfd | repl: fix multiline history editing string order
PR-URL: https://github.com/nodejs/node/pull/57874
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -467,9 +467,15 @@ class Interface extends InterfaceConstructor {\n }\n \n // Convert newlines to a consistent format for history storage\n- [kNormalizeHistoryLineEndings](line, from, to) {\n+ [kNormalizeHistoryLineEndings](line, from, to, re... | 2025-04-16T15:01:38 |
electron/electron | da6ab9235391966a3a82ae9e23e33956b26b9d1c | ddd45db6ca602a925432895eebdffa828c01edfd | fix: ensure correct `WebContents` when checking `PDFReadyToPrint` (#43943)
* fix: ensure correct WebContents when checking PDFReadyToPrint
* test: fix paths on Windows | [
{
"path": "shell/browser/electron_pdf_document_helper_client.cc",
"patch": "@@ -27,13 +27,23 @@ void ElectronPDFDocumentHelperClient::UpdateContentRestrictions(\n // allowed there won't be a printing restriction passed, so we can use this\n // second call to notify that the pdf document is ready to prin... | 2024-09-26T14:54:13 |
facebook/react | 25c584f5672d90ba67d72ea9ba9cc06b12311806 | b4c38015d0f8b58e9d0890dd7fd00ad763d3f965 | [DevTools] Further Refactoring of Unmounts (#30658)
Stacked on #30625 and #30657.
This ensures that we only create instances during the commit
reconciliation and that we don't create unnecessary instances for things
that are filtered or not mounted. This ensures that we also can rely on
the reconciliation to do ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -34,6 +34,8 @@ describe('InspectedElement', () => {\n let SettingsContextController;\n let StoreContext;\n let TreeContextController;\n+ let TreeStateContext;\n+ let TreeDispatcherContext;\n \n let Test... | 2024-08-12T16:41:29 |
vercel/next.js | 0bcdbe488f66761f669806b503e67762579b689b | 69e19895e33598c9dc2613f8e26d82b3d1450dfb | Ensure getServerInsertedHTML skips rendering correctly (#85394)
### Problem
Both `polyfillTags` and `traceMetaTags` are only rendered if they
haven't already been flushed, however the current check to skip
rendering (lines 81-89) doesn't take this into account – only the render
logic does (lines 93-98).
This results... | [
{
"path": "packages/next/src/server/app-render/make-get-server-inserted-html.tsx",
"patch": "@@ -26,12 +26,14 @@ export function makeGetServerInsertedHTML({\n basePath: string\n }) {\n let flushedErrorMetaTagsUntilIndex = 0\n- // flag for static content that only needs to be flushed once\n- let hasFlu... | 2025-10-27T16:24:49 |
golang/go | a846bb0aa523c8781248161b63bc2ab6a245cec1 | 7c8166d02d36a5dfcdbe3dd1b148412cceacf9f2 | errors: add AsType
Fixes #51945
Change-Id: Icda169782e796578eba728938134a85b5827d3b6
GitHub-Last-Rev: c6ff335ee1ffb6b7975141795a4632a55247299d
GitHub-Pull-Request: golang/go#75621
Reviewed-on: https://go-review.googlesource.com/c/go/+/707235
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Damien Neil <dne... | [
{
"path": "api/next/51945.txt",
"patch": "@@ -0,0 +1 @@\n+pkg errors, func AsType[$0 error](error) ($0, bool) #51945",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/errors/51945.md",
"patch": "@@ -0,0 +1,2 @@\n+The new [AsType] func... | 2025-09-29T16:57:53 |
electron/electron | ddd45db6ca602a925432895eebdffa828c01edfd | 40cae71df88156036fecc36008c86ee4639c3d9e | fix: -Wunsafe-buffer-usage warnings in GdkPixbufFromSkBitmap() (#43956)
* fix: -Wunsafe-buffer-usage warnings in GdkPixbufFromSkBitmap()
* refactor: don't change previous behavior for 0-height images
Is a 0x0 image even a thing? I'm not sure; but just in case, let's
treat it the same way the previous implementa... | [
{
"path": "shell/browser/ui/gtk_util.cc",
"patch": "@@ -9,6 +9,7 @@\n #include <stdint.h>\n \n #include <string>\n+#include <vector>\n \n #include \"base/no_destructor.h\"\n #include \"base/strings/string_number_conversions.h\"\n@@ -68,42 +69,30 @@ const char* GetYesLabel() {\n \n GdkPixbuf* GdkPixbufFromSk... | 2024-09-26T13:32:43 |
nodejs/node | 5077ea41491d555b44675f86502d4a91850dcbfd | 4b2b3c01b40b6ccbf80e1d252e0d544397ba00a6 | deps: update amaro to 0.5.2
PR-URL: https://github.com/nodejs/node/pull/57871
Fixes: https://github.com/nodejs/node/issues/57471
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> | [
{
"path": "deps/amaro/dist/package.json",
"patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.11.15\",\n+ \"version\": \"1.11.21\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",",
"ad... | 2025-04-16T10:34:19 |
facebook/react | 68dbd84b61cc2504c30e19f748f59a52d331f851 | 8d74e8c73a5cc5e461bb1413a74c6b058c6be134 | [DevTools] Unmount by walking previous nodes no longer in the new tree (#30644)
This no longer uses the handleCommitFiberUnmount hook to track unmounts.
Instead, we can just unmount the DevToolsInstances that we didn't reuse.
This doesn't account for cleaning up instances that were unnecessarily
created when they w... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -1405,81 +1405,37 @@ export function attach(\n \n // Removes a Fiber (and its alternate) from the Maps used to track their id.\n // This method should always be called when a Fiber is unmounting.\n- function untrackF... | 2024-08-12T04:35:42 |
vercel/next.js | 8de423c9f7b6507b49769c0408c317069abb008b | 498349c375e2602f526f64e8366992066cfa872c | Fix types of @next/mdx (#82238)
### What?
This fixes a couple of things:
- Although it’s rare for MDX plugins to accept more than 1 option, they
may accept any number of arguments.
- In addition to `remarkPlugins` and `rehypePlugins`, now `recmaPlugins`
is also patched to accept strings
- TypeScript property Descript... | [
{
"path": "packages/next-mdx/index.d.ts",
"patch": "@@ -4,6 +4,8 @@ import type { RuleSetConditionAbsolute } from 'webpack'\n \n type WithMDX = (config: NextConfig) => NextConfig\n \n+type PluggableListName = 'remarkPlugins' | 'rehypePlugins' | 'recmaPlugins'\n+\n declare namespace nextMDX {\n interface N... | 2025-10-27T10:12:35 |
golang/go | eaf2345256613dfbda7e8e69e5f845c4209246c6 | 4b7773356515c178f0af859b952b4b3a78f0813d | cmd/link: use a .def file to mark exported symbols on Windows
Binutils defaults to exporting all symbols when building a Windows DLL.
To avoid that we were marking symbols with __declspec(dllexport) in
the cgo-generated headers, which instructs ld to export only those
symbols. However, that approach makes the headers ... | [
{
"path": "src/cmd/cgo/internal/testcshared/cshared_test.go",
"patch": "@@ -8,6 +8,7 @@ import (\n \t\"bufio\"\n \t\"bytes\"\n \t\"cmd/cgo/internal/cgotest\"\n+\t\"cmp\"\n \t\"debug/elf\"\n \t\"debug/pe\"\n \t\"encoding/binary\"\n@@ -272,7 +273,7 @@ func createHeaders() error {\n \t\t// which results in the... | 2025-09-22T13:48:36 |
nodejs/node | c9c61a3a7da6acf15f1ae7eab1606878d4d2ee0b | 0a1d5d353bdd18c8beb30991d77ff2925fc5f767 | doc: fix typo in `module.md`
PR-URL: https://github.com/nodejs/node/pull/57889
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Qingyu Deng <i@ayase-lab.com> | [
{
"path": "doc/api/module.md",
"patch": "@@ -1185,7 +1185,7 @@ The final value of `format` must be one of the following:\n | `'commonjs'` | Load a Node.js CommonJS module | {string\\|ArrayBuffer\\|TypedArray\\|null\\|undefined} |\n | `'json'` | Load a JSON fi... | 2025-04-14T15:11:29 |
electron/electron | 40cae71df88156036fecc36008c86ee4639c3d9e | b60013fcf1eecfe97b8772f1eb04633d7a51ba76 | test: re-enable tests that were disabled in chromium rolls (#43968)
* test: fix should support base url for data urls test
Caused by https://chromium-review.googlesource.com/c/chromium/src/+/5802682
* test: fixup extensions can cancel http requests
* chore: document custom protocol handling on Windows change ... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -14,6 +14,33 @@ This document uses the following convention to categorize breaking changes:\n \n ## Planned Breaking API Changes (33.0)\n \n+### Behavior Changed: custom protocol URL handling on Windows\n+\n+Due to changes made in Chromium to support [Non-S... | 2024-09-26T12:53:27 |
facebook/react | 8d74e8c73a5cc5e461bb1413a74c6b058c6be134 | 2504dbd669e0f6ef34834c4445d4e4851e1d0b2a | [compiler] Patch error reporting for blocklisted imports
ghstack-source-id: 614c1e9c04828bfa2da13a6abaeff7ce3e67cb9b
Pull Request resolved: https://github.com/facebook/react/pull/30652 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Imports.ts",
"patch": "@@ -7,32 +7,39 @@\n \n import {NodePath} from '@babel/core';\n import * as t from '@babel/types';\n-import {CompilerError} from '../CompilerError';\n+import {CompilerError, ErrorSeverity} from '../CompilerError';\... | 2024-08-09T20:43:21 |
vercel/next.js | 3cf4b17ba8c4305974fc122bea839f901f8f478f | a135a7d51374eff46bf9337eeaf1811bd0c3fe05 | fix(static-paths): add depth tracking to parallel route param resolution (#85319)
### What?
Adds depth-aware parameter resolution to `resolveParallelRouteParams` by
migrating from simplified parallel route segments to LoaderTree
structure.
### Why?
Dynamic and intercepted parameters in parallel routes were not bein... | [
{
"path": "packages/next/src/build/static-paths/app.test.ts",
"patch": "@@ -1309,19 +1309,20 @@ describe('calculateFallbackMode', () => {\n })\n \n describe('resolveParallelRouteParams', () => {\n- function createParallelRouteSegment(\n- paramName: string,\n- paramType: DynamicParamTypes\n- ): {\n- ... | 2025-10-24T20:07:37 |
golang/go | 4b7773356515c178f0af859b952b4b3a78f0813d | 4e9006a716533fe1c7ee08df02dfc73078f7dc19 | internal/syscall/windows: regenerate GetFileSizeEx
GetFileSizeEx was generated before mkwinsyscall was updated to use
SyscallN. Regenerate to use the new style.
Fixes #75642
Change-Id: Ia473a167633b67fb75b5762d693848ecee425a7e
Reviewed-on: https://go-review.googlesource.com/c/go/+/707615
Reviewed-by: Roland Shoemake... | [
{
"path": "src/internal/syscall/windows/zsyscall_windows.go",
"patch": "@@ -328,7 +328,7 @@ func GetFileInformationByHandleEx(handle syscall.Handle, class uint32, info *byt\n }\n \n func GetFileSizeEx(handle syscall.Handle, size *int64) (err error) {\n-\tr1, _, e1 := syscall.Syscall(procGetFileSizeEx.Addr()... | 2025-09-29T06:37:35 |
rust-lang/rust | 2093158de7fe26e2f30dfaed1034c3fa79779db0 | 6f54d591c3116ee7f8ce9321ddeca286810cc142 | refactor: move `check_align` to `parse_alignment`
* refactor: move `check_align` from check_attrs.rs to `parse_alignment`
rel: attribute parser rework
* fix: fix error messages
* test: fix test
* fix: fix invalid error message
* ops(test): Fix CI | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/repr.rs",
"patch": "@@ -1,4 +1,4 @@\n-use rustc_abi::Align;\n+use rustc_abi::{Align, Size};\n use rustc_ast::{IntTy, LitIntType, LitKind, UintTy};\n use rustc_hir::attrs::{IntType, ReprAttr};\n \n@@ -229,7 +229,7 @@ fn parse_repr_align<S: Stage>(\n ... | 2026-03-05T18:46:00 |
nodejs/node | 0a1d5d353bdd18c8beb30991d77ff2925fc5f767 | 2204587d76dd424b3b1c73f68ade75e0b91b96df | crypto: revert dangerous uses of std::string_view
An `std::string_view v` is a `const char* v.data()` along with an
`std::size_t v.size()` that guarantees that `v.size()` contiguous
elements of type `char` can be accessed relative to the pointer
`v.data()`.
One of the main reasons behind the existence of `std::strin... | [
{
"path": "deps/ncrypto/engine.cc",
"patch": "@@ -44,15 +44,15 @@ ENGINE* EnginePointer::release() {\n return ret;\n }\n \n-EnginePointer EnginePointer::getEngineByName(const std::string_view name,\n+EnginePointer EnginePointer::getEngineByName(const char* name,\n ... | 2025-04-15T12:09:22 |
facebook/react | 0e6d8c3d1a7adf1db5a4dbe8bba6b8d6c0f31097 | 2d2cc042d7812499baf992804fbf83c20caa7436 | [ci] fix path in compiler_typescript.yml (#30651)
The path was incorrect, so the job didn\t run on changes to it. | [
{
"path": ".github/workflows/compiler_typescript.yml",
"patch": "@@ -6,7 +6,7 @@ on:\n pull_request:\n paths:\n - compiler/**\n- - .github/workflows/compiler-typescript.yml\n+ - .github/workflows/compiler_typescript.yml\n \n env:\n TZ: /usr/share/zoneinfo/America/Los_Angeles",
"a... | 2024-08-09T17:21:24 |
golang/go | 4e9006a716533fe1c7ee08df02dfc73078f7dc19 | 047c2ab841e2d2233d0bef420d1b5ecb545a380a | crypto/tls: quote protocols in ALPN error message
Quote the protocols sent by the client when returning the ALPN
negotiation error message.
Fixes CVE-2025-58189
Fixes #75652
Change-Id: Ie7b3a1ed0b6efcc1705b71f0f1e8417126661330
Reviewed-on: https://go-review.googlesource.com/c/go/+/707776
Auto-Submit: Roland Shoemake... | [
{
"path": "src/crypto/tls/handshake_server.go",
"patch": "@@ -357,7 +357,7 @@ func negotiateALPN(serverProtos, clientProtos []string, quic bool) (string, erro\n \tif http11fallback {\n \t\treturn \"\", nil\n \t}\n-\treturn \"\", fmt.Errorf(\"tls: client requested unsupported application protocols (%s)\", cl... | 2025-09-29T17:11:56 |
vercel/next.js | 4b4597935192d2c07593d83850a868a86087529b | 0b9512280c437883420134918838f873f1a4c1b7 | Docs/use cache feedback 2 (#85222)
- [x] Update Error | [
{
"path": "docs/01-app/01-getting-started/06-cache-components.mdx",
"patch": "@@ -48,7 +48,7 @@ When a user visits a route:\n \n > **🎥 Watch:** Why PPR and how it works → [YouTube (10 minutes)](https://www.youtube.com/watch?v=MTcPrTIBkpA).\n \n-## How it Works\n+## How it works\n \n Cache Components gives ... | 2025-10-22T14:35:44 |
electron/electron | 74af96da16f9d47bddb6e41df74e387a6254352d | 15db63e26df3e3d59ce6281f030624f746518511 | build: update some build dependencies (#43882)
* build: update some build dependencies
* build: fix eslint issues after updating
* build: disable ts check on busted js example
* build: update internal types for stricter event handling
* restore url.parse behavior
* fix typing issues
* sigh
* build... | [
{
"path": ".eslintrc.json",
"patch": "@@ -19,7 +19,7 @@\n \"prefer-const\": [\"error\", {\n \"destructuring\": \"all\"\n }],\n- \"standard/no-callback-literal\": \"off\"\n+ \"n/no-callback-literal\": \"off\"\n },\n \"parserOptions\": {\n \"ecmaVersion\": 6,",
"additions": 1,
... | 2024-09-26T07:12:11 |
nodejs/node | b2405e9b075e5637f250cf57e93c0bd6f3189f9b | 11bb7cdb07028a0655a2580344a67c15f7165295 | src: migrate from deprecated SnapshotCreator constructor
Previously we have been using the variant of SnapshotCreator that
only passes the external references instead of
v8::Isolate::CreateParams and it's about to be deprecated.
Switch to using the new constructor that takes a fully CreateParams
instead.
This also ma... | [
{
"path": "lib/internal/buffer.js",
"patch": "@@ -39,6 +39,13 @@ const {\n },\n } = internalBinding('util');\n \n+const {\n+ namespace: {\n+ isBuildingSnapshot,\n+ },\n+ addAfterUserSerializeCallback,\n+} = require('internal/v8/startup_snapshot');\n+\n // Temporary buffers to convert numbers.\n cons... | 2024-10-09T16:09:40 |
vercel/next.js | b66c1d61765df684ad6e58f60c209b0b587a4908 | 96754b605fad930dcf2db1384e5afa21f7ebf57c | Remove layout-router sticky/fixed debug warning (#85193)
Fixes an issue that reproduces due to a combination of the log
forwarding logic alongside logging out an explicit element. We can add
this back in the future once our log forwarding library properly ignores
non-enumerable properties. | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -140,12 +140,6 @@ function shouldSkipElement(element: HTMLElement) {\n // and will result in a situation we bail on scroll because of something like a fixed nav,\n // even though the actual page content is offscreen\n if (... | 2025-10-21T23:04:25 |
golang/go | 047c2ab841e2d2233d0bef420d1b5ecb545a380a | ae8eba071b228dd9e05de0b0c338f3d941a0a43f | cmd/link: don't pass -Wl,-S on Solaris
Solaris linker's -S has a different meaning.
Fixes #75637.
Change-Id: I51e641d5bc6d7f64ab5aa280090c70ec787a1fbf
Reviewed-on: https://go-review.googlesource.com/c/go/+/707096
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: D... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -386,7 +386,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() {\n+\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linke... | 2025-09-26T13:45:08 |
electron/electron | 15db63e26df3e3d59ce6281f030624f746518511 | ff36ff84b7f929e9aac5a3328e94e6351286aed8 | fix: SCContentSharingPicker crash in iframes (#43905)
When running `getDisplayMedia` from an `iframe` and then destroying that
`iframe`, the destrutcor for ScreenCaptureKitDeviceMac gets run, but it
doesn't clean up the observers for the shared macOS picker.
In this change we remove the observer on cleanup and fi... | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -131,4 +131,3 @@ feat_enable_customizing_symbol_color_in_framecaptionbutton.patch\n build_expose_webplugininfo_interface_to_electron.patch\n osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch\n feat_allow_usage_of_sccontentsharingpicker_on_supported_p... | 2024-09-25T23:43:23 |
nodejs/node | 29af9cea7f233f2aa2ac052a86149293cdd9f13b | 86c2505441f0ebfd119b32de39b11ec54cd0ba9d | crypto: fix misleading positional argument
The fourth positional argument of `createCipherBase` is `true` when
called from within the `Cipheriv` constructor and `false`when called
from within the `Decipheriv` constructor. This value is then passed to
the `CipherBase::New()` method, which treats it as follows:
arg... | [
{
"path": "lib/internal/crypto/cipher.js",
"patch": "@@ -112,21 +112,21 @@ function getUIntOption(options, key) {\n return -1;\n }\n \n-function createCipherBase(cipher, credential, options, decipher, iv) {\n+function createCipherBase(cipher, credential, options, isEncrypt, iv) {\n const authTagLength =... | 2025-04-13T23:22:02 |
golang/go | ae8eba071b228dd9e05de0b0c338f3d941a0a43f | fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01 | cmd/link: use correct length for pcln.cutab
The pcln.cutab slice holds uint32 elements, as can be seen in the
runtime.moduledata type. The slice was being created with the len
(and cap) set to the size of the slice, which means that the count
was four times too large. This patch sets the correct len/cap.
This doesn't... | [
{
"path": "src/cmd/link/internal/ld/symtab.go",
"patch": "@@ -645,7 +645,7 @@ func (ctxt *Link) symtab(pcln *pclntab) []sym.SymKind {\n \tsliceSym(pcln.funcnametab)\n \n \t// The cutab slice\n-\tsliceSym(pcln.cutab)\n+\tslice(pcln.cutab, uint64(ldr.SymSize(pcln.cutab))/4)\n \n \t// The filetab slice\n \tsli... | 2025-09-29T04:25:24 |
vercel/next.js | 96754b605fad930dcf2db1384e5afa21f7ebf57c | 48bb490d6396a8db09811bf21997ab6c5a38c0b8 | Tweaks to blocking route error message (#85191)
Makes it more clear that `<Suspense>` and "use cache" are separate
approaches for fixing the error, not requirements.
<img width="969" height="711" alt="Screenshot 2025-10-21 at 3 09 57 PM"
src="https://github.com/user-attachments/assets/34bd2efc-9fee-4aba-82eb-6b395663... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/container/errors.tsx",
"patch": "@@ -67,22 +67,28 @@ function BlockingPageLoadErrorDescription() {\n experience. Next.js uses this error to ensure your app loads instantly\n on every navigation.\n </p>\n- <p>To fix this, you c... | 2025-10-21T22:24:29 |
electron/electron | c8895d0547bc7711d2bdf232470bb655c3e90112 | 1d3b1284c46b8a9db3a16da090675a7882c86e4f | fix: close all open sheets before closing window on macOS (#43706) | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -352,8 +352,11 @@ static bool FromV8(v8::Isolate* isolate,\n // [window_ performClose:nil], the window won't close properly\n // even after the user has ended the sheet.\n // Ensure it's closed before calling [window_ performClose:nil].\n- ... | 2024-09-25T11:23:49 |
nodejs/node | a4843f4a470001f3668678030b32917909705f2d | a42bca5fa77a461b37aac4c726c38a8202def634 | src: improve error message for invalid child stdio type in spawn_sync
PR-URL: https://github.com/nodejs/node/pull/57589
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed... | [
{
"path": "src/spawn_sync.cc",
"patch": "@@ -1055,7 +1055,10 @@ Maybe<int> SyncProcessRunner::ParseStdioOption(int child_fd,\n return Just(AddStdioInheritFD(child_fd, inherit_fd));\n }\n \n- UNREACHABLE(\"invalid child stdio type\");\n+ Utf8Value stdio_type(env()->isolate(), js_type);\n+ fprintf(st... | 2025-03-21T22:08:48 |
golang/go | fe3ba74b9e6e3385cbf7c2f3a9c0b72baeac4b01 | d42d56b764f4c8b06aaa2de2dc9c1d2171e79490 | cmd/link: skip TestFlagW on platforms without DWARF symbol table
As with other DWARF tests, don't run TestFlagW on platforms
where executables don't have a DWARF symbol table.
Fixes #75585
Change-Id: I81014bf59b15e30ac1b2a7d24a52f9647db46c26
Reviewed-on: https://go-review.googlesource.com/c/go/+/706418
Reviewed-by: ... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -364,6 +364,10 @@ func TestFlagW(t *testing.T) {\n \tif runtime.GOOS == \"aix\" {\n \t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n \t}\n+\tif !platform.ExecutableHasDWARF(runtime.GOOS, runtime.GOARCH) {\n+\t\tt.Skipf(\"skipping on... | 2025-09-27T18:45:36 |
facebook/react | 2bd415355e3ec9b87859b68af05972bc50390753 | e662b0a24b1d8a1c8ec86558aef4b7e5c4427116 | [compiler][repro] ValidatePreserveMemo x useRef bug
ghstack-source-id: 6ac5d58e97eba92642b5e4c5e2f915d91a5730dc
Pull Request resolved: https://github.com/facebook/react/pull/30602 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-maybe-mutable-ref-memo-not-preserved.expect.md",
"patch": "@@ -0,0 +1,45 @@\n+\n+## Input\n+\n+```javascript\n+// @validatePreserveExistingMemoizationGuarantees:true\n+\n+import {useRef, useMemo} from 'react';\n+imp... | 2024-08-07T23:11:31 |
vercel/next.js | 077da103745e9e582d0d069c752369f8aca677fe | 409b28106e3724fc66e4d4eef54770fe5994e239 | Fix Activity boundary names (#85185)
Follow-up to #85155. Made a mistake in the context-passing logic. | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -44,7 +44,6 @@ import { hasInterceptionRouteInCurrentTree } from './router-reducer/reducers/has\n import { dispatchAppRouterAction } from './use-action-queue'\n import { useRouterBFCache, type RouterBFCacheEntry } from './bfcach... | 2025-10-21T21:40:00 |
electron/electron | 1d3b1284c46b8a9db3a16da090675a7882c86e4f | 30fbeec036f8481ba9eba9cb01af0236ed0d28ff | test: ensure `sender-pid` hint is set in Linux notifications (#43928)
test: expect a `sender-pid` hint in Linux notifications.
This PR ensures that the `sender-pid` hint is set for new notifications.
It also updates the spec to confirm that DBus receives the hint and that
it has the correct value.
This fixes a... | [
{
"path": "BUILD.gn",
"patch": "@@ -75,6 +75,7 @@ if (is_linux) {\n \"notify_notification_set_timeout\",\n \"notify_notification_set_urgency\",\n \"notify_notification_set_hint_string\",\n+ \"notify_notification_set_hint\",\n \"notify_notification_show\",\n \"notify_notifi... | 2024-09-25T11:20:36 |
nodejs/node | a42bca5fa77a461b37aac4c726c38a8202def634 | dfaded80e1fef69e2de2fc987130cd12638ef02d | readline: fix unicode line separators being ignored
PR-URL: https://github.com/nodejs/node/pull/57591
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -78,8 +78,15 @@ const { StringDecoder } = require('string_decoder');\n const kHistorySize = 30;\n const kMaxUndoRedoStackSize = 2048;\n const kMincrlfDelay = 100;\n-// \\r\\n, \\n, or \\r followed by something other than \\n\n-const lineEnding = /... | 2025-03-22T18:47:55 |
rust-lang/rust | 072bd694adda1ad5c0fb69291c6a5a534dc50923 | 70d86e3abeecf3a655264d9a716c5d08160176b7 | Fix ICEs due to incomplete typechecking on struct literals with syntax errors. | [
{
"path": "compiler/rustc_hir_typeck/src/expr.rs",
"patch": "@@ -2203,14 +2203,18 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n };\n self.typeck_results.borrow_mut().fru_field_types_mut().insert(expr.hir_id, fru_tys);\n }\n- rustc_hir::StructTailExpr::NoneWith... | 2026-03-05T17:50:13 |
facebook/react | e662b0a24b1d8a1c8ec86558aef4b7e5c4427116 | e948a5ac6876a016ff57f7177f93452ea2eeb574 | [compiler][be] Less ambiguous error messages for validateMemo bailout
ghstack-source-id: 312093ec74d733bccd2d2d8400eaba267c9e33a7
Pull Request resolved: https://github.com/facebook/react/pull/30601 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -433,64 +433,74 @@ class Visitor extends ReactiveFunctionVisitor<VisitorState> {\n * recursively visits ReactiveValues and instructions\n */\n this.recordTemporaries(ins... | 2024-08-07T23:11:30 |
golang/go | 5500cbf0e420a6d643835ec05f35abb170e3e443 | 34e67623a81e9e93c3d7d0f0cb257d7d722939f2 | debug/elf: prevent offset overflow
When applying relocations, a malformed ELF file can provide an offset
that, when added to the relocation size, overflows. This wrapped-around
value could then incorrectly pass the bounds check, leading to a panic
when the slice is accessed with the original large offset.
This change... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -25,6 +25,7 @@ import (\n \t\"internal/saferio\"\n \t\"internal/zstd\"\n \t\"io\"\n+\t\"math\"\n \t\"os\"\n \t\"strings\"\n \t\"unsafe\"\n@@ -830,17 +831,9 @@ func (f *File) applyRelocationsAMD64(dst []byte, rels []byte) error {\n \n \t\tswitch t {\n \t\tcase ... | 2025-09-25T04:41:12 |
vercel/next.js | 409b28106e3724fc66e4d4eef54770fe5994e239 | e2262334f8e7ba0050d74d4fe9ea7f9cd7b7033d | Improve Proxy invalid export error message (#84887)
Improve invalid Proxy/Middleware export error message to:
```
> Build error occurred
Error: The file "./proxy.ts" must export a function, either as a default export or as a named "proxy" export.
This function is what Next.js runs for every request handled by th... | [
{
"path": "Cargo.lock",
"patch": "@@ -4322,6 +4322,7 @@ dependencies = [\n \"next-custom-transforms\",\n \"next-taskless\",\n \"once_cell\",\n+ \"pathdiff\",\n \"percent-encoding\",\n \"qstring\",\n \"react_remove_properties\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
... | 2025-10-21T20:54:58 |
nodejs/node | 09ecd2e84a2d7f507d26742912d729d5dc5c81f0 | 6a7b005a07a0912260e328c6397317b5b862ffde | fs: added test for missing call to uv_fs_req_cleanup
Added a unit test for testing the memory usage of readFileSync.
Test is looking specifically for the the issue caused by failing
to free the filepath buffer in fs::ReadFileUtf8(), but it will also
catch other significant memory leaks in readFileSync() as well.
Refs... | [
{
"path": "test/pummel/test-fs-read-file-sync-utf8-memory.js",
"patch": "@@ -0,0 +1,54 @@\n+'use strict';\n+const common = require('../common');\n+if (common.isIBMi)\n+ common.skip('On IBMi, the rss memory always returns zero');\n+\n+// This test verifies that readFileSync does not leak memory when reading... | 2025-04-11T15:09:51 |
facebook/react | 838da52d67a42295e05aad8d03f962129d9d88ff | 030d83bab402723cbcb28d48889b9bd83ee3914a | [ci] Fix incorrect tags being pushed for compiler releases
ghstack-source-id: 812e49333ce19c3d13adb6cc87154fb83d7639b0
Pull Request resolved: https://github.com/facebook/react/pull/30620 | [
{
"path": "compiler/scripts/release/publish.js",
"patch": "@@ -61,9 +61,8 @@ async function main() {\n })\n .option('tags', {\n description: 'Tags to publish to npm',\n- type: 'choices',\n- choices: ['experimental'],\n- default: ['experimental'],\n+ type: 'string',\n+ ... | 2024-08-06T21:15:56 |
golang/go | 34e67623a81e9e93c3d7d0f0cb257d7d722939f2 | af6999e60d498887fceaeca89f4aa88ff35c91df | all: fix typos
Change-Id: I290812905b6b5c52f289f7f8524f93aef19e6efe
Reviewed-on: https://go-review.googlesource.com/c/go/+/706775
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed... | [
{
"path": "src/crypto/tls/handshake_server_tls13.go",
"patch": "@@ -35,7 +35,7 @@ type echServerContext struct {\n \tconfigID uint8\n \tciphersuite echCipher\n \ttranscript hash.Hash\n-\t// inner indicates that the initial client_hello we recieved contained an\n+\t// inner indicates that the initial cli... | 2025-09-25T14:38:19 |
electron/electron | 30fbeec036f8481ba9eba9cb01af0236ed0d28ff | af54c5a4b6c9d022045d6f01a068fe62cb196565 | chore: bump chromium to 131.0.6734.0 (main) (#43769)
* chore: bump chromium in DEPS to 130.0.6723.4
* chore: bump chromium in DEPS to 131.0.6724.0
* chore: update patches
* chore: update libc++ filenames
* 5844369: controlledframe: Disable Web Bluetooth for <webview> & <controlledframe>
https://chromium-r... | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -6,6 +6,6 @@ runs:\n - name: Install Build Tools\n shell: bash\n run: |\n- export BUILD_TOOLS_SHA=d5b87591842be19058e8d75d2c5b7f1fabe9f450\n+ export BUILD_TOOLS_SHA=33dc5186556bfbf7b0121a00cdd89ed3802e47da\n n... | 2024-09-25T11:19:39 |
vercel/next.js | e2262334f8e7ba0050d74d4fe9ea7f9cd7b7033d | f50c769fa2034a5702f6a61ea56e0ba1af3859fd | [turbopack] Implement improved deobfuscation for free calls and module identifiers. (#85060)
Improve deobfuscation of 'imported module identifier' and attempt to deobfuscate error messages logged by the server.
Before
```
⨯ TypeError: (0 , __TURBOPACK__imported__module__$5b$project$5d2f$examples$2f$with$2d$turbopack... | [
{
"path": "examples/basic-css/tsconfig.json",
"patch": "@@ -21,6 +21,12 @@\n \"strictNullChecks\": true,\n \"target\": \"ES2017\"\n },\n- \"include\": [\"next-env.d.ts\", \".next/types/**/*.ts\", \"**/*.ts\", \"**/*.tsx\"],\n+ \"include\": [\n+ \"next-env.d.ts\",\n+ \".next/types/**/*.ts\"... | 2025-10-21T20:54:28 |
rust-lang/rust | 25c779800409ee5066e0a7cfb6a112a2f737b154 | 96f2261db1cc7367962a0c82599fe26edd82b414 | Create new `Diagnostic` type for panic calls without literals | [
{
"path": "compiler/rustc_lint/src/non_fmt_panic.rs",
"patch": "@@ -1,5 +1,6 @@\n use rustc_ast as ast;\n-use rustc_errors::{Applicability, msg};\n+use rustc_errors::{Applicability, Diag, DiagCtxtHandle, Diagnostic, Level, msg};\n+use rustc_hir::def_id::DefId;\n use rustc_hir::{self as hir, LangItem};\n use... | 2026-03-05T11:11:56 |
facebook/react | 030d83bab402723cbcb28d48889b9bd83ee3914a | 9f0508fcf47026cdc58e49a15e5865b66a24480f | [ci] Fix dist-tag command
ghstack-source-id: bdbcc12b2815d00d790397c6a6702c7f6e1564e0
Pull Request resolved: https://github.com/facebook/react/pull/30619 | [
{
"path": "compiler/scripts/release/publish.js",
"patch": "@@ -180,22 +180,17 @@ async function main() {\n spinner.start('Pushing tags to npm');\n for (const tag of argv.tags) {\n try {\n- let opts;\n+ let opts = ['dist-tag', 'add', `${pkgName}@${newVersion}`, tag];\n ... | 2024-08-06T19:30:47 |
nodejs/node | 6a7b005a07a0912260e328c6397317b5b862ffde | d0a5bd676fe77d745addf99187041cf899603ca5 | fs: add missing call to uv_fs_req_cleanup
Always call uv_fs_req_cleanup after calling uv_fs_open instead of just
when uv_fs_open returns a negative result. I referenced ReadFileSync
from node:js2c when making this change.
https://github.com/bnoordhuis made the same suggestion based on the
PR https://github.com/nodejs... | [
{
"path": "src/node_file.cc",
"patch": "@@ -2711,10 +2711,10 @@ static void ReadFileUtf8(const FunctionCallbackInfo<Value>& args) {\n FS_SYNC_TRACE_END(open);\n if (req.result < 0) {\n uv_fs_req_cleanup(&req);\n- // req will be cleaned up by scope leave.\n return env->ThrowUVExcepti... | 2025-04-09T20:51:27 |
electron/electron | bcf4095aceac261fd716b9372d071b5de31a1c00 | 500d4f0d05130aeaf26c01da9dde72b5a9d0d65a | fix: crash when focusing `WebView` `webContents` (#43921)
fix: crash when focusing WebView | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -3339,6 +3339,12 @@ void WebContents::Focus() {\n if (owner_window())\n owner_window()->Focus(true);\n #endif\n+\n+ // WebView uses WebContentsViewChildFrame, which doesn't have a Focus impl\n+ // and triggers a fatal NOTREACHE... | 2024-09-24T23:19:04 |
vercel/next.js | f50c769fa2034a5702f6a61ea56e0ba1af3859fd | 0a3f1e45f4896626c5691330bf69b246a3f2911c | fix: add backwards compat for middleware → proxy field renames (#85183)
### What?
These config keys were recently soft-renamed with forward compatibility
on the _resolved_ config object:
- `experimental.proxyPrefetch` → `experimental.middlewarePrefetch`
- `experimental.externalProxyRewritesResolve` →
`experimental.e... | [
{
"path": "packages/next/src/server/config.test.ts",
"patch": "@@ -134,4 +134,77 @@ describe('loadConfig', () => {\n )\n })\n })\n+\n+ describe('middleware to proxy config key rename backward/forward compatibility', () => {\n+ it('should copy `skipMiddlewareUrlNormalize value` to `skipProxyU... | 2025-10-21T20:00:52 |
golang/go | 25c36b95d1523f22d4c46ec237acc03e00540e0a | f0e281e693685954df71374c9a9fb856e8745519 | [dev.simd] simd, cmd/compile: add 128 bit select-from-pair
Using this name until a better one appears:
x.Select128FromPair(3, 2, y)
Includes test for constant and variable case.
Checks for unexpected immediates (using the zeroing flag,
which is not supported for this intrinsic) and panics.
Change-Id: I9249475d657... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1053,6 +1053,8 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB128,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB256,\n \t\tssa.OpAMD64VGF2P8AFFINEINVQB512,\n+\t\tssa.OpAMD64VPERM2F128256,\n+\t\tssa.OpA... | 2025-09-19T17:07:59 |
rust-lang/rust | 5701d13840031ed3061281e43794f631f41a44a6 | 6b1ee2c7018e97189c06a1734937da0bf1dd32a8 | refactor `PointeeInfo`
Make `size`/`align` always correct rather than conditionally on the
`safe` field. This makes it less error prone and easier to work with for
`MaybeDangling` / potential future pointer kinds like `Aligned<_>`. | [
{
"path": "src/base.rs",
"patch": "@@ -10,7 +10,7 @@ use rustc_data_structures::profiling::SelfProfilerRef;\n use rustc_index::IndexVec;\n use rustc_middle::ty::TypeVisitableExt;\n use rustc_middle::ty::adjustment::PointerCoercion;\n-use rustc_middle::ty::layout::FnAbiOf;\n+use rustc_middle::ty::layout::{Fn... | 2026-02-19T17:42:24 |
nodejs/node | 038d82980ab26cd79abe4409adc2fecad94d7c93 | 67786c127008ed735d5b3d776e9b0ac9f68d36cd | doc: fix deprecation type for `DEP0148`
PR-URL: https://github.com/nodejs/node/pull/57785
Refs: https://github.com/nodejs/node/pull/40121
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3064,11 +3064,11 @@ changes:\n description: Documentation-only deprecation.\n -->\n \n-Type: Runtime\n+Type: End-of-Life\n \n Using a trailing `\"/\"` to define subpath folder mappings in the\n-[subpath exports][] or [subpath imports][] fields is deprec... | 2025-04-09T14:36:40 |
facebook/react | 3d61b9b4cd4135084d1e8e3b05813b915c38764d | 22360089b5e40ccfa5df26f1ec491b5c46e7ad61 | [compiler] Stay in SSA form through entire pipeline
This PR updates to use SSA form through the entire compilation pipeline. This means that in both HIR form and ReactiveFunction form, `Identifier` instances map 1:1 to `IdentifierId` values. If two identifiers have the same IdentifierId, they are the same instance. Wh... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -77,7 +77,11 @@ import {flattenScopesWithHooksOrUseHIR} from '../ReactiveScopes/FlattenScopesWit\n import {pruneAlwaysInvalidatingScopes} from '../ReactiveScopes/PruneAlwaysInvalidatingScopes';\n import pruneI... | 2024-08-06T18:24:51 |
vercel/next.js | 0a3f1e45f4896626c5691330bf69b246a3f2911c | 400b82cb45f70352fc803c1227261b92e62113c0 | Rename "blocking route" error docs page (#85189)
The content needs to be updated, too, but for now this just fixes the
link and title so it matches the updated error message in #85087. | [
{
"path": "errors/blocking-route.mdx",
"patch": "@@ -1,5 +1,5 @@\n ---\n-title: Cannot access data, headers, params, searchParams, or a short-lived cache a Suspense boundary nor a `\"use cache\"` above it.\n+title: Uncached data was accessed outside of `<Suspense>`\n ---\n \n ## Why This Error Occurred",
... | 2025-10-21T19:43:36 |
electron/electron | 500d4f0d05130aeaf26c01da9dde72b5a9d0d65a | e64a66bfd31dce94b2754579678a49f97c349129 | fix: -Wunsafe-buffer-usage warning in asar_util's ReadFileToString() (#43896) | [
{
"path": "shell/common/asar/asar_util.cc",
"patch": "@@ -126,11 +126,8 @@ bool ReadFileToString(const base::FilePath& path, std::string* contents) {\n return false;\n \n contents->resize(info.size);\n- if (static_cast<int>(info.size) !=\n- src.Read(info.offset, const_cast<char*>(contents->data(... | 2024-09-24T20:41:24 |
golang/go | 3e4540b49d3066ee3fd57f3456506f6d09d0129b | 15fbe3480b1c44113e9cdb26008da9f66d4e57b2 | os/user: use getgrouplist on illumos && cgo
The getgrouplist call is available on Illumos since December 2020:
https://github.com/illumos/illumos-gate/commit/f2c438c5058c64b7373448f239156bf60009abcb
We can assume it is available for users now. Let's switch to using it
when cgo is enabled.
Since neither LUCY nor... | [
{
"path": "src/os/user/cgo_listgroups_unix.go",
"patch": "@@ -2,7 +2,7 @@\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 || darwin) && !osusergo && (darwin || dragonfly || freebsd || (linux && !android) || netbsd || openbsd ||... | 2025-09-11T16:57:00 |
rust-lang/rust | 312055fad562f3a20e88e3863676c2461a3fb3fe | 7cefcb41ff7e27f3619bfecff429f72b5f3bface | refactor `PointeeInfo`
Make `size`/`align` always correct rather than conditionally on the
`safe` field. This makes it less error prone and easier to work with for
`MaybeDangling` / potential future pointer kinds like `Aligned<_>`. | [
{
"path": "compiler/rustc_abi/src/lib.rs",
"patch": "@@ -2145,22 +2145,22 @@ pub enum PointerKind {\n }\n \n /// Encodes extra information we have about a pointer.\n+///\n /// Note that this information is advisory only, and backends are free to ignore it:\n /// if the information is wrong, that can cause U... | 2026-02-19T17:42:24 |
facebook/react | c9143b98d0096c909a2cc23290e3044c1390f6e2 | e8a2b47eb5d807a2da22915a6d444d3947c9a885 | [compiler] Refactor release script
Updates the release script to publish tags as well as take a `--ci`
option
Test plan:
```
$ yarn npm:publish --debug --frfr
yarn run v1.22.22
$ node scripts/release/publish --debug --frfr
ℹ Preparing to publish (for real) [debug=true]
ℹ Building packages
✔ Successfully built babel-... | [
{
"path": "compiler/package.json",
"patch": "@@ -25,9 +25,11 @@\n \"snap\": \"yarn workspace babel-plugin-react-compiler run snap\",\n \"snap:build\": \"yarn workspace snap run build\",\n \"postinstall\": \"perl -p -i -e 's/react\\\\.element/react.transitional.element/' packages/snap/node_module... | 2024-08-06T18:41:26 |
nodejs/node | 67786c127008ed735d5b3d776e9b0ac9f68d36cd | ada4abf2d143f14e40177bb11f54a06f5b95c355 | test_runner: improve --test-timeout to be per test
Previously `--test-timeout` is set on per test execution, this is
obviously a bug as per test execution is hard to be expected, this patch
addresses the issue by setting `timeout` from per execution to per test.
This patch also fixes a minor issue that `--test-timeou... | [
{
"path": "lib/internal/test_runner/runner.js",
"patch": "@@ -191,6 +191,7 @@ class FileTest extends Test {\n column: 1,\n file: resolve(this.name),\n };\n+ this.timeout = null;\n }\n \n #skipReporting() {",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{... | 2025-04-09T14:36:19 |
electron/electron | e64a66bfd31dce94b2754579678a49f97c349129 | 7222a9fe1f874d094e63e15f62f95d505e332140 | fix: detach native view when its removed from parent on macOS (#43627)
Right now DelayedNativeViewHost attaches its underlying native view
when it's being attached to a widget but it doesn't detach it when
it's being detached. It may lead to use-after-free and crash. | [
{
"path": "shell/browser/ui/cocoa/delayed_native_view_host.mm",
"patch": "@@ -15,6 +15,8 @@\n \n void DelayedNativeViewHost::ViewHierarchyChanged(\n const views::ViewHierarchyChangedDetails& details) {\n+ if (!details.is_add && native_view())\n+ Detach();\n NativeViewHost::ViewHierarchyChanged(det... | 2024-09-24T13:28:36 |
golang/go | 16ae11a9e1ca064718303f11d30110cf4e4dbbbc | 459f3a3adc131d9bb829efe0add27327a29b9c88 | runtime: move TestReadMetricsSched to testprog
There are just too many flakes resulting from background pollution by
the testing package and other tests. Run in a subprocess where at least
the environment can be more tightly controlled.
Fixes #75049.
Change-Id: Iad59edaaf31268f1fcb77273f01317d963708fa6
Reviewed-on: ... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -22,7 +22,6 @@ import (\n \t\"strings\"\n \t\"sync\"\n \t\"sync/atomic\"\n-\t\"syscall\"\n \t\"testing\"\n \t\"time\"\n \t\"unsafe\"\n@@ -1578,211 +1577,10 @@ func TestReadMetricsFinalizers(t *testing.T) {\n }\n \n func TestReadMetricsSched(t *testing.T)... | 2025-09-26T17:05:43 |
facebook/react | e8a2b47eb5d807a2da22915a6d444d3947c9a885 | ff0d2621f4846414b134800b1639287b66df42cf | [compiler] Remove sleep in manual release script
I originally added this prior to the compiler being OSS'd as a "just in
case" feature to panic cancel if something went wrong. Now that the
compiler is already launched this is unnecessary.
ghstack-source-id: dd17dc8a331657ce23c0cbc012ba967cfc3b9542
Pull Request resolv... | [
{
"path": "compiler/scripts/release/publish-manual.js",
"patch": "@@ -11,7 +11,6 @@ const PUBLISHABLE_PACKAGES = [\n 'eslint-plugin-react-compiler',\n 'react-compiler-healthcheck',\n ];\n-const TIME_TO_RECONSIDER = 3_000;\n \n function _spawn(command, args, options, cb) {\n const child = cp.spawn(comm... | 2024-08-06T18:41:25 |
vercel/next.js | 7a8019599e22cd0967310ef1a0938b0525341b2c | 6c105133e7dc0534630b666897391ea0da95bc37 | Update routes generation for build-complete (#85017)
## Summary
- Adds comprehensive route generation and normalization for
build-complete adapter hooks
- Enhances adapter output types with additional metadata fields
(`sourcePage`, `wasmAssets`, `pprChain`, `parentFallbackMode`)
- Improves middleware matcher handling... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/adapterPath.mdx",
"patch": "@@ -128,12 +128,17 @@ Called after the build process completes with detailed information about routes\n **Parameters:**\n \n - `routes`: Object containing route manifests for headers, redirects, rewrites, and dyn... | 2025-10-21T17:21:25 |
nodejs/node | ada4abf2d143f14e40177bb11f54a06f5b95c355 | bc09144aa640d2485196f779733d10b84e755b60 | http2: fix check for `frame->hd.type`
According to the comment, this should be checking whether
`frame->hd.type` is `NGHTTP2_GOAWAY`, i.e. `0x07` and not `0x03`.
PR-URL: https://github.com/nodejs/node/pull/57644
Refs: https://github.com/nodejs/node/commit/1b693fa03a0d36bc1dc9ec8d95060e3e5ceeee7b
Reviewed-By: Matteo C... | [
{
"path": "src/node_http2.cc",
"patch": "@@ -1211,7 +1211,7 @@ int Http2Session::OnFrameNotSent(nghttp2_session* handle,\n // closed but the Http2Session will still be up causing a memory leak.\n // Therefore, if the GOAWAY frame couldn't be send due to\n // ERR_SESSION_CLOSING we should force c... | 2025-04-09T11:48:11 |
rust-lang/rust | 169dd72d476b415a974f8c37416af1bb80f29de3 | f8704be04fe1150527fc2cf21dd44327f0fe87fb | Fix obtaining def_id from unresolved segment | [
{
"path": "compiler/rustc_hir_analysis/src/delegation.rs",
"patch": "@@ -572,17 +572,15 @@ fn get_delegation_user_specified_args<'tcx>(\n .opt_delegation_generics()\n .expect(\"Lowering delegation\");\n \n- let get_segment = |hir_id: HirId| -> (&'tcx PathSegment<'tcx>, DefId) {\n+ let ... | 2026-03-05T07:38:56 |
golang/go | 4631a2d3c6a30956f5cffb71583eb97276bcc9b5 | 0f31d742cdfda3af6b56c61a765c8df76053cf0a | cmd/link: skip TestFlagW on AIX
The internal/xcoff can only parse XCOFF with symbol table. This
test creates executables without symbol table. Skip the test.
(It might be possible to make internal/xcoff work with binaries
without symbol table? Leave it for the future.)
Fixes #75618.
Change-Id: I273ffefee5376d987acc... | [
{
"path": "src/cmd/link/dwarf_test.go",
"patch": "@@ -361,6 +361,9 @@ func TestDWARFLocationList(t *testing.T) {\n \n func TestFlagW(t *testing.T) {\n \ttestenv.MustHaveGoBuild(t)\n+\tif runtime.GOOS == \"aix\" {\n+\t\tt.Skip(\"internal/xcoff cannot parse file without symbol table\")\n+\t}\n \tt.Parallel()\... | 2025-09-26T13:38:23 |
facebook/react | ff0d2621f4846414b134800b1639287b66df42cf | eb52f3788fe821427863ebe52fb6935ea7ec2474 | Fix rust lints
ghstack-source-id: baf433a98a70d9105c8088d82e04a3d96783e9e6
Pull Request resolved: https://github.com/facebook/react/pull/30616 | [
{
"path": "compiler/crates/react_hir/src/merge_consecutive_blocks.rs",
"patch": "@@ -151,6 +151,7 @@ impl MergedBlocks {\n \n #[derive(Debug, Error)]\n #[error(\"Expected predecessor {predecessor} to exist\")]\n+#[allow(dead_code)]\n pub struct ExpectedPredecessorToExist {\n predecessor: BlockId,\n }",
... | 2024-08-06T18:41:24 |
vercel/next.js | 6c105133e7dc0534630b666897391ea0da95bc37 | 08d679c23d6934b317dbd7b8d5554aa297580c32 | Fix: CSS asset URLs broken with `experimental.inlineCss` (#85140)
This PR fixes a critical issue with the `experimental.inlineCss` feature
where CSS `url()` references to fonts and other assets would break when
CSS was inlined into `<style>` tags instead of being loaded via external
`<link>` tags. The problem occurred... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -1078,6 +1078,7 @@ impl Project {\n no_mangling: self.no_mangling(),\n scope_hoisting: self.next_config().turbo_scope_hoisting(self.next_mode()),\n debug_ids: self.next_config().turbopack_debug_ids(),\n+ ... | 2025-10-21T17:13:36 |
facebook/react | eb52f3788fe821427863ebe52fb6935ea7ec2474 | 187dd6a7a234095dfe67d3ee30dabfd5e2ddc531 | [CI] fix the shared_lint cached key (#30609)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please ma... | [
{
"path": ".github/workflows/shared_lint.yml",
"patch": "@@ -43,7 +43,7 @@ jobs:\n uses: actions/cache@v4\n with:\n path: \"**/node_modules\"\n- key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}\n+ key: ${{ runner.arch }}-${{ runner.os... | 2024-08-06T18:43:10 |
golang/go | 0f31d742cdfda3af6b56c61a765c8df76053cf0a | 7d7cd6e07b65d7583f1c7648fc042fbe30352313 | cmd/compile: fix ICE with new(<untyped expr>)
Fixes #75617
Change-Id: Iaee7d4556db54b9999f5ba8458e7c05c11ccfc36
Reviewed-on: https://go-review.googlesource.com/c/go/+/707075
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Aut... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -2434,6 +2434,7 @@ func (r *reader) expr() (res ir.Node) {\n \t\tif r.Bool() {\n \t\t\t// new(expr) -> tmp := expr; &tmp\n \t\t\tx := r.expr()\n+\t\t\tx = typecheck.DefaultLit(x, nil) // See TODO in exprConvert case.\n \t\t\tvar init ir.Node... | 2025-09-26T11:07:18 |
nodejs/node | bc09144aa640d2485196f779733d10b84e755b60 | d6b062cb92b151727eae6b770038878ee5d1b16d | module: fix incorrect formatting in require(esm) cycle error message
Fixes: https://github.com/nodejs/node/issues/57451
PR-URL: https://github.com/nodejs/node/pull/57453
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Jake Yuesong Li <jake.yues... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -416,8 +416,8 @@ class ModuleLoader {\n if (parentFilename) {\n message += ` (from ${parentFilename})`;\n }\n- message += 'A cycle involving require(esm) is disallowed to maintain ';\n- message += 'invariants madated ... | 2025-04-09T11:47:58 |
vercel/next.js | 782d04db1f7c62892a8b76374c07b639ac50c13f | 04c962cfe1e806963e7e348d9bf8cfc8828ef906 | Update blocking prerender error message (#85087) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-message/error-message.tsx",
"patch": "@@ -1,31 +1,38 @@\n import { useState, useRef, useLayoutEffect } from 'react'\n+import type { ErrorType } from '../error-type-label/error-type-label'\n \n export type ErrorMessageType = React... | 2025-10-21T15:50:35 |
facebook/react | c0ee8e94b049a8fb19dd3606a5a1cecc0cbc6a1b | 6750423ca4b9371363fbad1a2be2de84a8e94054 | Fix typos in Turbopack configuration and in Node.js loader error messages (#30593)
<!--
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.
Befor... | [
{
"path": "packages/react-server-dom-esm/src/ReactFlightESMNodeLoader.js",
"patch": "@@ -329,9 +329,9 @@ async function transformClientModule(\n newSrc +=\n 'throw new Error(' +\n JSON.stringify(\n- `Attempted to call the default export of ${url} from the server` +\n+ ... | 2024-08-05T14:11:39 |
golang/go | 7d7cd6e07b65d7583f1c7648fc042fbe30352313 | 41cba31e66c979c413a4368c4f3d82ebadf0fb5b | internal/poll: don't call SetFilePointerEx in Seek for overlapped handles
Overlapped handles don't have the file pointer updated when performing
I/O operations, so there is no need to call syscall.SetFilePointerEx in
FD.Seek. Updating the in-memory offset is sufficient.
Updates #74951 (provides a more complete fix)
... | [
{
"path": "src/internal/poll/fd_windows.go",
"patch": "@@ -1165,11 +1165,29 @@ func (fd *FD) Seek(offset int64, whence int) (int64, error) {\n \t}\n \tdefer fd.readWriteUnlock()\n \n-\tif !fd.isBlocking && whence == io.SeekCurrent {\n-\t\t// Windows doesn't keep the file pointer for overlapped file handles.... | 2025-08-21T08:45:23 |
nodejs/node | d6b062cb92b151727eae6b770038878ee5d1b16d | dc035bbc9b310ff8067bc0dad22230978489c061 | doc: list DOMException as a potential error raised by Node.js
PR-URL: https://github.com/nodejs/node/pull/57783
Refs: https://github.com/nodejs/node/pull/57735
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jason... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -4,23 +4,28 @@\n \n <!--type=misc-->\n \n-Applications running in Node.js will generally experience four categories of\n-errors:\n+Applications running in Node.js will generally experience the following\n+categories of errors:\n \n * Standard JavaScript errors suc... | 2025-04-09T10:50:40 |
vercel/next.js | e8185694db53abe6937d03d7b19456a0d258aa4a | 5b5830526a0e2333282f19152503f795996d4dd5 | [test] Fix test-dev with --projects (#85167) | [
{
"path": "jest.config.js",
"patch": "@@ -5,7 +5,7 @@ const createJestConfig = nextJest()\n // Any custom config you want to pass to Jest\n /** @type {import('jest').Config} */\n const customJestConfig = {\n- displayName: process.env.TURBOPACK ? 'turbopack' : 'default',\n+ displayName: process.env.IS_WEBP... | 2025-10-21T13:19:53 |
facebook/react | 8a70d31ba977a8cdbd8ae2146fdeb5b427bf4ff9 | 3af905d95448d582cbd62fe6d41bd976ce9787ea | [DevTools] Track DOM nodes to Fiber map for HostHoistable Resources (#30590)
Follow up from #30584.
You can already select a singleton or hoistable (that's not a resource)
in the browser elements panel and it'll select the corresponding node in
the RDT Components panel. That works because it uses the same mechani... | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -696,6 +696,40 @@ const fiberToFiberInstanceMap: Map<Fiber, FiberInstance> = new Map();\n // operations that should be the same whether the current and work-in-progress Fiber is used.\n const idToDevToolsInstanceMap: Map<... | 2024-08-02T23:22:39 |
electron/electron | ceea1225a211526d6b5b9bcffd47c65ec8b54d4c | 517d04de16701f0cf2a6ffe5d08adcc2c68c45f7 | docs: navigation history example (#42980)
* docs: add fiddle example
* docs: add tutorial guide
* refactor: PR review comments
* refactor: add eof
* refactor: render navigation history and make demo better.
* refactor: fix broken links
* refactor: add eof newline
* docs: review feedback :)
* ch... | [
{
"path": "docs/README.md",
"patch": "@@ -37,6 +37,7 @@ an issue:\n * [Offline/Online Detection](tutorial/online-offline-events.md)\n * [Represented File for macOS BrowserWindows](tutorial/represented-file.md)\n * [Native File Drag & Drop](tutorial/native-file-drag-drop.md)\n+ * [Navigation History](... | 2024-09-23T17:18:26 |
golang/go | 41cba31e66c979c413a4368c4f3d82ebadf0fb5b | dd1d597c3ac049de7865a9cb98627fde0baacc69 | mime/multipart: percent-encode CR and LF in header values to avoid CRLF injection
When provided with a field or file name containing newlines,
multipart.FileContentDisposition and other header-producing functions
could create an invalid header value.
In some scenarios, this could permit a malicious input to perform
a... | [
{
"path": "src/mime/multipart/writer.go",
"patch": "@@ -125,8 +125,20 @@ func (w *Writer) CreatePart(header textproto.MIMEHeader) (io.Writer, error) {\n \treturn p, nil\n }\n \n-var quoteEscaper = strings.NewReplacer(\"\\\\\", \"\\\\\\\\\", `\"`, \"\\\\\\\"\")\n+var quoteEscaper = strings.NewReplacer(\"\\\\... | 2025-09-25T20:24:01 |
nodejs/node | dc035bbc9b310ff8067bc0dad22230978489c061 | 437c6aac16a3b1bb8674fbe0b1709bf949105c01 | zlib: fix pointer alignment
The function AllocForBrotli prefixes the allocated memory with its
size, and returns a pointer to the region after it. This pointer can
however no longer be suitably aligned. Correct this by allocating
the maximum of the the size of the size_t and the max alignment.
On Arm 32bits the size_... | [
{
"path": "src/node_zlib.cc",
"patch": "@@ -608,7 +608,8 @@ class CompressionStream : public AsyncWrap, public ThreadPoolWork {\n }\n \n static void* AllocForBrotli(void* data, size_t size) {\n- size += sizeof(size_t);\n+ constexpr size_t offset = std::max(sizeof(size_t), alignof(max_align_t));\n+... | 2025-04-09T10:24:13 |
vercel/next.js | 5b5830526a0e2333282f19152503f795996d4dd5 | 3dafab91ce5a249f3527b08ff9969ab9af787d4f | Update Activity names given to routes (#85155)
In practical terms, clicking the name of a route segment in the Suspense
DevTools should select the child slots of that layout, because when you
focus on it, what you're interested in debugging are navigations that
occur within the shared layout.
So the name we apply to ... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -435,6 +435,9 @@ function Router({\n parentCacheNode: cache,\n parentSegmentPath: null,\n parentParams: {},\n+ // This is the <Activity> \"name\" that shows up in the Suspense DevTools.\n+ // It represen... | 2025-10-21T09:58:38 |
facebook/react | 3af905d95448d582cbd62fe6d41bd976ce9787ea | aa8469fefbde17ab9d2e2cc06deb0a8f153bd005 | [compiler] Fix issue with macro arguments being outlined
Summary:
Fixes issue documented by #30435. We change the pipeline order so that outlining comes after tracking macro operands, and any function that is referenced in a macro will now not be outlined.
ghstack-source-id: f731ad65c8b84db3fc5f3a2ff3a6986112765963
P... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -56,7 +56,7 @@ import {\n flattenReactiveLoops,\n flattenScopesWithHooksOrUse,\n inferReactiveScopeVariables,\n- memoizeFbtOperandsInSameScope,\n+ memoizeFbtAndMacroOperandsInSameScope,\n mergeOverla... | 2024-08-02T21:55:54 |
electron/electron | e894839709406101c54a067b6e1848ff294f17a5 | f89bd745d5ac168665a09b0fc6f3a565b3fb40be | fix: -Wunsafe-buffer-usage warnings in GetNextZoomLevel() (#43803) | [
{
"path": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -6,6 +6,7 @@\n #include \"shell/browser/ui/inspectable_web_contents.h\"\n \n #include <algorithm>\n+#include <array>\n #include <memory>\n #include <string_view>\n #include <utility>\n@@ -69,10 +70,6 @@ namespace electron {\n \n namespac... | 2024-09-21T22:21:02 |
golang/go | dd1d597c3ac049de7865a9cb98627fde0baacc69 | 45d6bc76af641853a0bea31c77912bf9fd52ed79 | Revert "cmd/internal/obj/loong64: use the MOVVP instruction to optimize prologue"
This reverts commit eb7c67fdc9e17959647a15db9e7781b9d447061a.
Reason for revert: Causes x/tools/gopls/internal/filecache/TestConcurrency failures, See issue 75571.
Fixes #75571
Fixes #75572
Change-Id: Ife328dce917c63c872da35f4a9e9f7ef... | [
{
"path": "src/cmd/internal/obj/loong64/obj.go",
"patch": "@@ -324,7 +324,7 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tq = c.ctxt.StartUnsafePoint(q, c.newprog)\n \n \t\t\t\tq = obj.Appendp(q, newprog)\n-\t\t\t\tq.As = AMOVVP\n+\t\t\t\tq.As = mov\n \t\t\t\tq.Pos ... | 2025-09-23T03:24:56 |
nodejs/node | 10f081e5493b05bd1453a62e50f940bc2e680217 | f3ba30524510fb2734b050813b89e59275c888dd | test: fix the decimal fractions explaination
PR-URL: https://github.com/nodejs/node/pull/57732
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "test/parallel/test-util-getcallsites.js",
"patch": "@@ -29,7 +29,7 @@ const assert = require('node:assert');\n );\n }\n \n-// Guarantee dot-left numbers are ignored\n+// Guarantee dot-right numbers are ignored\n {\n const callSites = getCallSites(3.6);\n assert.strictEqual(callSites.length,... | 2025-04-02T14:53:27 |
rust-lang/rust | 1f94e979fb9b09f4df5483ce549fb96574be1e6e | f8704be04fe1150527fc2cf21dd44327f0fe87fb | Fix some comments about dataflow analysis.
Mostly in the examples in `initialized.rs`. In particular, the
`EverInitializedPlaces` example currently doesn't cover how it's
initialization sites that are tracked, rather than local variables
(that's the `b_0`/`b_1` distinction in the example.) | [
{
"path": "compiler/rustc_middle/src/mir/basic_blocks.rs",
"patch": "@@ -65,7 +65,7 @@ impl<'tcx> BasicBlocks<'tcx> {\n \n /// Returns basic blocks in a reverse postorder.\n ///\n- /// See [`traversal::reverse_postorder`]'s docs to learn what is preorder traversal.\n+ /// See [`traversal::reve... | 2025-10-22T03:28:05 |
facebook/react | 1db4d6c41531579fa3a1a8dbcd69d0891d08201f | 8269d55d2325fc382b5e1cf120119130d11f2e94 | [compiler] Validate against setState in useMemo (resubmit of #30552)
ghstack failed to land #30552 properly, resubmitting
Developers sometimes use `useMemo()` as a way to conditionally execute code, including conditionally calling setState. However, the compiler may remove existing useMemo calls if they are not neces... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -127,11 +127,11 @@ export function* run(\n code,\n useMemoCacheIdentifier,\n );\n- yield {\n+ yield log({\n kind: 'debug',\n name: 'EnvironmentConfig',\n value: prettyFormat(env.config)... | 2024-08-02T16:53:27 |
electron/electron | f89bd745d5ac168665a09b0fc6f3a565b3fb40be | bcb7362ab9807cc5e1a6efc262ff9fdb746498d5 | fix: `createWindow` shouldn't load URL for `webContents` (#43775)
* fix: createWindow shouldn't load URL for webContents
* chore: add non about blank test | [
{
"path": "lib/browser/guest-window-manager.ts",
"patch": "@@ -71,14 +71,6 @@ export function openGuestWindow ({ embedder, guest, referrer, disposition, postD\n throw new Error('Invalid webContents. Created window should be connected to webContents passed with options object.');\n }\n \n- ... | 2024-09-20T07:56:03 |
golang/go | e8a4f508d1140eef70463c6c085c352418e03d9c | 9b7a3280895277471f53a4168439094e22a32390 | lib/fips140: re-seal v1.0.0
Exceptionally, we decided to make a compliance-related change following
CMVP's updated Implementation Guidance on September 2nd.
The Security Policy will be updated to reflect the new zip hash.
mkzip.go has been modified to accept versions of the form vX.Y.Z-hash,
where the -hash suffix i... | [
{
"path": "lib/fips140/fips140.sum",
"patch": "@@ -9,4 +9,4 @@\n #\n #\tgo test cmd/go/internal/fips140 -update\n #\n-v1.0.0.zip b50508feaeff05d22516b21e1fd210bbf5d6a1e422eaf2cfa23fe379342713b8\n+v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b",
"additions": 1,
"... | 2025-09-07T14:52:08 |
rust-lang/rust | e26974ca33aa322bbc60db5d1010899e40f6d624 | b55e20ad905a336395ca80863488d0827712d067 | bootstrap: minimal fix for ./x install src with build.docs = false
When running the `install src` command I'm seeing failures as the
`builder.doc_out(host)` directory does not exist. This is because
`match_paths_to_steps_and_run()` doesn't actually build any
documentation as the `paths.is_empty()` causes an early retu... | [
{
"path": "src/bootstrap/src/core/build_steps/dist.rs",
"patch": "@@ -87,6 +87,12 @@ impl Step for Docs {\n // from a shared directory.\n builder.run_default_doc_steps();\n \n+ // In case no default doc steps are run for host, it is possible that `<host>/doc` directory\n+ // is... | 2026-01-08T22:35:43 |
facebook/react | 8269d55d2325fc382b5e1cf120119130d11f2e94 | 5fb67fa25c4ea8be046c6d9af41047f3cc379279 | chore[react-devtools]: add global for native and use it to fork backend implementation (#30533)
Adding `__IS_NATIVE__` global, which will be used for forking backend
implementation. Will only be set to `true` for `react-devtools-core`
package, which is used by `react-native`.
Ideally, we should name it `react-dev... | [
{
"path": ".eslintrc.js",
"patch": "@@ -496,6 +496,7 @@ module.exports = {\n __IS_CHROME__: 'readonly',\n __IS_FIREFOX__: 'readonly',\n __IS_EDGE__: 'readonly',\n+ __IS_NATIVE__: 'readonly',\n __IS_INTERNAL_VERSION__: 'readonly',\n },\n },",
"additions": ... | 2024-08-02T09:51:15 |
nodejs/node | b92f77a094effd36c7ef2629f59aff6df50b6d9c | b39699100e7847e46b4af86b3a61868290cb6413 | doc: fix typo in writing-docs
PR-URL: https://github.com/nodejs/node/pull/57776
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "doc/contributing/writing-docs.md",
"patch": "@@ -1,6 +1,6 @@\n # How to write documentation for the Node.js project\n \n-This document refers to the Node.js API documentation that gets deployed to [nodejs.org/en/doc][]\n+This document refers to the Node.js API documentation that gets deployed to ... | 2025-04-08T19:30:54 |
electron/electron | 53e89b565d9aac1d8229c7f948263e98a24d3e22 | 6aa6bada795c7cf6a9968b44e7cc76c1becaacae | fix: -Wunsafe-buffer-usage warnings in Clipboard::WriteBuffer() (#43795)
* fix: -Wunsafe-buffer-usage warnings in Clipboard::WriteBuffer()
* chore: add a DCHECK to confirm the BigBuffer is full | [
{
"path": "shell/common/api/electron_api_clipboard.cc",
"patch": "@@ -111,12 +111,16 @@ void Clipboard::WriteBuffer(const std::string& format,\n return;\n }\n \n+ CHECK(buffer->IsArrayBufferView());\n+ v8::Local<v8::ArrayBufferView> buffer_view = buffer.As<v8::ArrayBufferView>();\n+ const size_t n_... | 2024-09-20T04:10:35 |
facebook/react | 4ea12a11d1848c1398f9a8babcfbcd51e150f1d9 | 88ee14ffa57beb0689f26f0c52c357e3ac446af8 | [DevTools] Make Element Inspection Feel Snappy (#30555)
There's two problems. The biggest one is that it turns out that Chrome
is throttling looping timers that we're using both while polling and for
batching bridge traffic. This means that bridge traffic a lot of the
time just slows down to 1 second at a time. No ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -117,12 +117,11 @@ describe('InspectedElement', () => {\n <SettingsContextController>\n <TreeContextController\n defaultSelectedElementID={defaultSelectedElementID}\n- def... | 2024-08-01T15:04:56 |
golang/go | 9b7a3280895277471f53a4168439094e22a32390 | 7f9ab7203fd874f23f3881470ce5686391530c1a | crypto/internal/fips140: remove key import PCTs, make keygen PCTs fatal
CMVP clarified with the September 2nd changes to IG 10.3.A that PCTs
don't need to run on imported keys.
However, PCT failure must enter the error state (which for us is fatal).
Thankfully, now that PCTs only run on key generation, we can be ass... | [
{
"path": "src/crypto/internal/fips140/cast.go",
"patch": "@@ -56,27 +56,34 @@ func CAST(name string, f func() error) {\n }\n \n // PCT runs the named Pairwise Consistency Test (if operated in FIPS mode) and\n-// returns any errors. If an error is returned, the key must not be used.\n+// aborts the program ... | 2025-09-05T02:19:18 |
nodejs/node | b39699100e7847e46b4af86b3a61868290cb6413 | 1e95107b163ae3ea4c75bab7be6e67a1142ad1dc | doc: clarify examples section in REPL doc
The current examples presented at the bottom
of the REPL doc have two issues:
- they look like they're part of the section
above (on how to run multiple REPL instances
in the same process) but they are not
- the alert informing readers not to use the
second example ... | [
{
"path": "doc/api/repl.md",
"patch": "@@ -909,30 +909,204 @@ to connect to both Unix and TCP sockets.\n By starting a REPL from a Unix socket-based server instead of stdin, it is\n possible to connect to a long-running Node.js process without restarting it.\n \n-For an example of running a \"full-featured\... | 2025-04-08T18:25:41 |
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.