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 |
|---|---|---|---|---|---|
facebook/react | a4d122f2d192fe0b6480e669cca43c8f953aaf85 | e30c6693e4c7f2aec25b07f5df69a87163dbee81 | Add <ViewTransition> Component (#31975)
This will provide the opt-in for using [View
Transitions](https://developer.mozilla.org/en-US/docs/Web/API/View_Transition_API)
in React.
View Transitions only trigger for async updates like `startTransition`,
`useDeferredValue`, Actions or `<Suspense>` revealing from fallback ... | [
{
"path": "fixtures/view-transition/README.md",
"patch": "@@ -0,0 +1,30 @@\n+# View Transition\n+\n+A test case for View Transitions.\n+\n+## Setup\n+\n+To reference a local build of React, first run `npm run build` at the root\n+of the React project. Then:\n+\n+```\n+cd fixtures/view-transition\n+yarn\n+ya... | 2025-01-08T17:11:18 |
golang/go | 8378276d66060cf5486cda3c826afc4be9f4a047 | e5688d0bddb0196b7f057bcae8baf8521c571119 | strconv: optimize int-to-decimal and use consistently
Integer-to-decimal conversion is hand-written in multiple
places in this package, with different incomplete optimizations
in different copies. This CL establishes a single implementation,
formatBase10, accurately optimized for a variety of systems,
and then uses i... | [
{
"path": "src/strconv/ftoa.go",
"patch": "@@ -483,7 +483,7 @@ func fmtB(dst []byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {\n \t}\n \n \t// mantissa\n-\tdst, _ = formatBits(dst, mant, 10, false, true)\n+\tdst = AppendUint(dst, mant, 10)\n \n \t// p\n \tdst = append(dst, 'p')\n@@ -493,7 +49... | 2025-10-17T04:31:09 |
electron/electron | 578c1e5dae1cb341c97d329902abc089b4f7c612 | 208dc568d8541d3cdd0fbebc17c348447ba0ae0d | fix: build failure when PDF viewer is disabled (#44960)
* fix: unused variable warning when the PDF viewer is disabled
* fix: unused function error when PDF viewer is disabled
error: unused function ParseManifest [-Werror,-Wunused-function] | [
{
"path": "shell/browser/extensions/electron_extension_system.cc",
"patch": "@@ -87,6 +87,7 @@ void ElectronExtensionSystem::InitForRegularProfile(bool extensions_enabled) {\n management_policy_ = std::make_unique<ManagementPolicy>();\n }\n \n+#if BUILDFLAG(ENABLE_PDF_VIEWER)\n namespace {\n \n std::uniqu... | 2024-12-06T08:54:04 |
nodejs/node | 0bbe5d34e74e8b4cc161a4777b161bfb917cf1e5 | d2a13695bf1661f942c51f257a9c8d778b77ff2d | test: show more information in test-http2-debug upon failure
Use spawnSyncAndAssert() so that the stderr is logged when it
doesn't match expectations.
PR-URL: https://github.com/nodejs/node/pull/58391
Refs: https://github.com/nodejs/node/issues/58353
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca... | [
{
"path": "test/parallel/test-http2-debug.js",
"patch": "@@ -1,27 +1,31 @@\n 'use strict';\n+\n const common = require('../common');\n if (!common.hasCrypto)\n common.skip('missing crypto');\n const assert = require('assert');\n-const child_process = require('child_process');\n+const { spawnSyncAndAssert ... | 2025-05-20T19:00:50 |
rust-lang/rust | ca9bd0d157819aeb46dc93bd4c6e9a9446841275 | 2d76d9bc76f27b03b4899e72ce561c7ac2c5cf6b | rustdoc-json: Improve docs for `ItemEnum::item_kind`
Fixes https://github.com/rust-lang/rust/pull/153279#discussion_r2875219461 | [
{
"path": "src/rustdoc-json-types/lib.rs",
"patch": "@@ -683,7 +683,13 @@ pub enum ItemEnum {\n }\n \n impl ItemEnum {\n- /// Returns the [`ItemKind`] of this item.\n+ /// Get just the kind of this item, but with no further data.\n+ ///\n+ /// ```rust\n+ /// # use rustdoc_json_types::{ItemKin... | 2026-03-09T20:47:08 |
vercel/next.js | bf5435972333cd7e5868a7a34f8c203f3f349445 | 29e6b0e38ca255a578103aa2d748b94d7da31d83 | Add reasons for some server-external-packages (#86254)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contribut... | [
{
"path": "packages/next/src/lib/server-external-packages.jsonc",
"patch": "@@ -13,10 +13,13 @@\n \"@node-rs/bcrypt\",\n \"@prisma/client\",\n \"@react-pdf/renderer\",\n+ // Native Node.js addons\n \"@sentry/profiling-node\",\n \"@sparticuz/chromium\",\n \"@sparticuz/chromium-min\",\n+ // Nati... | 2025-11-21T14:03:48 |
nodejs/node | 38757c906d90da68ffbc6277e2d719b04c71a902 | 7c74205aa7a5c5aa9ec1b4006fdd9b1c0345e831 | test_runner: add level parameter to reporter.diagnostic
Added a parameter to allow severity-based formatting for
diagnostic messages. Defaults to 'info'.
This update enables better control over message presentation
(e.g., coloring) based on severity levels such as 'info', 'warn',
and 'error'.
Refs: https://github.com... | [
{
"path": "doc/api/test.md",
"patch": "@@ -3016,6 +3016,11 @@ defined. The corresponding declaration ordered event is `'test:start'`.\n `undefined` if the test was run through the REPL.\n * `message` {string} The diagnostic message.\n * `nesting` {number} The nesting level of the test.\n+ * `level`... | 2025-05-19T08:28:05 |
electron/electron | 208dc568d8541d3cdd0fbebc17c348447ba0ae0d | 687a59b43b10fe384f25454da350ede01bc83370 | fix: `context-menu` event with `BaseWindows` (#44940)
fix: context-menu event with BaseWindows | [
{
"path": "docs/api/menu.md",
"patch": "@@ -72,7 +72,7 @@ The `menu` object has the following instance methods:\n #### `menu.popup([options])`\n \n * `options` Object (optional)\n- * `window` [BrowserWindow](browser-window.md) (optional) - Default is the focused window.\n+ * `window` [BaseWindow](base-win... | 2024-12-04T21:35:28 |
vercel/next.js | 33e1764252b239f899f222ad210efa1444795f4e | 10e0828fb9a8d6dc586105b28691e94f7390c923 | Bump swc to 48 (#86240)
Upgrade swc from 45 to 48
Based on #85540
- In the AST, strings now contain a `Wtf8Atom` (= not utf8), while `Ident`s keep using the utf8 `Atom`.
- swc's comment printing logic also changed slighted, moving some comments around
- ~~Some comments are getting lost along the way and/or att... | [
{
"path": "Cargo.lock",
"patch": "@@ -319,9 +319,9 @@ dependencies = [\n \n [[package]]\n name = \"ast_node\"\n-version = \"4.0.0\"\n+version = \"5.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c4902c7f39335a2390500ee791d6cb1778e742c7b97952497ec81449a5bfa3a7\"\n+c... | 2025-11-21T11:47:13 |
golang/go | f92e01c117bf7d115a97229d4b4f81c91faf0f7b | 50586182abd82ec724b9beb6b806610d08846d8e | runtime/cgo: fix cgoCheckArg description
The description is misleading: cgoCheckArg is called by both
cgoCheckPointer and cgoCheckResult.
Mention cgoCheckResult in the cgoCheckArg description. Remove extra
spaces between words.
For #75856
Change-Id: I6780cda76b5cb7b4f9af3fbaa37a6c5099cc8d7d
GitHub-Last-Rev: 531928b... | [
{
"path": "src/runtime/cgocall.go",
"patch": "@@ -33,7 +33,7 @@\n //\n // To make it possible for gcc-compiled C code to call a Go function p.GoF,\n // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't\n-// know about packages). The gcc-compiled C function f calls GoF.\n+// know ab... | 2025-10-22T08:36:51 |
nodejs/node | ac8706196b565014b1f100a63feb973e4ec6ddde | db2aae8022d50bd6546274031ff95b12fc347358 | build: fix pointer compression builds
- Remove usage of deprecated V8::InitializeSandbox().
- External code space and pointer compression shared cage must
be enabled when pointer compression builds are enabled.
- We cannot enable the sandbox because that requires allocating
the array buffer backing stores in the s... | [
{
"path": "common.gypi",
"patch": "@@ -80,6 +80,7 @@\n # Variables controlling external defines exposed in public headers.\n 'v8_enable_map_packing%': 0,\n 'v8_enable_pointer_compression_shared_cage%': 0,\n+ 'v8_enable_external_code_space%': 0,\n 'v8_enable_sandbox%': 0,\n 'v8_enable_... | 2025-05-04T18:58:06 |
electron/electron | 158a87d4941dc050c75f79b142e505c0d1578e6a | 229c2a8f50605289d2eb616ff113ac65144037b9 | fix: modernize-use-equals-default warnings (#44935)
fix: use '= default' to define a trivial destructor [modernize-use-equals-default] | [
{
"path": "shell/browser/auto_updater.h",
"patch": "@@ -43,7 +43,7 @@ class Delegate {\n const std::string& update_url) {}\n \n protected:\n- virtual ~Delegate() {}\n+ virtual ~Delegate() = default;\n };\n \n class AutoUpdater {",
"additions": 1,
"deletions": 1,
... | 2024-12-03T22:25:48 |
golang/go | 7c9fa4d5e9b65be396d7794f645b1f409a9bc39f | 557b4d6e0f9de96ce9718f89773f14e6e1b14760 | cmd/go: check if build output should overwrite files with renames
CopyFile has a check to ensure that only object files are overwritten.
Extend this to moveOrCopyFile, so the check also happens when the source
and destination file are on the same filesystem (when renames are a
valid way of moving files).
Fixes #75970... | [
{
"path": "src/cmd/go/internal/work/shell.go",
"patch": "@@ -123,6 +123,11 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn nil\n \t}\n \n+\terr := checkDstOverwrite(dst, force)\n+\tif err != nil {\n+\t\treturn err\n+\t}\n+\n \t// If we can update the mode and... | 2025-10-19T19:00:55 |
vercel/next.js | e9a3ba935f9fe99fbfbd634627de28736892c976 | e393401b77dc3df8fb4a2f5582df76c05f0094a1 | Turbopack: fix import chain by determining depth locally per route (#86350)
### What?
fix the import chain showing only modules relevant to the current route
fix module graph being merged by path. It's keyed by identifier now.
also add more info to import chain, e. g. layer info. and more details in tooltip. | [
{
"path": "apps/bundle-analyzer/app/page.tsx",
"patch": "@@ -15,6 +15,7 @@ import { Input } from '@/components/ui/input'\n import { Skeleton, TreemapSkeleton } from '@/components/ui/skeleton'\n import { ToggleGroup, ToggleGroupItem } from '@/components/ui/toggle-group'\n import { AnalyzeData, ModulesData } ... | 2025-11-21T10:39:18 |
nodejs/node | 39ab68b2c1790677281921fe2aa461670cdb79ee | 73e7bd1c0e3e22874d1217ca718bb32ec4c05fd4 | readline: add stricter validation for functions called after closed
PR-URL: https://github.com/nodejs/node/pull/58283
Fixes: https://github.com/nodejs/node/issues/57678
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/main/repl.js",
"patch": "@@ -45,7 +45,6 @@ if (process.env.NODE_REPL_EXTERNAL_MODULE) {\n }\n repl.on('exit', () => {\n if (repl._flushing) {\n- repl.pause();\n return repl.once('flushHistory', () => {\n process.exit();\n }... | 2025-05-18T19:46:38 |
facebook/react | 6efbc0897f08d688c614baa205f1e1625b3a7c83 | 7b402084af3f43284eed3c7c3155762a871fc817 | [playground] Use default compiler config (#32009)
The playground's compilation mode is currently set to 'all' along with
reporting all errors.
This tends to be misleading since people usually expect a 1:1 match
between how the playground works with what the compiler does in their
codebase, eg https://github.com/react... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -78,8 +78,6 @@ function invokeCompiler(\n logEvent: () => {},\n },\n environment,\n- compilationMode: 'all',\n- panicThreshold: 'all_errors',\n });\n const ast = parseInput(source, language);\n let ... | 2025-01-07T16:53:27 |
electron/electron | 5324c0e6c3a0de4ce0a3efeabc978217df074d93 | 2222920429b37248ecc9fa3ebb0d1171b7f39196 | docs: fix grammar in `app.relaunch` docs (#44920) | [
{
"path": "docs/api/app.md",
"patch": "@@ -514,20 +514,20 @@ and `will-quit` events will not be emitted.\n * `args` string[] (optional)\n * `execPath` string (optional)\n \n-Relaunches the app when current instance exits.\n+Relaunches the app when the current instance exits.\n \n By default, the new ins... | 2024-12-03T17:56:09 |
golang/go | 5a42af7f6c9ba057171d8a5af6f4b721b8eff10a | 4bdb55b5b86fc96addd43a845dabf6b76d100202 | go/types, types2: in resolveUnderlying, only compute path when needed
When following a RHS chain, the (TypeName) Object path is only needed
when there is a cycle (i.e., an error), in which case we can be slow.
Rather than always compute the path, only compute it in the error case.
In the same vain, allocate the seen m... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -593,9 +593,7 @@ func (n *Named) resolveUnderlying() {\n \t\treturn\n \t}\n \n-\tseen := make(map[*Named]int)\n-\tvar path []Object\n-\n+\tvar seen map[*Named]int // allocated lazily\n \tvar u Type\n \tfor rhs := Type(n); u == nil; {\n \t\ts... | 2025-10-20T17:25:23 |
vercel/next.js | e393401b77dc3df8fb4a2f5582df76c05f0094a1 | e31608f15ff10f4da5a4635cfd8a61ec111c7a80 | fix issue - #86365 (#86366)
Fix issue [#86365](https://github.com/vercel/next.js/issues/86365)
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "packages/next/README.md",
"patch": "@@ -39,7 +39,7 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n \n ### Good First Issues:\n \n-We have a list of **[good first issues](https://github.com/vercel/next.js/labels/%22good%20first%20issue%22)** that contain bugs ... | 2025-11-21T10:15:13 |
nodejs/node | 6d61175db038c5802d2f7c243f3f16c0a748178a | 974773572e3b2ab1f17c6c79f3421c5cff812b02 | deps: V8: backport 1d3362c55396
Original commit message:
[float16array] Turn flag on by default
Float16Array has shipped in blink since M135. It is unlikely it'll
unship by now, so turn the flag on by default.
Bug: 42203953
Change-Id: Ibd9de407b8810dd7bcdb46194fe04fc290ff8fb8
Reviewed-on: ht... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n... | 2025-05-06T21:40:37 |
facebook/react | 7b402084af3f43284eed3c7c3155762a871fc817 | 3314162535c45360ee178d7bf1dc03c291f45930 | Fix notify target, add lines (#32006) | [
{
"path": ".github/workflows/discord_notify.yml",
"patch": "@@ -1,22 +1,21 @@\n name: Discord Notify\n \n on:\n- pull_request:\n+ pull_request_target:\n types: [ labeled ]\n- \n+\n jobs:\n notify:\n- if: ${{ github.event.label.name == 'React Core Team' }}\n- runs-on: ubuntu-latest\n- ... | 2025-01-07T14:34:18 |
electron/electron | 06612cf5d49ee8571f08d375d2e77c926404afb6 | 49b294628c4b3b8fa4b49349d5972a3f823c3839 | chore: remove unused isolate argument from Cookies constructor (#44907)
* chore: remove unused isolate argument from Cookies constructor
unused since the ginify cookies refactor in Mar 2020, commit 22202255
* fix: constructor only takes one arg now, so mark it explicit | [
{
"path": "shell/browser/api/electron_api_cookies.cc",
"patch": "@@ -292,8 +292,8 @@ std::string StringToCookieSameSite(const std::string* str_ptr,\n \n gin::WrapperInfo Cookies::kWrapperInfo = {gin::kEmbedderNativeGin};\n \n-Cookies::Cookies(v8::Isolate* isolate, ElectronBrowserContext* browser_context)\n-... | 2024-12-02T16:34:21 |
golang/go | 4e695dd6346e5c7f7e94f54ed177ef96249d2294 | 06e57e60a7ff6cbc9c608278cbac4db514c7161a | go/ast: add ParseDirective for parsing directive comments
This adds an ast.Directive API for parsing directive comments such as
"//go:build" and "//go:embed".
This will help tools standardize the syntax of these directive
comments. Even within the standard Go tools there's little agreement
on the finer details of the... | [
{
"path": "api/next/68021.txt",
"patch": "@@ -0,0 +1,13 @@\n+pkg go/ast, func ParseDirective(token.Pos, string) (Directive, bool) #68021\n+pkg go/ast, method (*Directive) End() token.Pos #68021\n+pkg go/ast, method (*Directive) ParseArgs() ([]DirectiveArg, error) #68021\n+pkg go/ast, method (*Directive) Pos... | 2025-08-29T01:40:57 |
nodejs/node | 974773572e3b2ab1f17c6c79f3421c5cff812b02 | 70bfc398e971d05bd3bf2ef313949f1ddb6d0b48 | deps: V8: cherry-pick 4f38995c8295
Original commit message:
[explicit-resource-management] Turn flag on by default
This feature has shipped since M134 on the blink side, and is highly
unlikely to be unshipped now, so flip the flag on.
Bug: 42203506
Change-Id: I9554cea721983464b150c0de70b58a4b50f... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.10',\n+ 'v8_embedder_string': '-node.11',\n \n ##### V8 defaults for Node.js #####\n... | 2025-05-05T17:35:01 |
facebook/react | 83be48b9dee25737063ca64880f82ef9fea11737 | defffdbba43f89b95d9f67a4fb0fa146c1211734 | [tests] fix hidden use() warnings (#31984)
`spyOnDev` is such a footgun. | [
{
"path": "packages/react-reconciler/src/__tests__/ReactUse-test.js",
"patch": "@@ -27,6 +27,7 @@ let waitForPaint;\n let assertLog;\n let waitForAll;\n let waitForMicrotasks;\n+let assertConsoleErrorDev;\n \n describe('ReactUse', () => {\n beforeEach(() => {\n@@ -51,6 +52,7 @@ describe('ReactUse', () => ... | 2025-01-06T19:12:35 |
vercel/next.js | 897d021d96a3ffea25479b1c18335f65abb7dc91 | afec7a52ddedc107f7f8c16ea1ed836dfc633a6f | docs: csr-bailout debugging (#86359)
I think maybe these others need a hint too, let's get started with,
`errors/missing-suspense-with-csr-bailout` and `errors/prerender-error`
- errors/blocking-route.mdx
- errors/deopted-into-client-rendering.mdx
- errors/dynamic-server-error.mdx
- errors/next-prerender-crypto.mdx
-... | [
{
"path": "errors/missing-suspense-with-csr-bailout.mdx",
"patch": "@@ -173,8 +173,19 @@ module.exports = {\n \n This configuration option will be removed in a future major version.\n \n+## Debugging\n+\n+If you're having trouble locating where `useSearchParams()` is being used without a Suspense boundary, ... | 2025-11-21T10:11:12 |
electron/electron | 493e3c4537bfa70405a2da998503e82594eada14 | b2ce5296af4b4039877825b71e3b75db21ab66f8 | fix: don't use deprecated ui::MouseEvent constructor (#44868)
* refactor: do not use deprecated gfx::Point constructor for MouseEvent
Deprecated in https://chromium-review.googlesource.com/c/1444251
* refactor: use WebInputEvent::GetTypeAsUiEventType() instead of rolling our own
Added in https://chromium-revi... | [
{
"path": "shell/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -56,31 +56,6 @@ namespace {\n const float kDefaultScaleFactor = 1.0;\n \n ui::MouseEvent UiMouseEventFromWebMouseEvent(blink::WebMouseEvent event) {\n- ui::EventType type = ui::EventType::kUnknown;\n- switch (event.GetType()) {\n- ... | 2024-12-02T16:13:38 |
golang/go | 06e57e60a7ff6cbc9c608278cbac4db514c7161a | 6c3d0d259f2d83a338a3a7da268e2dd5834aa35f | go/types, types2: only report version errors if new(expr) is ok otherwise
If new(expr) is used before Go 1.26, don't report version errors if there
are other problems with the expression.
While at it, implement multiple missing type checks for new(expr) and
add corresponding test cases that were missed in CL 704935 (... | [
{
"path": "src/cmd/compile/internal/types2/builtins.go",
"patch": "@@ -639,31 +639,31 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// new(T) or new(expr)\n \t\t// (no argument evaluated yet)\n \t\targ := argList[0]\n-\t\tcheck.exprOrType(x, arg, true)\n-\t\tvar T... | 2025-10-20T22:02:23 |
nodejs/node | 70bfc398e971d05bd3bf2ef313949f1ddb6d0b48 | 6bfc525cf05aa3cdc7d99065d1765a673eec7cc5 | deps: V8: cherry-pick 044b9b6f589d
Original commit message:
[explicit-resource-management] disallow using in switch cases
This CL disallows `using` and `await using` in switch cases.
This was a normative change that got consensus in TC39 meetings:
https://github.com/rbuckton/ecma262/pull/14
Bug:... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2025-05-01T23:57:26 |
facebook/react | 9627d71c5050c7665a44e499fc643acce8a8a5e4 | 301a18a6afeaea9c6113d7e459025ba69f436b24 | fix: `react-compiler-runtime` should be cjs (#31993) | [
{
"path": "compiler/packages/react-compiler-runtime/scripts/build.js",
"patch": "@@ -29,7 +29,7 @@ const config = {\n outfile: path.join(__dirname, '../dist/index.js'),\n bundle: true,\n external: ['react'],\n- format: argv.p === 'browser' ? 'esm' : 'cjs',\n+ format: 'cjs',\n platform: argv.p,\n ... | 2025-01-06T14:06:09 |
vercel/next.js | afec7a52ddedc107f7f8c16ea1ed836dfc633a6f | 5b97f1f7b51dddfc1df42e0bd03730f90ebc9337 | Turbopack: remove Asset supertrait from Module trait. Modules don't have content (#86339)
Turbopack: remove Asset supertrait from Module trait. Modules don't have content
remove unneeded Asset implementation
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoot... | [
{
"path": "crates/next-core/src/next_client_reference/ecmascript_client_reference/ecmascript_client_reference_module.rs",
"patch": "@@ -4,9 +4,9 @@ use anyhow::{Context, Result, bail};\n use indoc::writedoc;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{IntoTraitRef, ResolvedVc, ValueToString, Vc};... | 2025-11-21T09:24:14 |
electron/electron | b2ce5296af4b4039877825b71e3b75db21ab66f8 | 4e40b49d1a1d55c97ae7853247162347b476e980 | fix: remove unused id argument from TranslateToStock() (#44900)
unused since fb537d91fce3f97ac3b902c36fcc4626eef0c959 | [
{
"path": "shell/browser/ui/message_box_gtk.cc",
"patch": "@@ -101,11 +101,10 @@ class GtkMessageBox : private NativeWindowObserver {\n // Add buttons.\n GtkDialog* dialog = GTK_DIALOG(dialog_);\n if (settings.buttons.size() == 0) {\n- gtk_dialog_add_button(dialog, TranslateToStock(0, \"OK\... | 2024-12-01T22:34:48 |
rust-lang/rust | 44d6cd2344cd636f4ea371d56ae3d27aaa110ad6 | 64b72a1fa5449d928d5f553b01a596b78ee255d2 | Fix environ on FreeBSD with cdylib targets that use -Wl,--no-undefined .
Instead of relying on the linker to find the 'environ' symbol, use
dlsym.
Fixes #153451
Sponsored by: ConnectWise | [
{
"path": "library/std/src/sys/env/unix.rs",
"patch": "@@ -38,8 +38,25 @@ pub unsafe fn environ() -> *mut *const *const c_char {\n unsafe { libc::_NSGetEnviron() as *mut *const *const c_char }\n }\n \n+// On FreeBSD, environ comes from CRT rather than libc\n+#[cfg(target_os = \"freebsd\")]\n+pub unsafe ... | 2026-03-05T19:46:23 |
golang/go | 6c3d0d259f2d83a338a3a7da268e2dd5834aa35f | 39fd61ddb0b5987749979bc7e453cf2a575c9392 | path/filepath: reword documentation for Rel
The existing func Rel's API documentation was presented in a rather
dense way without a lot of organization that oriented around topical
flow, so the documentation has been cleaned up to present the
function's behavior more clearly and concisely.
Fixes #75893
Change-Id: I6... | [
{
"path": "src/path/filepath/path.go",
"patch": "@@ -173,19 +173,20 @@ func unixAbs(path string) (string, error) {\n \treturn Join(wd, path), nil\n }\n \n-// Rel returns a relative path that is lexically equivalent to targpath when\n-// joined to basepath with an intervening separator. That is,\n-// [Join](... | 2025-10-16T17:14:45 |
nodejs/node | 6bfc525cf05aa3cdc7d99065d1765a673eec7cc5 | 754d28e34fa218bc6e5266729e2d33e2ecb59bb1 | deps: V8: cherry-pick d2ad518a0b57
Original commit message:
[serializer] serialize ExternalPointers in InterceptorInfo properly
Previously the ObjectSerializer didn't serialize the ExternalPointers
in the InterceptorInfo properly, but this case can be shadowed by
the fact that they get promoted to RO... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "... | 2025-05-14T16:19:32 |
facebook/react | bf883bebbc4973dea0e4801a5a62f82043ff57ee | f42f8c0635775c3cb8beb5252aa777ff7d468ae5 | [fizz] fix empty string href double warning (#31783)
I think this is the suggested change from
https://github.com/facebook/react/pull/31765#discussion_r1884541447
But no tests fail and I'm not sure how to test it? Seems sus.
Also seems like the `removeAttribute` here should be changed?
https://github.com/facebook... | [
{
"path": "packages/react-dom-bindings/src/client/ReactDOMComponent.js",
"patch": "@@ -2510,26 +2510,17 @@ function diffHydratedGenericElement(\n );\n }\n }\n- hydrateSanitizedAttribute(\n- domElement,\n- propKey,\n- propKey,\n- ... | 2025-01-03T17:53:28 |
vercel/next.js | 5b97f1f7b51dddfc1df42e0bd03730f90ebc9337 | c42d0e3d27b4b3af4a0054261d5968ba5e6fb72e | Turbopack: add bundle-analyzer to versioning and add dependency (#86355)
### What?
fix lerna config and add dependency to make turborepo happy | [
{
"path": "apps/bundle-analyzer/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"@next/bundle-analyzer-ui\",\n- \"version\": \"16.0.2-canary.16\",\n+ \"version\": \"16.0.2-canary.27\",\n \"private\": true,\n \"scripts\": {\n \"build\": \"cross-env NEXT_TEST_NATIVE_DIR=no next build --n... | 2025-11-21T07:32:18 |
electron/electron | 4e40b49d1a1d55c97ae7853247162347b476e980 | d8149aa37682e2b369c2a866c27121e02e6db015 | docs: fix a syntax issue in document breaking changes (#44841)
fix: syntax issue in docs | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -128,14 +128,14 @@ The nonstandard `path` property of the Web `File` object was added in an early v\n ```js\n // Before (renderer)\n \n-const file = document.querySelector('input[type=file]')\n+const file = document.querySelector('input[type=file]').files[0... | 2024-12-01T05:44:33 |
rust-lang/rust | 342ad0401a16aebfa2e2160a099764168a4fe2f5 | 98e7077b903559d7a4fafb775cd5292cc9427b67 | ast_passes: unsupported arch w/ scalable vectors
Emit an error when attempting to compile a `#[rustc_scalable_vector]`
type for a architecture that fundamentally doesn't support scalable
vectors. Ultimately this is just a diagnostic improvement for an internal
attribute as users should never be doing this. | [
{
"path": "compiler/rustc_ast_passes/src/ast_validation.rs",
"patch": "@@ -1371,11 +1371,16 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n ItemKind::Struct(ident, generics, vdata) => {\n self.with_tilde_const(Some(TildeConstReason::Struct { span: item.span }), |this| {\n ... | 2026-03-09T12:39:47 |
nodejs/node | d234475a332b7d6431c7ed6330cb6b58c67d0990 | a738eb4a7f95f8d05ebbd2d2d97be73e60b40754 | deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools
PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M ... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-12-16T10:11:22 |
golang/go | 39fd61ddb0b5987749979bc7e453cf2a575c9392 | 4a0115c886101717dfc6186a3296b69fc4415487 | go/types, types2: guard Named.underlying with Named.mu
It appears that CL 695977 introduced a data race on Named.underlying.
This fixes that race by specifying a new namedState called underlying,
which, perhaps unsurprisingly, signals that Named.underlying is populated.
Unfortunately, the underlying namedState is ind... | [
{
"path": "src/cmd/compile/internal/types2/named.go",
"patch": "@@ -47,10 +47,8 @@ import (\n // soon.\n //\n // We achieve this by tracking state with an atomic state variable, and\n-// guarding potentially concurrent calculations with a mutex. At any point in\n-// time this state variable determines which... | 2025-10-17T17:16:34 |
vercel/next.js | 1dd580dad8e8977dddb9876fc260558c567618d2 | f7b7f3c14ffeff685a2ad4a6d5df292fab687979 | docs: add example for enabling both AVIF and WebP image formats for better image optimization (#86191)
## Title
docs: add example for enabling both AVIF and WebP image formats
## Description
### What?
This PR enhances the image component documentation by adding examples
showing how to enable both AVIF and WebP image... | [
{
"path": "docs/01-app/03-api-reference/02-components/image.mdx",
"patch": "@@ -752,10 +752,21 @@ module.exports = {\n }\n ```\n \n+You can also enable both AVIF and WebP formats together. AVIF will be preferred for browsers that support it, with WebP as a fallback:\n+\n+```js filename=\"next.config.js\"\n+... | 2025-11-20T22:27:07 |
electron/electron | 4a695d07c616a8f02c17f5ad7f6a5f05ea20c877 | 4aa1855e396fa8d57cc3d3d9367a2b21c0a69fba | fix: misc-use-internal-linkage warnings (#44843)
* refactor: misc-use-internal-linkage warnings in context bridge
move impl functions into anonymous namespace so that they're not visible
to other compilation units:
- ExposeAPIInWorld()
- IsCalledFromMainWorld()
- OverrideGlobalPropertyFromIsolatedWorld()
- O... | [
{
"path": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -70,6 +70,8 @@ Menu::~Menu() {\n }\n }\n \n+namespace {\n+\n bool InvokeBoolMethod(const Menu* menu,\n const char* method,\n int command_id,\n@@ -84,6 +86,8 @@ bool InvokeBoolMethod(const Menu* men... | 2024-11-27T16:40:39 |
facebook/react | 220dece92b9ab5f8867a589f8104b15717d68d2f | c784273bcc78df995b3a45c01c26188f7bb36911 | [compiler] Switch to esbuild (#31963)
This migrates the compiler's bundler to esbuild instead of rollup.
Unlike React, our bundling use cases are far simpler since the majority
of our packages are meant to be run on node. Rollup was adding
considerable build time overhead whereas esbuild remains fast and has
all the f... | [
{
"path": "compiler/apps/playground/package.json",
"patch": "@@ -3,10 +3,11 @@\n \"version\": \"0.1.0\",\n \"private\": true,\n \"scripts\": {\n- \"dev\": \"cd ../.. && concurrently --kill-others -n compiler,runtime,playground \\\"yarn workspace babel-plugin-react-compiler run build --watch\\\" \\\... | 2025-01-02T21:59:56 |
golang/go | 8f74f9daf4d2fe708cf28d0e2b9cce079fa19248 | 8a6c64f4fe726c956ea876cea0fed9494290130f | sync: re-enable race even when panicking
Not doing this can cause user code running after this panic (e.g.:
defers) to produce non-existing races.
Change-Id: Ia6aec88aaeee3b9c17e7b8019d697ffa88dfb492
Reviewed-on: https://go-review.googlesource.com/c/go/+/713460
Commit-Queue: Nicolas Hillegeer <aktau@google.com>
Revie... | [
{
"path": "src/sync/waitgroup.go",
"patch": "@@ -204,13 +204,14 @@ func (wg *WaitGroup) Wait() {\n \t\t\t\t}\n \t\t\t}\n \t\t\truntime_SemacquireWaitGroup(&wg.sema, synctestDurable)\n-\t\t\tif wg.state.Load() != 0 {\n-\t\t\t\tpanic(\"sync: WaitGroup is reused before previous Wait has returned\")\n-\t\t\t}\n... | 2025-10-21T11:43:36 |
nodejs/node | a738eb4a7f95f8d05ebbd2d2d97be73e60b40754 | 1744c7d9911b8af3352a1f55f3d4fd212edc436a | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collin... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
facebook/react | 0de1233fd180969f7ffdfc98151922f2466ceb1f | 1e9eb95db5b3a2064ecc26915a4e640b3a9bdaf5 | [Fiber] Mark error boundaries and commit phases when an error is thrown (#31876)
This tracks commit phase errors and marks the component that errored as
red. These also get the errors attached to the entry.
<img width="1505" alt="Screenshot 2024-12-20 at 2 40 14 PM"
src="https://github.com/user-attachments/assets/cac... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -98,6 +98,7 @@ import {\n Cloned,\n PerformedWork,\n ForceClientRender,\n+ DidCapture,\n } from './ReactFiberFlags';\n import {\n commitStartTime,\n@@ -107,14 +108,17 @@ import {\n resetComponentEffectTimers,\n push... | 2025-01-02T18:28:24 |
electron/electron | f595443a22a01b61750942532cbf38bef12626f3 | 9f1e23c405847c2773231347b7604731741b0034 | refactor: fix modernize-return-braced-init-list warnings (#44838)
* refactor: avoid repeating the return type from the declaration; use a braced initializer list instead [modernize-return-braced-init-list]
* refactor: avoid repeating the return type from the declaration; use a braced initializer list instead [moder... | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -776,7 +776,7 @@ base::OnceClosure App::SelectClientCertificate(\n std::move((*shared_identities)[0]),\n base::BindRepeating(&GotPrivateKey, shared_delegate, std::move(cert)));\n }\n- return base::OnceClosure();\n+ return {}... | 2024-11-27T00:41:46 |
nodejs/node | e1ab0d1c7fb2e951fa5ede8407c7def6f234895c | a436f7b492b1ddaf725ba653fb1e0e10517218b7 | doc: add JonasBa to collaborators
Fixes: https://github.com/nodejs/node/issues/57410
PR-URL: https://github.com/nodejs/node/pull/58355
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.co... | [
{
"path": ".mailmap",
"patch": "@@ -271,6 +271,7 @@ John McGuirk <johnmac81@gmail.com>\n John Musgrave <musgravejw@gmail.com>\n Johnny Ray Austin <johnny@johnnyray.me> <http://johnnyray.me>\n Jon Tippens <jwtippens@gmail.com>\n+Jonas Badalic <jonas.badalic@gmail.com> <jonas@badalic.com>\n Jonas Pfenniger <j... | 2025-05-16T20:19:55 |
golang/go | 8a6c64f4fe726c956ea876cea0fed9494290130f | 4620db72d273097a1c5fd11e44ce688618559579 | syscall: use rawSyscall6 to call ptrace in forkAndExecInChild
On darwin and openbsd, the autogenerated ptrace wrapper is
nosplit because it is called from forkAndExecInChild.
This makes it difficult to modify and improve the underlying
syscall mechanism, as ptrace is almost over the nosplit limit.
We better call ptr... | [
{
"path": "src/syscall/exec_libc2.go",
"patch": "@@ -59,7 +59,6 @@ func forkAndExecInChild(argv0 *byte, argv, envv []*byte, chroot, dir *byte, attr\n \t\tr1 uintptr\n \t\tnextfd int\n \t\ti int\n-\t\terr error\n \t\tpgrp _C_int\n \t\tcred ... | 2025-10-02T13:12:30 |
rust-lang/rust | 225b7e001247ff1f6bbfffa884a078a5a3545f8c | 085c58f2c0c7db692a2eaf2b8970ff474eed9183 | fix ICE in `const_c_variadic` when passing ZSTs | [
{
"path": "compiler/rustc_const_eval/src/interpret/call.rs",
"patch": "@@ -12,7 +12,7 @@ use rustc_hir::find_attr;\n use rustc_middle::ty::layout::{IntegerExt, TyAndLayout};\n use rustc_middle::ty::{self, AdtDef, Instance, Ty, VariantDef};\n use rustc_middle::{bug, mir, span_bug};\n-use rustc_target::callco... | 2026-03-04T10:36:25 |
facebook/react | 1e9eb95db5b3a2064ecc26915a4e640b3a9bdaf5 | fe21c947c82b173ae538aa1d215559ec3dccd103 | [Fiber] Mark cascading updates (#31866)
A common source of performance problems is due to cascading renders from
calling `setState` in `useLayoutEffect` or `useEffect`. This marks the
entry from the update to when we start the render as red and `"Cascade"`
to highlight this.
<img width="964" alt="Screenshot 2024-12-1... | [
{
"path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js",
"patch": "@@ -276,11 +276,15 @@ export function logBlockingStart(\n eventTime: number,\n eventType: null | string,\n eventIsRepeat: boolean,\n+ isSpawnedUpdate: boolean,\n renderStartTime: number,\n lanes: Lanes,\n ): void {... | 2025-01-02T18:04:09 |
electron/electron | 93f49d118956932ef051eeefe6b377239b10d75c | 3c941c7e8fa23fb37c6b8f3d3ba24b6c66ba8d94 | fix: modernize-use-using clang-tidy warnings (#44806) | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -91,15 +91,14 @@ namespace electron::api {\n // FrameTreeNodeId -> WebFrameMain*\n // Using FrameTreeNode allows us to track frame across navigations. This\n // is most similar to how <iframe> works.\n-typedef std::unordered_map<cont... | 2024-11-25T15:50:33 |
golang/go | 4620db72d273097a1c5fd11e44ce688618559579 | b31dc77ceab962c0f4f5e4a9fc5e1a403fbd2d7c | runtime: use timer_settime64 on 32-bit Linux
Linux introduced new syscalls to fix the year 2038 issue.
To still be able to use the old ones, the Kconfig option
COMPAT_32BIT_TIME would be necessary.
Use the new 64-bit syscall for timer_settime by default.
Add a fallback to use the 32-bit syscall when the
64-bit versio... | [
{
"path": "src/runtime/defs_linux_386.go",
"patch": "@@ -237,10 +237,14 @@ type ucontext struct {\n \tuc_sigmask uint32\n }\n \n-type itimerspec struct {\n+type itimerspec32 struct {\n \tit_interval timespec32\n \tit_value timespec32\n }\n+type itimerspec struct {\n+\tit_interval timespec\n+\tit_value ... | 2025-10-18T14:43:53 |
nodejs/node | ff3a028f8bf88da70dc79e1d7b7947a8d5a8548a | 8053a5c1c78a6b8e69b76a345956d19431e111a5 | build: fix defaults for shared llhttp
PR-URL: https://github.com/nodejs/node/pull/58269
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "configure.py",
"patch": "@@ -277,7 +277,7 @@\n shared_optgroup.add_argument('--shared-http-parser-libname',\n action='store',\n dest='shared_http_parser_libname',\n- default='http_parser',\n+ default='llhttp',\n help='alternative lib name to link to [default: %(default)s]')\n \n... | 2025-05-16T12:55:50 |
vercel/next.js | 24033486b5115c94871659b3f22e76ee292df9ca | e07cc5cc51a8e3b18a74b7ee7bf1999ae910043b | next-analyze: improve network error visuals (#86222)
This improves how network errors (such as when the bundle analyzer error server is shut down) are shown.
Fixes PACK-5877


We currently have a failing test for React DevTools against React 17.
This started failing in https://github.com/facebook/react/pull/30899,
where we changed logic for error tracking and started relying on
`onPostCommitFiberRoot` hook.
Looking at ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/FastRefreshDevToolsIntegration-test.js",
"patch": "@@ -186,8 +186,83 @@ describe('Fast Refresh', () => {\n expect(getContainer().firstChild).not.toBe(element);\n });\n \n+ // @reactVersion < 18.0\n // @reactVersion >= 16.9\n- it('should not b... | 2025-01-02T14:07:21 |
nodejs/node | 8053a5c1c78a6b8e69b76a345956d19431e111a5 | 1d0b4e8b911a79ed37784191691de0f45543a8df | http2: add diagnostics channel 'http2.client.stream.error'
Signed-off-by: Darshan Sen <raisinten@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58306
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> | [
{
"path": "doc/api/diagnostics_channel.md",
"patch": "@@ -1217,6 +1217,13 @@ Emitted when a stream is created on the client.\n \n Emitted when a stream is started on the client.\n \n+`http2.client.stream.error`\n+\n+* `stream` {ClientHttp2Stream}\n+* `error` {Error}\n+\n+Emitted when an error occurs during ... | 2025-05-16T12:15:50 |
electron/electron | 3c941c7e8fa23fb37c6b8f3d3ba24b6c66ba8d94 | 024fee4e443f757f1c57dbb1d0e90aa959fff17b | fix: modernize-avoid-c-arrays (#44813)
use string_view for constants used in methods that take string_view args | [
{
"path": "shell/app/electron_main_delegate.cc",
"patch": "@@ -79,7 +79,7 @@ namespace electron {\n \n namespace {\n \n-const char kRelauncherProcess[] = \"relauncher\";\n+constexpr std::string_view kRelauncherProcess = \"relauncher\";\n \n constexpr std::string_view kElectronDisableSandbox{\"ELECTRON_DISAB... | 2024-11-25T15:49:58 |
golang/go | b31dc77ceab962c0f4f5e4a9fc5e1a403fbd2d7c | 46cc53290003340877413b8a53511b4f3685d213 | os: support deleting read-only files in RemoveAll on older Windows versions
The Windows implementation of RemoveAll supports deleting read-only
files only on file systems that supports POSIX semantics and on
newer Windows versions (Windows 10 RS5 and latter).
For all the other cases, the read-only bit was not clearer... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -209,7 +209,7 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|DELETE,\n+\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n \t\tobjAttrs,\n ... | 2025-10-21T14:14:03 |
vercel/next.js | e07cc5cc51a8e3b18a74b7ee7bf1999ae910043b | 5b62dd8504650ab03a960039b86f63c5dcc22ef5 | [turbopack] Refactor the analyzer to fix a few issues and prepare to split it up (#86265)
# Refactor Analyzer State Management in Turbopack
This PR refactors the state management in the Turbopack ECMAScript analyzer to improve code organization and maintainability. The changes include:
- Introduced a `LexicalContext... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -357,8 +357,6 @@ pub fn create_graph(\n eval_context,\n effects: Default::default(),\n hoisted_effects: Default::default(),\n- early_return_stack: Default::default(),\n- ... | 2025-11-20T19:07:35 |
facebook/react | c01b8058e6e2d50a5c1ed69f1bdd4c541bf4aa92 | 50f00fd876b0b92b243cd8b54a222f9577446392 | DevTools: fix Compiler inegration test with 18.2 (#31904)
Currently failing with `TypeError: Invalid Version: 19`, looks like I've
overlooked this one in https://github.com/facebook/react/pull/31241. | [
{
"path": "scripts/ci/download_devtools_regression_build.js",
"patch": "@@ -110,7 +110,7 @@ async function downloadRegressionBuild() {\n );\n }\n \n- if (semver.gte(reactVersion, '18.2.0') && semver.lt(reactVersion, '19')) {\n+ if (semver.gte(reactVersion, '18.2.0') && semver.lt(reactVersion, '19.0.... | 2024-12-29T15:36:21 |
electron/electron | 024fee4e443f757f1c57dbb1d0e90aa959fff17b | 7e7010dacf6840734c9875de3086c766c97bcdc0 | fix: modernize-use-nodiscard clang-tidy warnings (#44808) | [
{
"path": "shell/browser/electron_permission_manager.cc",
"patch": "@@ -86,7 +86,7 @@ class ElectronPermissionManager::PendingRequest {\n return content::RenderFrameHost::FromID(render_frame_host_id_);\n }\n \n- bool IsComplete() const { return remaining_results_ == 0; }\n+ [[nodiscard]] bool IsComp... | 2024-11-25T15:48:28 |
nodejs/node | 1d0b4e8b911a79ed37784191691de0f45543a8df | 0315283cbdb7745c7e35bb49ac48b0ebcadcb228 | vm: import call should return a promise in the current context
A `import` call should returns a promise created in the context where
the `import` was called, not the context of `importModuleDynamically`
callback.
PR-URL: https://github.com/nodejs/node/pull/58309
Fixes: https://github.com/nodejs/node/issues/53575
Revi... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -1020,16 +1020,23 @@ static MaybeLocal<Promise> ImportModuleDynamicallyWithPhase(\n };\n \n Local<Value> result;\n- if (import_callback->Call(\n- context,\n- Undefined(isolate),\n- arraysize(import_args),\n- import_args).ToLocal(&... | 2025-05-16T07:43:48 |
golang/go | 46cc53290003340877413b8a53511b4f3685d213 | 2163a5802103ebe84cbf0d77cee7097185bd8e8d | cmd/compile/internal/ssa: fix typo in comment
Change-Id: Ic48a756b71a62be1c6c4cfe781c02b89010e2338
GitHub-Last-Rev: 8c0d89b475c204af66d528799713276c57da16f8
GitHub-Pull-Request: golang/go#75985
Reviewed-on: https://go-review.googlesource.com/c/go/+/713041
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go",
"patch": "@@ -99,7 +99,7 @@ func init() {\n \t\t}\n \t}\n \n-\t// Floating pointer registers.\n+\t// Floating point registers.\n \tfor r := 32; r <= 63; r++ {\n \t\tmask := addreg(r, \"\")\n \t\tfpMask |= mask",
"additions": 1,
"deletions"... | 2025-10-20T16:18:42 |
facebook/react | 50f00fd876b0b92b243cd8b54a222f9577446392 | d4ac7689f94f8ed53b779a651d62a2b9af20e6c0 | [Flight] Mark Errored Server Components (#31879)
This is similar to #31876 but for Server Components.
It marks them as errored and puts the error message in the Summary
properties.
<img width="1511" alt="Screenshot 2024-12-20 at 5 05 35 PM"
src="https://github.com/user-attachments/assets/92f11e42-0e23-41c7-bfd4-09ef... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -73,6 +73,7 @@ import {\n markAllTracksInOrder,\n logComponentRender,\n logDedupedComponentRender,\n+ logComponentErrored,\n } from './ReactFlightPerformanceTrack';\n \n import {\n@@ -2876,6 +2877,7 @@ function flushComponentPer... | 2024-12-28T07:02:16 |
vercel/next.js | 5ca1aa7f90c1d73103d1bf6687d3c9f4fae3201f | 3f4db01dbc1921d366a125a298850d5afaee88a7 | Turbopack: perf: Fix unused argument filtering optimization in turbo-tasks for `self` arguments (#86231)
Should fix https://github.com/vercel/next.js/pull/86203
## Validation
I ran:
```
rm -rf .next && NEXT_TURBOPACK_TASK_STATISTICS=~/stats-with-fix.json pnpm next build --turbopack --experimental-build-mode=compile... | [
{
"path": "Cargo.lock",
"patch": "@@ -9383,6 +9383,7 @@ dependencies = [\n \"proc-macro2\",\n \"quote\",\n \"regex\",\n+ \"rstest\",\n \"rustc-hash 2.1.1\",\n \"syn 2.0.104\",\n ]",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "turbopack/crates/turbo-tasks-back... | 2025-11-20T16:57:11 |
golang/go | 2163a5802103ebe84cbf0d77cee7097185bd8e8d | 306eacbc112f2052d82c419fe312153b8b2ab613 | crypto/internal/fips140/entropy: increase AllocsPerRun iterations
TestNISTECAllocations is flaky (~1% failure rate) on my local Windows
machine since CL 710058, which touched TestEntropyRace.
These tests are unrelated, but some allocations might be incorrectly
accounted to TestNISTECAllocations, affecting the end res... | [
{
"path": "src/crypto/internal/fips140test/nistec_test.go",
"patch": "@@ -18,7 +18,7 @@ import (\n func TestNISTECAllocations(t *testing.T) {\n \tcryptotest.SkipTestAllocations(t)\n \tt.Run(\"P224\", func(t *testing.T) {\n-\t\tif allocs := testing.AllocsPerRun(10, func() {\n+\t\tif allocs := testing.AllocsP... | 2025-10-17T10:40:05 |
electron/electron | 7e7010dacf6840734c9875de3086c766c97bcdc0 | fbe01cdc16a36ffabee7b92fee3f245c97d6f2e6 | chore: bump chromium to 133.0.6852.0 (main) (#44748)
* chore: bump chromium in DEPS to 133.0.6847.0
* chore: bump chromium in DEPS to 133.0.6848.0
* chore: update patches
* implement extensions::GlobalShortcutListener::ExecuteCommand stub
https://chromium-review.googlesource.com/c/chromium/src/+/5871484
... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '133.0.6846.0',\n+ '133.0.6852.0',\n 'node_version':\n 'v22.9.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromiu... | 2024-11-25T15:45:47 |
nodejs/node | b6189c352cbf5bb9766df2cf03dc3a369e87f5be | 0c78a48d75008b87d874385a966a168a2b680b4d | module: clarify cjs global-like error on ModuleJobSync
PR-URL: https://github.com/nodejs/node/pull/56491
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me> | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -65,6 +65,37 @@ const isCommonJSGlobalLikeNotDefinedError = (errorMessage) =>\n (globalLike) => errorMessage === `${globalLike} is not defined`,\n );\n \n+\n+/**\n+ *\n+ * @param {Error} e\n+ * @param {string} url\n+ * @returns {void}\n+... | 2025-05-16T06:39:28 |
facebook/react | d4ac7689f94f8ed53b779a651d62a2b9af20e6c0 | 4309bde2b4faa044dc6266142378a330c030e053 | Add Profiler mode to fixtures even if React DevTools is not installed (#31877)
Currently you need to do one of either:
1. Install React DevTools
2. Install React Refresh
3. Add Profiler component
To opt in to component level profiling.
It was a bit confusing that some of the fixtures was doing 2 which made
them wor... | [
{
"path": "fixtures/flight/src/index.js",
"patch": "@@ -1,5 +1,5 @@\n import * as React from 'react';\n-import {use, Suspense, useState, startTransition} from 'react';\n+import {use, Suspense, useState, startTransition, Profiler} from 'react';\n import ReactDOM from 'react-dom/client';\n import {createFromF... | 2024-12-28T07:01:49 |
vercel/next.js | 3f4db01dbc1921d366a125a298850d5afaee88a7 | 95a074403ff1ecf6d9c89a46e7e92392614d4b60 | [Cache Components] Discriminate static shell validation errors by type (#85747)
Prior to this change any "hole" in a prerender that would block the
shell was considered an error and you would be presented with a very
generic message explaining all the different ways you could have failed
this validation check.
With t... | [
{
"path": "errors/next-prerender-dynamic-metadata.mdx",
"patch": "@@ -1,12 +1,16 @@\n ---\n-title: Cannot access Request information or uncached data in `generateMetadata()` in an otherwise entirely static route\n+title: Cannot access Runtime data or uncached data in `generateMetadata()` or file-based Metad... | 2025-11-20T16:13:37 |
golang/go | 306eacbc112f2052d82c419fe312153b8b2ab613 | a5a249d6a64508376320bc48546a6a43aebecda7 | cmd/go/testdata/script: disable list_empty_importpath test on Windows
The test is flaking on windows, and I haven't been able to figure out
why. For now, to unblock folks, just allow the value that occasionally
appears: 'no errors' to avoid having a broken test. This seems like it's
probably a race though so we should... | [
{
"path": "src/cmd/go/testdata/script/list_empty_importpath.txt",
"patch": "@@ -1,6 +1,12 @@\n ! go list all\n ! stderr 'panic'\n-stderr 'invalid import path'\n+[!GOOS:windows] [!GOOS:solaris] stderr 'invalid import path'\n+# #73976: Allow 'no errors' on Windows and Solaris until issue\n+# is resolved to pr... | 2025-10-20T17:51:13 |
electron/electron | b8b2e12c9c6d2ab9a3b5d7df061dfdeec0d6cbc2 | 94a65df2708ddc96bb9c91bd98b66e93a5f22a8e | docs: fix wording in auto-updater.md (#44787)
* docs: fix wording in auto-updater.md
* docs: update wording
Co-authored-by: Keeley Hammond <vertedinde@electronjs.org>
---------
Co-authored-by: Keeley Hammond <vertedinde@electronjs.org> | [
{
"path": "docs/api/auto-updater.md",
"patch": "@@ -68,7 +68,7 @@ Emitted when there is an error while updating.\n \n ### Event: 'checking-for-update'\n \n-Emitted when checking if an update has started.\n+Emitted when checking for an available update has started.\n \n ### Event: 'update-available'\n ",
... | 2024-11-24T21:00:42 |
rust-lang/rust | e0829846cede092c09ddad33710cfedfaaab81a3 | bd1ba78364d1a07372acedbf7d5db487b2844a58 | Fix a stupid typo | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs",
"patch": "@@ -1805,22 +1805,27 @@ fn resolve_type_param_assoc_type_shorthand(\n }\n AssocTypeShorthandResolution::Cycle => return AssocTypeShorthandResolution::Cycle,\n };\n+ let (assoc_typ... | 2026-03-09T10:28:02 |
nodejs/node | 44883b7b1ffe076a5807beb1757193322e020237 | 5eeb9f3477005b0158faf08adca484ee10078c3f | doc: document default test-reporter change
Document the change made in https://github.com/nodejs/node/pull/54548
PR-URL: https://github.com/nodejs/node/pull/58302
Fixes: https://github.com/nodejs/node/issues/58301
Refs: https://github.com/nodejs/node/pull/54548
Reviewed-By: Tierney Cyren <hello@bnb.im>
Reviewed-By: J... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1046,6 +1046,10 @@ added:\n - v19.6.0\n - v18.15.0\n changes:\n+ - version: v23.0.0\n+ pr-url: https://github.com/nodejs/node/pull/54548\n+ description: The default reporter on non-TTY stdout is changed from `tap` to\n+ `spec`, aligning w... | 2025-05-14T22:50:38 |
facebook/react | fc8a898dd126198305fce458edd084c5d9c4b67a | 97d794958f5b19b66a980f737facd890463f0cb8 | [compiler] Fix broken fire snapshot (#31920)
This was not committed in #31811
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31920).
* #31919
* #31918
* #31917
* #31916
* #31915
* __->__ #31920 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/transform-fire/error.invalid-rewrite-deps-spread.expect.md",
"patch": "@@ -12,9 +12,12 @@ function Component(props) {\n \n const deps = [foo, props];\n \n- useEffect(() => {\n- fire(foo(props));\n- }, ...deps);\n... | 2024-12-26T19:58:37 |
vercel/next.js | 95a074403ff1ecf6d9c89a46e7e92392614d4b60 | 5aad91421fb38f520b7d76cc4f5a8a50b5368166 | Turbopack: disable input source maps for analyze (#86341)
fixup
Turbopack: disable input source maps for analyze
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right check... | [
{
"path": "crates/napi/src/next_api/analyze.rs",
"patch": "@@ -57,8 +57,7 @@ async fn get_analyze_data_operation(\n app_dir_only: bool,\n ) -> Result<Vc<OutputAssets>> {\n let project = container.project();\n- let project =\n- project.with_next_config(project.next_config().with_production_... | 2025-11-20T15:54:08 |
golang/go | f838faffe21afd2d5c177c04df8836c93e273b4b | ee4d2c312de90296a6b6f687f6a7ea8b9916af54 | runtime: wrap procyield assembly and check for 0
procyield will currently loop infinitely if passed 0 on several
platforms. This change sidesteps this bug by renaming procyield to
procyieldAsm, and adding a wrapper named procyield that checks for
cycles == 0. The benefit of this structure is that procyield called
with... | [
{
"path": "src/runtime/asm_386.s",
"patch": "@@ -597,7 +597,7 @@ CALLFN(·call268435456, 268435456)\n CALLFN(·call536870912, 536870912)\n CALLFN(·call1073741824, 1073741824)\n \n-TEXT runtime·procyield(SB),NOSPLIT,$0-0\n+TEXT runtime·procyieldAsm(SB),NOSPLIT,$0-0\n \tMOVL\tcycles+0(FP), AX\n again:\n \tPAUSE... | 2025-10-17T19:53:36 |
rust-lang/rust | 4019a92ca82a480e31156c7ecf83e646989ebeb7 | 98e7077b903559d7a4fafb775cd5292cc9427b67 | Add new `rustc_errors::DiagDecorator` type | [
{
"path": "compiler/rustc_errors/src/diagnostic.rs",
"patch": "@@ -128,6 +128,17 @@ impl<'a> Diagnostic<'a, ()>\n }\n }\n \n+/// Type used to emit diagnostic through a closure instead of implementing the `Diagnostic` trait.\n+pub struct DiagDecorator<F: FnOnce(&mut Diag<'_, ()>)>(pub F);\n+\n+impl<'a, F... | 2026-03-07T17:39:39 |
electron/electron | 24df5f96d733a40234cdd7ca9c82a9b5c9d9beb8 | 4a3513377c801d82da2ea1a529ca1965f36da9d5 | fix: remove unused local variables (#44815)
* chore: remove unused local non-trivial variable relaunch_executable
became unused in June 2016 in 0d066de5
* chore: only declare program_name local variable if used
We declared it everywhere but only used it on Windows
* chore: remove unused local non-trivial v... | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -1011,8 +1011,6 @@ bool App::RequestSingleInstanceLock(gin::Arguments* args) {\n if (HasSingleInstanceLock())\n return true;\n \n- std::string program_name = electron::Browser::Get()->GetName();\n-\n base::FilePath user_dir;\n base::... | 2024-11-23T23:34:51 |
nodejs/node | 5eeb9f3477005b0158faf08adca484ee10078c3f | 2c256d7123bf663f8db44b878df7faebfccc402a | src: fix error handling on async crypto operations
Fixes: https://hackerone.com/reports/2817648
Co-Authored-By: Filip Skokan <panva.ip@gmail.com>
Co-Authored-By: Tobias Nießen <tniessen@tnie.de>
Co-Authored-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Hennin... | [
{
"path": "src/crypto/crypto_dh.cc",
"patch": "@@ -512,15 +512,15 @@ MaybeLocal<Value> DHBitsTraits::EncodeOutput(Environment* env,\n return out->ToArrayBuffer(env);\n }\n \n-bool DHBitsTraits::DeriveBits(\n- Environment* env,\n- const DHBitsConfig& params,\n- ByteSource* out) {\n+bool DHBitsTrai... | 2025-03-25T13:24:34 |
facebook/react | 97d794958f5b19b66a980f737facd890463f0cb8 | 94867f33be327a52bfffda89a14c85897180e43e | [assert helpers] Remove toWarnDev from fixtures/dom (#31894)
This is unused and never was:
https://github.com/facebook/react/commit/e6a0473c3c6f501dbe291f60b9ee35760ab99eed | [
{
"path": "fixtures/dom/src/__tests__/nested-act-test.js",
"patch": "@@ -14,8 +14,6 @@ let TestAct;\n \n global.__DEV__ = process.env.NODE_ENV !== 'production';\n \n-expect.extend(require('../toWarnDev'));\n-\n describe('unmocked scheduler', () => {\n beforeEach(() => {\n jest.resetModules();",
"a... | 2024-12-23T23:11:04 |
vercel/next.js | 5aad91421fb38f520b7d76cc4f5a8a50b5368166 | fbc9a2b9a3ae62125f7e1710672bae79ee7e142c | Turbopack: add experimental.turbopackInputSourceMaps and respect serverSourceMaps (#86340)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) t... | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -43,7 +43,7 @@ use turbopack_core::{\n PROJECT_FILESYSTEM_NAME,\n changed::content_changed,\n chunk::{\n- ChunkingContext, EvaluatableAssets, SourceMapsType,\n+ ChunkingContext, EvaluatableAssets,\n module_id_strategi... | 2025-11-20T15:22:43 |
golang/go | e4251768439bbd0a6fe4c472aa57bb5257f20b56 | dc9a3e2a658176fe1884d65d5a0e7516145404eb | cmd/asm: fix typo in comment
Change-Id: I1a7933bce70bcae1f93a45c6810da60d269f48f3
Reviewed-on: https://go-review.googlesource.com/c/go/+/713000
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Keith Randall <khr@google... | [
{
"path": "src/cmd/asm/main.go",
"patch": "@@ -58,7 +58,7 @@ func main() {\n \t\t// nothing\n \tcase \"index\":\n \t\t// known to compiler; ignore here so people can use\n-\t\t// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST\n+\t\t// the same list with -gcflags=-spectre=LIST and -as... | 2025-10-20T04:33:50 |
electron/electron | c5ea177b3d9736bd73177cb4157141ca7e6b1938 | 0285592d619f4689a2a98f999b81c132e49a1a23 | feat: add query-session-end and improve session-end events on Windows (#44598)
* feat: add query-session-end event for Windows
* fix: remove debug line
* feat: notify with reason on session-end
* docs: add comments and return params
* docs: add same docs to the BrowserWindow
* fix: add shutdown reason i... | [
{
"path": "docs/api/base-window.md",
"patch": "@@ -144,10 +144,24 @@ _**Note**: There is a subtle difference between the behaviors of `window.onbefor\n Emitted when the window is closed. After you have received this event you should\n remove the reference to the window and avoid using it any more.\n \n+####... | 2024-11-22T19:47:36 |
nodejs/node | 2c256d7123bf663f8db44b878df7faebfccc402a | 86421cf1fc97d9c757284c442801b96e15b23c0e | 2025-05-14, Version 24.0.2 (Current)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operations
PR-URL: https://github.com/nodejs-private/node-private/pull/714 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -40,7 +40,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.1\">24.0.1</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.2\">24.0.2</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.1\">2... | 2025-05-12T13:49:55 |
facebook/react | 45a720f7c7ff98e22fb299b50fef90fe319081a7 | ab27231dc51aa2535df37555797e630d31047fa4 | [compile] Error on fire outside of effects and ensure correct compilation, correct import (#31798)
Traverse the compiled functions to ensure there are no lingering fires
and that all
fire calls are inside an effect lambda.
Also corrects the import to import from the compiler runtime instead
-- | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -567,7 +567,10 @@ export function compileProgram(\n \n const hasFireRewrite = compiledFns.some(c => c.compiledFn.hasFireRewrite);\n if (environment.enableFire && hasFireRewrite) {\n- externalFuncti... | 2024-12-20T21:55:01 |
vercel/next.js | fbc9a2b9a3ae62125f7e1710672bae79ee7e142c | 844ec47cc305aad2cf23f905a20250d7852cdc9c | [Cache Components] Atomic setTimeouts (#86093)
This PR exploits some Node internals to make sure that, if we schedule
some timeouts back to back to perform staged rendering, they'll actually
run in the same iteration of the event loop.
If we cannot patch the timeouts correctly (due to runtime differences in
e.g. Bun,... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -930,5 +930,8 @@\n \"929\": \"No pages or app directory found.\",\n \"930\": \"Expected a dynamic route, but got a static route: %s\",\n \"931\": \"Unexpected empty path segments match for a route \\\"%s\\\" with param \\\"%s\\\" of type \\\"%s\\\"\"... | 2025-11-20T14:09:47 |
golang/go | dc9a3e2a658176fe1884d65d5a0e7516145404eb | df33c170919faca6ea849ee23fb0af6971fddc5b | runtime: fix generation skew with trace reentrancy
Currently when performing multiple nested traceAcquires, we re-read
trace.gen on subsequent reads. But this is invalid, since a generation
transition may happen in between a traceAcquire and a nested
traceAcquire. The first one will produce a traceLocker with a gen fr... | [
{
"path": "src/runtime/traceruntime.go",
"patch": "@@ -29,6 +29,7 @@ type mTraceState struct {\n \tbuf [2][tracev2.NumExperiments]*traceBuf // Per-M traceBuf for writing. Indexed by trace.gen%2.\n \tlink *m // Snapshot of alllink or freelink.\n \treentere... | 2025-09-30T23:54:07 |
electron/electron | 0285592d619f4689a2a98f999b81c132e49a1a23 | 86e4529d266df5fb89d02271474b52588f653cc3 | fix: crash calling `shell.readShortcutLink` (#44784)
fix: crash calling shell.readShortcutLink | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -135,3 +135,4 @@ chore_partial_revert_of.patch\n fix_software_compositing_infinite_loop.patch\n refactor_unfilter_unresponsive_events.patch\n build_disable_thin_lto_mac.patch\n+support_bstr_pkey_appusermodel_id_in_windows_shortcuts.patch",
"additions":... | 2024-11-22T14:37:17 |
nodejs/node | 86421cf1fc97d9c757284c442801b96e15b23c0e | b1e9171a44174bf4b2ba6ee045d2af272d07af6d | 2025-05-14, Version 23.11.1 (Current)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operations
PR-URL: https://github.com/nodejs-private/node-private/pull/708 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -44,7 +44,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V24.md#24.0.0\">24.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.11.0\">23.11.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.11.1\">23.11.1... | 2025-05-07T14:28:39 |
vercel/next.js | 8325e3c1d112f3b23806cae3454ad40f07fc5cba | 0dba1c692b1be8dddea0fb4edf1f1d00b33c90fc | Turbopack: fix passing project options from napi (#86256)
### What?
Make stuff more type safe. Use destructuring to avoid forgetting fields | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -137,8 +137,8 @@ pub struct NapiProjectOptions {\n /// Unix path. E.g. `apps/my-app`\n pub project_path: RcStr,\n \n- /// A path where to emit the build outputs, relative to [`Project::project_path`], always Unix\n- /// path. Corres... | 2025-11-20T12:49:50 |
facebook/react | 03297e048d08de2f7c4c0d2950e2cb1c13875f66 | 99471c02dd6631df1892bf76d932afd22fffa5e3 | [compiler] transform fire calls (#31796)
This is the diff with the meaningful changes. The approach is:
1. Collect fire callees and remove fire() calls, create a new binding
for the useFire result
2. Update LoadLocals for captured callees to point to the useFire result
3. Update function context to reference useFi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -98,6 +98,7 @@ import {validateNoJSXInTryStatement} from '../Validation/ValidateNoJSXInTryState\n import {propagateScopeDependenciesHIR} from '../HIR/PropagateScopeDependenciesHIR';\n import {outlineJSX} from ... | 2024-12-20T20:09:09 |
golang/go | 58a8fdb6cf4a905fd3de44bf2dd87d14fbd38dfe | 8d0bef7ffe5c471684f6a46f579fc7b87a46adb8 | cmd/go: inject State parameter into `bug.runBug`
This command modifies the call tree starting at `bug.runBug` to inject
a `State` parameter to every function that is currently using the
global `modload.LoaderState` variable. By explicilty passing a
`State` parameter, we can begin to eliminate the usage of the global
... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -51,7 +51,7 @@ func runBug(ctx context.Context, cmd *base.Command, args []string) {\n \tbuf.WriteString(bugHeader)\n \tprintGoVersion(&buf)\n \tbuf.WriteString(\"### Does this issue reproduce with the latest release?\\n\\n\\n\")\n-\tprintEnvDetails(&b... | 2025-10-02T03:01:55 |
electron/electron | 86e4529d266df5fb89d02271474b52588f653cc3 | 4fd1b5b186fabcba09316881c56d83a7ea854b72 | fix: ensure `context-menu` emitted for draggable regions (#44761)
* fix: ensure context-menu emitted for draggable regions
* chore: address suggestions from review | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -169,6 +169,9 @@ class NativeWindowMac : public NativeWindow,\n void NotifyWindowDidFailToEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n+ // views::WidgetDelegate:\n+ views::View* GetContentsView() override;\n+\n // Clean... | 2024-11-22T11:33:38 |
rust-lang/rust | e63664773ceea6e9e7c4b405c79c951aa8725420 | 69370dc4a8862b8401615a2a7b950704ba66c495 | Move some ui tests
* Move dyn-drop to dyn-keyword
* Reorganize `tests/ui/empty` into specific dirs
remove tests/ui/empty/empty-linkname.rs duplicate of tests/ui/error-codes/E0454.rs
* Move `missing-trait-bounds` to `trait-bound/missing-trait-bounds`
* bless traits/missing-trait-bounds tests
* Move `recursion_limit` t... | [
{
"path": "src/tools/tidy/src/issues.txt",
"patch": "@@ -927,7 +927,6 @@ ui/dst/issue-90528-unsizing-suggestion-3.rs\n ui/dst/issue-90528-unsizing-suggestion-4.rs\n ui/dyn-keyword/issue-5153.rs\n ui/dyn-keyword/issue-56327-dyn-trait-in-macro-is-okay.rs\n-ui/empty/issue-37026.rs\n ui/enum-discriminant/auxili... | 2026-03-09T09:11:06 |
nodejs/node | b1e9171a44174bf4b2ba6ee045d2af272d07af6d | 1771cdfdcdfa1582a863ae1e11b642153eb34b62 | 2025-05-14, Version 22.15.1 'Jod' (LTS)
This is a security release.
Notable changes:
src:
* (CVE-2025-23166) fix error handling on async crypto operation
fs:
* (CVE-2025-23165) add missing call to uv\_fs\_req\_cleanup
PR-URL: https://github.com/nodejs-private/node-private/pull/712 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -59,7 +59,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.0\">22.15.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.1\">22.15.1... | 2025-05-07T20:37:13 |
vercel/next.js | ce90e190f21bbd1178d26c67cc7cc80a4f820711 | cab4fc608fd9b058d035fc00d8431753b4694016 | fix: Rename proxy.js to middleware.js in NFT file (#86214)
### Why?
When Proxy self-references itself, e.g., `__filename`, it is traced to
the NFT file. However, since Next.js renames 'proxy.js' to
'middleware.js' during webpack build, the files in NFT will differ from
the actual outputs. This can cause a problem whe... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -4079,6 +4079,34 @@ export default async function build(\n path.join(distDir, SERVER_DIRECTORY, 'proxy.js.nft.json'),\n path.join(distDir, SERVER_DIRECTORY, 'middleware.js.nft.json')\n )\n+\n+ const middlewareNft =... | 2025-11-19T20:23:31 |
facebook/react | a9bbe34622885ef5667d33236d580fe7321c0d8b | 17520b638190a20e745fe53299813b29b52dfc4c | [Flight] Reject any new Chunks not yet discovered at the time of reportGlobalError (#31851)
Same as #31840 but for the Flight Client. | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -307,6 +307,8 @@ export type Response = {\n _rowTag: number, // 0 indicates that we're currently parsing the row ID\n _rowLength: number, // remaining bytes in the row. 0 indicates that we're looking for a newline.\n _buffer: Arr... | 2024-12-19T05:03:40 |
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.