repo stringclasses 11
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 59.2k | files listlengths 1 300 | timestamp timestamp[s]date 2016-04-11 04:39:55 2026-04-09 07:34:40 |
|---|---|---|---|---|---|
nodejs/node | f2e99c5c16f64a304d26747abedf186f84fafab8 | efebf461313db420243717f48aaa0b97d5279580 | fs: avoid computing time coefficient constants in runtime
PR-URL: https://github.com/nodejs/node/pull/58728
Fixes: https://github.com/nodejs/node/issues/58726
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Revi... | [
{
"path": "lib/internal/fs/utils.js",
"patch": "@@ -419,10 +419,10 @@ StatsBase.prototype.isSocket = function() {\n return this._checkModeProperty(S_IFSOCK);\n };\n \n-const kNsPerMsBigInt = 10n ** 6n;\n-const kNsPerSecBigInt = 10n ** 9n;\n-const kMsPerSec = 10 ** 3;\n-const kNsPerMs = 10 ** 6;\n+const kN... | 2025-06-18T16:36:55 |
rust-lang/rust | be78a0d629bd6058c2fd3b9b405a8484434ebcfb | 6084bf541b23251b9c5b06466e075d176a9445e0 | avoid ICE when EII target resolves to a constructor
remove span_delayed_bug | [
{
"path": "compiler/rustc_hir_analysis/src/check/compare_eii.rs",
"patch": "@@ -9,6 +9,7 @@ use std::iter;\n use rustc_data_structures::fx::FxIndexSet;\n use rustc_errors::{Applicability, E0806, struct_span_code_err};\n use rustc_hir::attrs::EiiImplResolution;\n+use rustc_hir::def::DefKind;\n use rustc_hir:... | 2026-03-08T14:04:49 |
golang/go | 3b3d6b9e5d9898810ee13e739f3ad759ab104fdb | 5f4b5f1a196774e45bc50de0729973119eb7bf07 | cmd/internal/obj/arm64: shorten constant integer loads
Large integer constants can take up to 4 instructions to encode.
We can encode some large constants with a single instruction, namely
those which are bit patterns (repetitions of certain runs of 0s and 1s).
Often the constants we want to encode are *close* to th... | [
{
"path": "src/cmd/asm/internal/asm/testdata/arm64.s",
"patch": "@@ -400,6 +400,8 @@ TEXT\tfoo(SB), DUPOK|NOSPLIT, $-8\n \tMOVD\t$0x11110000, R1 // MOVD\t$286326784, R1 // 2122a2d2\n \tMOVD\t$0xaaaa0000aaaa1111, R1 // MOVD\t$-6149102338357718767, R1 // 212282d24155b5f24155... | 2025-11-04T23:15:16 |
facebook/react | 8bda71558c8b6f9f19af33271f1bfd0251a1c071 | f82c662b8d28461ffdb9f82f3fc26b7b54b9bef5 | [Fiber] support hydration when rendering Suspense anywhere (#32224)
follow up to https://github.com/facebook/react/pull/32163
This continues the work of making Suspense workable anywhere in a
react-dom tree. See the prior PRs for how we handle server rendering and
client rendering. In this change we update the hy... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -207,6 +207,9 @@ const SUSPENSE_START_DATA = '$';\n const SUSPENSE_END_DATA = '/$';\n const SUSPENSE_PENDING_START_DATA = '$?';\n const SUSPENSE_FALLBACK_START_DATA = '$!';\n+const PREAMBLE_CONTRIBUTION_HTML = 0b001;\n+c... | 2025-02-04T20:30:30 |
electron/electron | 4085185e2dd56cd691ba3c8ece36f63c969563b0 | a141f68c83bcb4f45138379436f8e5d6baa39ca6 | docs: `transactions-updated` event type (#45527)
fix: `transactions-updated` event type | [
{
"path": "docs/api/in-app-purchase.md",
"patch": "@@ -10,13 +10,13 @@ The `inAppPurchase` module emits the following events:\n \n ### Event: 'transactions-updated'\n \n-Emitted when one or more transactions have been updated.\n-\n Returns:\n \n * `event` Event\n * `transactions` Transaction[] - Array of [`... | 2025-02-10T15:12:17 |
nodejs/node | 07220230d9effcb4822d7a55563a86af3764540c | ea5d37ecbebabd754201b2a0b4fe47d1e2ed07e1 | repl: fix tab completion not working with computer string properties
PR-URL: https://github.com/nodejs/node/pull/58709
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> | [
{
"path": "lib/repl.js",
"patch": "@@ -1226,7 +1226,7 @@ const importRE = /\\bimport\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])\n const requireRE = /\\brequire\\s*\\(\\s*['\"`](([\\w@./:-]+\\/)?(?:[\\w@./:-]*))(?![^'\"`])$/;\n const fsAutoCompleteRE = /fs(?:\\.promises)?\\.\\s*[a-z][a-zA-... | 2025-06-17T00:39:15 |
vercel/next.js | b3e51f8bfe6eb8be915ef43c78b3226362ff8c71 | 78a802cb1ed4730992855d7df88652a4727d5f71 | Turbopack: Use TransientCellData for non-serializable cells (#86069)
Use TransientCellData for non-serializable cells
use SharedReference to reduce size
<!-- 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 checklis... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -817,9 +817,15 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n }\n }\n \n+ let ReadCellOptions {\n+ is_serializable_cell_content,\n+ tracking,\n+ final_read_... | 2025-12-03T12:20:58 |
golang/go | 5f4b5f1a196774e45bc50de0729973119eb7bf07 | 0fe6c8e8c878c44d4466f07ddd0a5b2cd07650c7 | runtime/msan: use different msan routine for copying
__msan_memmove records the fact that we're copying memory, and
actually does the copy. Use instead __msan_copy_shadow, which
records the fact that we're copying memory, but doesn't actually
do the copy itself.
We're doing the copy ourselves, so we don't need msan t... | [
{
"path": "src/runtime/msan/msan.go",
"patch": "@@ -13,8 +13,6 @@ package msan\n #include <stdint.h>\n #include <sanitizer/msan_interface.h>\n \n-extern void __msan_memmove(void*, const void*, uintptr_t);\n-\n void __msan_read_go(void *addr, uintptr_t sz) {\n \t__msan_check_mem_is_initialized(addr, sz);\n }... | 2025-11-08T19:11:10 |
electron/electron | 9199d5c610c399d612dd938c87e2a92de56ec68c | 96460becf9ab0bf49d7d556a5c567da3c4217701 | fix: window maximizing with Mica (#45456)
* fix: window maximizing with Mica
* Fix rounded corners after restore | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -642,8 +642,22 @@ void NativeWindowViews::SetEnabledInternal(bool enable) {\n #endif\n }\n \n-#if BUILDFLAG(IS_LINUX)\n void NativeWindowViews::Maximize() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsTranslucent()) {\n+ // If a window is translucent b... | 2025-02-07T20:00:36 |
facebook/react | f82c662b8d28461ffdb9f82f3fc26b7b54b9bef5 | 0a82580bfc80538c5ce914514dc86b17c8889954 | [Flight Parcel] Implement findSourceMapURL (#32294)
This implements `findSourceMapURL` in react-server-dom-parcel, enabling
source maps for replayed server errors on the client. It utilizes a new
endpoint in the Parcel dev server that returns the source map for a
given bundle/file. The error overlay UI has also been u... | [
{
"path": "fixtures/flight-parcel/.parcelrc",
"patch": "@@ -1,4 +0,0 @@\n-{\n- \"extends\": \"@parcel/config-default\",\n- \"runtimes\": [\"...\", \"@parcel/runtime-rsc\"]\n-}",
"additions": 0,
"deletions": 4
},
{
"path": "fixtures/flight-parcel/package.json",
"patch": "@@ -1,15 +1,11 ... | 2025-02-04T19:17:13 |
nodejs/node | ea5d37ecbebabd754201b2a0b4fe47d1e2ed07e1 | 908f9f1dc6e3241223b2c60e7671bac6cf17d5ad | util: inspect: do not crash on an Error stack pointing to itself
PR-URL: https://github.com/nodejs/node/pull/58196
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1319,7 +1319,12 @@ function getStackString(ctx, error) {\n if (typeof error.stack === 'string') {\n return error.stack;\n }\n- return formatValue(ctx, error.stack);\n+ ctx.seen.push(error);\n+ ctx.indentationLvl += 4;\n+ const... | 2025-06-16T23:36:47 |
golang/go | 95a0e5adc1e6c27769591de1bfaf520a3265adda | e8ed85d6c22d9530523315c3048ed0455d205bff | sync: don't call Done when f() panics in WaitGroup.Go
This change is based on
https://github.com/golang/go/issues/76126#issuecomment-3473417226
by adonovan.
Fixes #76126
Fixes #74702
Change-Id: Ie404d8204be8917fa8a7b414bb6d319238267c83
GitHub-Last-Rev: b1beddcd725e9168d4d544a9d0322a5a6d8d65b2
GitHub-Pull-Request: go... | [
{
"path": "src/sync/waitgroup.go",
"patch": "@@ -236,7 +236,25 @@ func (wg *WaitGroup) Wait() {\n func (wg *WaitGroup) Go(f func()) {\n \twg.Add(1)\n \tgo func() {\n-\t\tdefer wg.Done()\n+\t\tdefer func() {\n+\t\t\tif x := recover(); x != nil {\n+\t\t\t\t// f panicked, which will be fatal because\n+\t\t\t\t... | 2025-11-10T09:28:16 |
vercel/next.js | 4795a00b60de95a33a9184d54f9dc39cef302e3d | 3b6f016f7707d8a1b5ba4d1a49d27d5d9d795dc8 | Turbopack: Split AggregatedDirtyContainerCount (#86072)
Split AggregatedDirtyContainerCount
improve test case to test session dependent and restoring
<!-- 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 s... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -48,8 +48,8 @@ use crate::backend::operation::TaskDirtyCause;\n use crate::{\n backend::{\n operation::{\n- AggregatedDataUpdate, AggregationUpdateJob, AggregationUpdateQueue,\n- CleanupOldEdg... | 2025-12-03T08:21:46 |
electron/electron | 96460becf9ab0bf49d7d556a5c567da3c4217701 | d7c6fb8250ad4839172b96193810956ce897c24e | fix: Update widget visibility in `NativeWindowMac::ShowInactive` (#45427)
When using `views::WebView` on macOS `NativeWidgetMacNSWindowHost`
contains a layer and compositor responsible for drawing web contents.
To trigger drawing `NativeWidgetMacNSWindowHost::OnVisibilityChanged`
needs to be called and `[NSWindow o... | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -429,7 +429,13 @@ static bool FromV8(v8::Isolate* isolate,\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n+ // Triggers `NativeWidgetMacNSWindowHost::OnVisibilityChanged`.\n+ widget()->ShowInactive();\n+ // `Widget::ShowIn... | 2025-02-07T19:31:08 |
facebook/react | 442150e0e2783ce9ab407a113acd2656752323d2 | 10a4c88f58233074f293ab387b73e96b67192538 | build(eslint-plugin-react-hooks): tsconfig and global types (#32283)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull ... | [
{
"path": "packages/eslint-plugin-react-hooks/src/types/estree.d.ts",
"patch": "@@ -0,0 +1,70 @@\n+/**\n+ * This file augments the `estree` types to include types that are not built-in to `estree` or `estree-jsx`.\n+ * This is necessary because the `estree` types are used by ESLint, and ESLint does not nati... | 2025-02-03T17:07:30 |
nodejs/node | 4d849a1d2892940267da594c23b1caaff98fad62 | d6dade5bc5faf32c8efce69cbc385ca3383beef7 | doc: add islandryu to collaborators
Fixes: https://github.com/nodejs/node/issues/58559
PR-URL: https://github.com/nodejs/node/pull/58714
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@g... | [
{
"path": "README.md",
"patch": "@@ -355,6 +355,8 @@ For information about the governance of the Node.js project, see\n **Harshitha K P** <<harshitha014@gmail.com>> (she/her)\n * [himself65](https://github.com/himself65) -\n **Zeyu \"Alex\" Yang** <<himself65@outlook.com>> (he/him)\n+* [islandryu](https... | 2025-06-16T09:27:03 |
vercel/next.js | 3b6f016f7707d8a1b5ba4d1a49d27d5d9d795dc8 | a682261c910063351219f116188c453c8eeb55e7 | Turbopack: Split AggregatedDirtyContainer (#86606)
Split AggregatedDirtyContainer
rename and helper
update from_task
add dirty_container_count method
Allow infinite test runs
improve test case to test session dependent and restoring
improve names
<!-- Thanks for opening a PR! Your contribution is much appreciat... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -592,14 +592,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .set_active_until_clean();\n if ctx.should_track_activeness() {\n // A newly added Act... | 2025-12-03T06:04:36 |
golang/go | b76103c08e72ac34db2092d2cf1a3c1ec6adf451 | 47a63a331daa96de55562fbe0fa0201757c7d155 | cmd/go: output missing GoDebug entries
The `go help mod edit` command references the GoDebug struct, but `go
mod edit -json` was not displaying them when appropriate.
Fixes #75105
Change-Id: Iec987882941e01b0cf4d4fe31dda9e7a6e2dde87
Reviewed-on: https://go-review.googlesource.com/c/go/+/706757
LUCI-TryBot-Result: Go... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -584,8 +584,9 @@ func flagDropIgnore(arg string) {\n // fileJSON is the -json output data structure.\n type fileJSON struct {\n \tModule editModuleJSON\n-\tGo string `json:\",omitempty\"`\n-\tToolchain string `json:\",omitempty\"`\n+\tGo... | 2025-09-25T15:07:17 |
electron/electron | 67f5ac5bbc1779c9ab896d0cf76e18e31251549e | 517935cd551c15384cfb6d058e00e549fa6f981d | fix: RenderFrameHost nullptr dereference (#45487)
* fix: add nullptr tests before using render_frame_
* refactor: extract-method HasRenderFrame() | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -183,7 +183,7 @@ void WebFrameMain::UpdateRenderFrameHost(content::RenderFrameHost* rfh) {\n }\n \n bool WebFrameMain::CheckRenderFrame() const {\n- if (render_frame_disposed_) {\n+ if (!HasRenderFrame()) {\n v8::Isolate* isola... | 2025-02-07T04:02:57 |
nodejs/node | 823ca6991f29e86db5adcbe1746a812021f17f67 | 0b3fc0d7a80021b7c4db171bcd9be6036fe8d8e7 | fs: make `processReadResult()` and `readSyncRecursive()` private
PR-URL: https://github.com/nodejs/node/pull/58672
Fixes: https://github.com/nodejs/node/issues/58671
Refs: https://github.com/nodejs/node/pull/41439
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Revie... | [
{
"path": "lib/internal/fs/dir.js",
"patch": "@@ -82,7 +82,7 @@ class Dir {\n );\n \n if (result !== null) {\n- this.processReadResult(path, result);\n+ this.#processReadResult(path, result);\n if (result.length > 0) {\n ArrayPrototypePush(this.#handlerQueue, hand... | 2025-06-14T17:23:47 |
rust-lang/rust | accbfccd597b332a36d6d22335d1d7d8e9507619 | d1c79458b5d13bd0179d7dbafd5ca4ea9ae3e6aa | Unconditionally error when trying to create a const coroutine | [
{
"path": "compiler/rustc_ast_lowering/src/expr.rs",
"patch": "@@ -231,6 +231,7 @@ impl<'hir> LoweringContext<'_, 'hir> {\n e.id,\n expr_hir_id,\n *coroutine_kind,\n+ *constness,\n fn_decl,... | 2026-03-11T07:22:26 |
facebook/react | 10a4c88f58233074f293ab387b73e96b67192538 | a4b2d0d51854b10ca0346ab8977da4975d2a7498 | [compiler] Handle TSInstantiationExpression in lowerExpression (#32302)
Fix #31745 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -2528,6 +2528,7 @@ function lowerExpression(\n loc: expr.node.loc ?? GeneratedSource,\n };\n }\n+ case 'TSInstantiationExpression':\n case 'TSNonNullExpression': {\n let expr = exprPath... | 2025-02-03T16:41:04 |
golang/go | 7995751d3ae20f82cbd6ef2a893c35bb92f8d2e6 | 66c7ca7fb3f2e51c39b6b29c8ea9ade62cd08ec5 | cmd/go: copy git reuse and support repos to hg
The reuse_hg.txt is reuse_git.txt with a skip at the top
and a global substitute of git->hg and fetch->pull.
The prefixtagtests.txt and tagtests.txt are straight
copies of the git equivalents.
This is to set up a readable diff in the followup CL
that turns it into a reu... | [
{
"path": "src/cmd/go/testdata/script/reuse_hg.txt",
"patch": "@@ -0,0 +1,483 @@\n+skip\n+\n+[short] skip\n+[!hg] skip\n+\n+env GO111MODULE=on\n+env GOPROXY=direct\n+env GOSUMDB=off\n+\n+# go mod download with the pseudo-version should invoke hg but not have a TagSum or Ref.\n+go mod download -x -json vcs-t... | 2025-11-05T23:19:20 |
vercel/next.js | a682261c910063351219f116188c453c8eeb55e7 | a1a8c25b240324635567752f8ad61ece95ec3be6 | Turbopack: fix double deployment id in web workers (#86754)
### What?
fix double deployment id in web workers | [
{
"path": "test/e2e/app-dir/worker/next.config.js",
"patch": "@@ -1,6 +1,8 @@\n /**\n * @type {import('next').NextConfig}\n */\n-const nextConfig = {}\n+const nextConfig = {\n+ deploymentId: 'test-deployment-id',\n+}\n \n module.exports = nextConfig",
"additions": 3,
"deletions": 1
},
{
"... | 2025-12-03T01:43:42 |
facebook/react | a4b2d0d51854b10ca0346ab8977da4975d2a7498 | 1f0b03ced0d459129069d565cf5f8e5567881441 | fix[react-devtools-fusebox]: add extension globals to build (#32297)
We started using these globals in `react-devtools-shared/src/frontend`
code, forward-fixing https://github.com/facebook/react/pull/32262. | [
{
"path": "packages/react-devtools-fusebox/webpack.config.frontend.js",
"patch": "@@ -83,6 +83,9 @@ module.exports = {\n __PROFILE__: false,\n __TEST__: NODE_ENV === 'test',\n __IS_NATIVE__: true,\n+ __IS_CHROME__: false,\n+ __IS_FIREFOX__: false,\n+ __IS_EDGE__: false,\n ... | 2025-02-03T09:59:58 |
electron/electron | 213165a467b84b3fb979a869d9bf10ad21e2d78e | 3dad07f3383615bd608a46f6b6682ffaffa667c1 | chore: bump chromium to 134.0.6988.0 (main) (#45334)
* chore: bump chromium in DEPS to 134.0.6976.0
* chore: update mas_avoid_private_macos_api_usage.patch.patch
https://chromium-review.googlesource.com/c/chromium/src/+/6171046
process_info_mac.cc -> process_info_mac.mm
* chore: update build_do_not_depend_on_p... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6968.0',\n+ '134.0.6988.0',\n 'node_version':\n 'v22.13.1',\n 'nan_version':",
"additions": 1,
"deletions": 1
},
{
"path": "build/args/all.gn",
"patch": ... | 2025-02-06T20:30:54 |
golang/go | 5cd1b73772e339e3b460d53ba37630704a323ca7 | 91ca80f970c2a20d1ed6603281c97e7e617b87e8 | runtime: correctly print panics before fatal-ing on defer
Fixes #67792
Change-Id: I93d16580cb31e54cee7c8490212404e4d0dec446
Reviewed-on: https://go-review.googlesource.com/c/go/+/613757
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Michael Pratt <mpratt@google.co... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1235,10 +1235,12 @@ func throw(s string) {\n //\n //go:nosplit\n func fatal(s string) {\n+\tp := getg()._panic\n \t// Everything fatal does should be recursively nosplit so it\n \t// can be called even when it's unsafe to grow the stack.\n \tprintlock() // Pre... | 2024-09-17T12:10:20 |
vercel/next.js | 420c6114436de1dc4174a3b546b742df6a17535f | 23dc8ab32b47df0ceaec4515241d8734f8521858 | Convert Windows paths as well when reading sourcemap (#86723)
Fixes this warning on Windows:
`C:\Users\IEUser\Desktop \next-turbopack-issue-repro\.next\dev|server\chunks\ssr\[turbopack]_runtime.js: Invalid source map. Only conformant source maps can be used to find the original code. Cause: Error:
sourceMapURL could n... | [
{
"path": "packages/next/src/server/patch-error-inspect.ts",
"patch": "@@ -160,10 +160,14 @@ function getSourcemappedFrameIfPossible(\n let sourceMapPayload: ModernSourceMapPayload\n if (sourceMapCacheEntry === undefined) {\n let sourceURL = frame.file\n- // e.g. \"/APP/.next/server/chunks/ssr/[r... | 2025-12-02T16:03:17 |
nodejs/node | 3ac0e28a7f190cc9593a0e7eb7fa6825e417a2f3 | a5f9ca1f77cf2c658c9d97fa049b5f29e930b252 | src: enhance error messages for unknown options
PR-URL: https://github.com/nodejs/node/pull/58677
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M ... | [
{
"path": "src/node_config_file.cc",
"patch": "@@ -200,7 +200,7 @@ ParseResult ConfigReader::ParseOptions(\n } else {\n FPrintF(stderr,\n \"Unknown or not allowed option %s for namespace %s\\n\",\n- option_key.data(),\n+ option_key,\n namespace... | 2025-06-13T13:40:17 |
electron/electron | c0282eb9c8a29130b64e045e097029049505e577 | 471b1a873d63422008a6a00f94cedc1dd740a87a | docs: style fixes (#45458)
* docs: fix code field
* docs: add missing space | [
{
"path": "docs/api/structures/base-window-options.md",
"patch": "@@ -149,7 +149,7 @@ Possible values are:\n focus, keyboard or mouse events, but you can use `globalShortcut` to receive\n input sparingly.\n * The `panel` type enables the window to float on top of full-screened apps\n- by adding... | 2025-02-05T20:10:07 |
facebook/react | 1f0b03ced0d459129069d565cf5f8e5567881441 | 152bfe3769f87e29c8d68cb87fdb608d2483b7f1 | DevTools: fix host component filter option title (#32296)
Overlook that in https://github.com/facebook/react/pull/32086, because
of ternany, it is already string literals, so html entities names no
longer needed. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Settings/ComponentsSettings.js",
"patch": "@@ -478,8 +478,8 @@ export default function ComponentsSettings({\n <option value={ElementTypeForwardRef}>forward ref</option>\n <option value={ElementTypeHostCompon... | 2025-02-03T09:59:47 |
golang/go | 91ca80f970c2a20d1ed6603281c97e7e617b87e8 | d36e88f21f56dcf45fed2231fe28f948a31c936b | runtime/cgo: improve error messages after pointer panic
This CL improves the error messages after panics due to the
sharing of an unpinned Go pointer (or a pointer to an unpinned Go
pointer) between Go and C.
This occurs when it is:
1. returned from Go to C (through cgoCheckResult)
2. passed as argument to a C functi... | [
{
"path": "src/cmd/cgo/internal/testerrors/ptr_test.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"regexp\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync/atomic\"\n@@ -24,15 +25,16 @@ var tmp = flag.String(\"tmp\", \"\", \"use `dir` for temporary files and do no... | 2025-11-05T21:00:52 |
vercel/next.js | 1660d3966a99371a57b3d832522caa55b42bc189 | 5019e61d1cb592d9575985c9fb171641f0231feb | [CC] Fix hanging dynamic promise when abandoning render (#86690)
Fixes #86662
The bug was introduced in #85747, where we added
`RenderStage.Abandoned`. We forgot to update the logic that rejects
promises on abort, so if a render was abandoned (i.e. restarted due to a
cache miss), then promises waiting for the dynamic... | [
{
"path": "packages/next/src/server/app-render/staged-rendering.ts",
"patch": "@@ -40,7 +40,10 @@ export class StagedRenderingController {\n this.runtimeStagePromise.promise.catch(ignoreReject) // avoid unhandled rejections\n this.runtimeStagePromise.reject(reason)\n }\n- ... | 2025-12-02T14:11:15 |
rust-lang/rust | 7ec050ac609988a083b42d66b7ed33dc513b5597 | 05ac9d4da294072ed7518524cc8c66f4db6959be | Fix tests and tidy up wtf-8 failures
Co-authored-by: TKanX <124454788+TKanX@users.noreply.github.com> | [
{
"path": "library/core/src/wtf8.rs",
"patch": "@@ -487,6 +487,9 @@ unsafe fn slice_unchecked(s: &Wtf8, begin: usize, end: usize) -> &Wtf8 {\n #[inline(never)]\n fn slice_error_fail(s: &Wtf8, begin: usize, end: usize) -> ! {\n let len = s.len();\n+ if begin > len {\n+ panic!(\"start byte index... | 2026-03-11T02:49:18 |
nodejs/node | 54fa74fba921fa98644e153dcf561877a663883f | efd28a0ca24104287afdb6622454ca96e85c92de | doc: punctuation fix for Node-API versioning clarification
PR-URL: https://github.com/nodejs/node/pull/58599
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/n-api.md",
"patch": "@@ -261,7 +261,7 @@ For example v18.15.0 supports only Node-API version 8. ABI stability was\n achieved because 8 was a strict superset of all previous versions.\n \n As of version 9, while Node-API versions continue to be versioned\n-independently an add-on that ran ... | 2025-06-12T21:12:33 |
electron/electron | 471b1a873d63422008a6a00f94cedc1dd740a87a | aee8ea8b1071fcbe2cc33f4f423900d7009de604 | fix: fix typo in docs why-electron.md (#45437) | [
{
"path": "docs/why-electron.md",
"patch": "@@ -22,7 +22,7 @@ If you want to focus on building a great product without figuring out how you ca\n \n ### Reliability\n \n-Web technologies are the most-used foundation for user interfaces on the planet. The have been hardened accordingly. Modern computers have ... | 2025-02-05T15:26:47 |
vercel/next.js | 75cd5293fb6955a5fe3c36a1c29405bfe314f61c | 86f3bf1a6eecec990ba0984ea6ca5c5bd919c13c | Turbopack: fix fuzz command (#86732)
### What?
Fix the fuzz testing command | [
{
"path": "turbopack/crates/turbo-tasks-backend/fuzz/fuzz_targets/graph.rs",
"patch": "@@ -10,7 +10,8 @@ mod graph;\n \n // Run with:\n // cd turbopack/crates/turbo-tasks-backend\n-// cargo fuzz run fuzz_graph -- -timeout=3 -print_pcs=1 -print_funcs=999999 -print_final_stats=1\n+// cargo fuzz run fuzz_graph... | 2025-12-02T13:30:27 |
golang/go | 43b91e7abd1c3b84c919c97bca30480d2610f9ec | 48c7fa13c63761c8b52cbfac1f9eab062d475c0c | iter: fix a tiny doc comment bug
Use the right name for method Pos.Value in a sample doc comment in the package overview.
Fixes #76187.
Change-Id: Id1f5b0ca4ea39493b10140bc304c57c081c805ee
GitHub-Last-Rev: 7bf5d0774749111cd13e40700b31a5a83c288db9
GitHub-Pull-Request: golang/go#76195
Reviewed-on: https://go-review.go... | [
{
"path": "src/iter/iter.go",
"patch": "@@ -188,7 +188,7 @@ For example, a tree implementation might provide:\n \t// It is only valid during the yield call it is passed to.\n \ttype Pos[V any] struct { ... }\n \n-\t// Pos returns the value at the cursor.\n+\t// Value returns the value at the cursor.\n \tfun... | 2025-11-06T05:18:46 |
facebook/react | 152bfe3769f87e29c8d68cb87fdb608d2483b7f1 | 19ca800caa01eec2f5e65e547c67b11592bec8b0 | [compiler][rfc] Hacky retry pipeline for fire (#32164)
Hacky retry pipeline for when transforming `fire(...)` calls encounters
validation, todo, or memoization invariant bailouts. Would love feedback
on how we implement this to be extensible to other compiler
non-memoization features (e.g. inlineJSX)
Some observ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -162,7 +162,8 @@ function runWithEnvironment(\n if (\n !env.config.enablePreserveExistingManualUseMemo &&\n !env.config.disableMemoizationForDebugging &&\n- !env.config.enableChangeDetectionForDeb... | 2025-01-31T23:57:26 |
nodejs/node | bba07d7e1edace182894b517a903cb55fb4d5b2b | 708477bd8d68f3571b02bb311dccc3d892e447d1 | module: fix typescript import.meta.main
PR-URL: https://github.com/nodejs/node/pull/58661
Fixes: https://github.com/nodejs/node/issues/58660
Reviewed-By: Xuguang Mei <meixuguang@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Ethan Arrowoo... | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -593,17 +593,17 @@ translators.set('addon', function translateAddon(url, source, isMain) {\n });\n \n // Strategy for loading a commonjs TypeScript module\n-translators.set('commonjs-typescript', function(url, source) {\n+translators.set('com... | 2025-06-12T11:21:54 |
electron/electron | aee8ea8b1071fcbe2cc33f4f423900d7009de604 | 57cf4fc846786ca01432b755c7b037ecc31f1a43 | fix: WCO not working with some window configurations (#45422) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -701,6 +701,15 @@ void NativeWindowViews::Minimize() {\n }\n \n void NativeWindowViews::Restore() {\n+#if BUILDFLAG(IS_WIN)\n+ if (IsMaximized() && transparent()) {\n+ SetBounds(restore_bounds_, false);\n+ NotifyWindowRestore();\n+ Upd... | 2025-02-05T11:48:51 |
golang/go | f01a1841fd9aff9229b27e3e1d3b8b4ee349cbc3 | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 | cmd/compile: fix error message on loong64
Change-Id: I90428330b17ab9f93ae94a77cefc24464e225df5
Reviewed-on: https://go-review.googlesource.com/c/go/+/717700
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Meidan Li <l... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -692,7 +692,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t// vs\n \t\t\t// 16 instructions in the straightline code\n \t\t\t// Might as well use straightline code.\n-\t\t\tv.Fatalf(\"ZeroLoop size too small %d\", n)\n... | 2025-11-04T09:22:24 |
vercel/next.js | 86f3bf1a6eecec990ba0984ea6ca5c5bd919c13c | 653cf4af0c77184dde1c124cfd07a14a47e7166f | Turbopack: avoid snapshotting while continuously idle, fix spans (#86611)
### What?
While idle only snapshot once. Start snapshotting again when idle has been left.
Place persisting spans on top level.
Fix some missing spans. | [
{
"path": "crates/napi/src/next_api/project.rs",
"patch": "@@ -405,8 +405,14 @@ pub fn project_new(\n }\n let mut compress = Compression::None;\n if let Some(mut trace) = trace {\n+ let internal_dir = PathBuf::from(&options.root_path)\n+ .join(&options.project_path)\n+ ... | 2025-12-02T13:15:53 |
facebook/react | a657bc5dee29da313d2a03e7864b0665859bc7a8 | 9ff42a8798863c995523e284142b47e3cdfaee80 | build(eslint-plugin-react-hooks): add dev dependencies for typescript migration (#32279)
<!--
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": "compiler/packages/eslint-plugin-react-compiler/package.json",
"patch": "@@ -23,7 +23,7 @@\n \"@babel/preset-env\": \"^7.22.4\",\n \"@babel/preset-typescript\": \"^7.18.6\",\n \"@babel/types\": \"^7.19.0\",\n- \"@types/eslint\": \"^8.56.6\",\n+ \"@types/eslint\": \"^8.56.12\",\n ... | 2025-01-31T19:32:23 |
nodejs/node | 54574432109f353dcb936343d732f406584bce51 | 3a7f8efe60eedeac4d03489521a6acb5249e480e | lib,src: support DOMException ser-des
Added serialization and deserialization support for `DOMException`.
Co-Authored-By: jazelly <xzha4350@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/58649
Fixes: https://github.com/nodejs/node/issues/49181
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ethan ... | [
{
"path": "lib/eslint.config_partial.mjs",
"patch": "@@ -525,4 +525,16 @@ export default [\n ],\n },\n },\n+ {\n+ files: [\n+ 'lib/internal/per_context/domexception.js',\n+ ],\n+ languageOptions: {\n+ globals: {\n+ // Parameters passed to internal modules.\n+ pr... | 2025-06-11T16:11:18 |
electron/electron | 57cf4fc846786ca01432b755c7b037ecc31f1a43 | 9fe12cd01b9ce889b891643d63e49e8e2a430373 | fix: `legacyMainResolve` respecting permission model (#45421)
fix: legacyMainResolve respecting permission model | [
{
"path": "patches/node/fix_revert_src_lb_reducing_c_calls_of_esm_legacy_main_resolve.patch",
"patch": "@@ -15,10 +15,10 @@ to recognize asar files.\n This reverts commit 9cf2e1f55b8446a7cde23699d00a3be73aa0c8f1.\n \n diff --git a/lib/internal/modules/esm/resolve.js b/lib/internal/modules/esm/resolve.js\n-i... | 2025-02-05T11:48:34 |
vercel/next.js | 653cf4af0c77184dde1c124cfd07a14a47e7166f | b8b62f1d4d0f0ff369fe54397534b927b6c460ac | fix(next-custom-transforms): preserve all declarators in multi-declarator export statements (#86552) | [
{
"path": "crates/next-custom-transforms/src/transforms/next_ssg.rs",
"patch": "@@ -144,9 +144,11 @@ impl VisitMut for Analyzer<'_> {\n return;\n }\n \n- if let Pat::Ident(id) = &d.decls[0].name {\n- if !SSG_EXPORTS.contains(&&*id.id.sym) {\n- ... | 2025-12-02T12:51:12 |
golang/go | 8cf7a0b4c956aad5a8b98efde8ea6b7cde173902 | 2dd7e94e163f172472273b81846e6e3add412bc6 | cmd/link: support weak binding on darwin
Symbols loaded from host files can have the N_WEAK_REF bit set,
which is used to instruct the loader to not fail if that symbol
can't be resolved.
The Go internal linker should honor this information by setting the
BIND_SYMBOL_FLAGS_WEAK_IMPORT flag in the corresponding bind t... | [
{
"path": "src/cmd/cgo/internal/test/cgo_darwin_test.go",
"patch": "@@ -0,0 +1,11 @@\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+//go:build cgo && darwin\n+\n+package cgotest\n+\n+im... | 2025-10-22T14:33:18 |
rust-lang/rust | 05ac9d4da294072ed7518524cc8c66f4db6959be | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | Remove string content from panics
String content can be useful for debugging panics, particularly when you
are working on a small codebase where you can infer more about the path
taken through your program based on the content of the string.
In production deployments that upload crashes for centralized debugging,
str... | [
{
"path": "library/alloctests/tests/str.rs",
"patch": "@@ -612,14 +612,14 @@ mod slice_index {\n data: \"abcdef\";\n good: data[4..4] == \"\";\n bad: data[4..3];\n- message: \"begin > end (4 > 3)\";\n+ message: \"byte range starts at 4 but ends at 3\... | 2026-03-10T21:26:20 |
facebook/react | 87c03a0a134b19ffbda6bbef4b12202f4f5a4347 | 221f3002caa2314cba0a62950da6fb92b453d1d0 | Fix typo in dangerfile.js which results in an unreachable code path… (#32277)
## Summary
Fix typo in dangerfile.js which results in an unreachable code path
which ought to be hit when there is no matching base artifact during
DangerCI automated code review.
See:
https://github.com/facebook/react/blob/221f3002caa2314... | [
{
"path": "dangerfile.js",
"patch": "@@ -70,7 +70,7 @@ const percentFormatter = new Intl.NumberFormat('en', {\n });\n \n function change(decimal) {\n- if (Number === Infinity) {\n+ if (decimal === Infinity) {\n return 'New file';\n }\n if (decimal === -1) {",
"additions": 1,
"deletions": 1... | 2025-01-31T06:44:02 |
vercel/next.js | b8b62f1d4d0f0ff369fe54397534b927b6c460ac | 50d459e688c771293af1d33636825ebad67d03b7 | [test] Improve app-basepath assertion error (#86725)
To make it print out what the second request is when this flake happens:
```
● app dir - basepath › should only make a single RSC call to the current page (/base/refresh?foo=bar)
expect(received).toBe(expected) // Object.is equality
Expected: 1
Rece... | [
{
"path": "test/e2e/app-dir/app-basepath/index.test.ts",
"patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { check, retry } from 'next-test-utils'\n+import { retry } from 'next-test-utils'\n import type { Request, Response } from 'playwright'\n \n describe('app dir - basepath', ... | 2025-12-02T10:58:17 |
nodejs/node | 977b5ac7ddc7ab0f866c39056f3e28e4b2e82645 | 85e8cc6ff3ca848dd07e9d32fa3f9ee941cf5f79 | http2: fix DEP0194 message
PR-URL: https://github.com/nodejs/node/pull/58669
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Tim Perry <pimterry@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com> | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -753,7 +753,7 @@ function onGoawayData(code, lastStreamID, buf) {\n \n // TODO(aduh95): remove this in future semver-major\n const deprecateWeight = deprecateProperty('weight',\n- 'Priority signaling has been depre... | 2025-06-11T13:47:31 |
rust-lang/rust | ed25d008a0e3c848d5c9d3724002cae154d44843 | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | Tweak E0599 note
When not finding a method for a type, but finding it for a single other impl, special case the output to emit a single message instead of a list.
```
error[E0599]: no associated item named `C` found for struct `Fail<i32, u32>` in the current scope
--> $DIR/wrong-projection-self-ty-invalid-bivariant... | [
{
"path": "compiler/rustc_hir_typeck/src/method/suggest.rs",
"patch": "@@ -14,7 +14,7 @@ use rustc_data_structures::sorted_map::SortedMap;\n use rustc_data_structures::unord::UnordSet;\n use rustc_errors::codes::*;\n use rustc_errors::{\n- Applicability, Diag, MultiSpan, StashKey, listify, pluralize, str... | 2026-03-11T00:43:04 |
electron/electron | 9fe12cd01b9ce889b891643d63e49e8e2a430373 | 6486ce8191d4d02ed90ea8c1e034c3b57ae32cb0 | fix: handle exclude aliasing in InclusionStatusToString() (#45454)
* refactor: use MakeFixedFlatMap() in InclusionStatusToString()
* fix: add log message for EXCLUDE_ALIASING
refactor: add static_assert() to ensure our messages stay
in sync with the CookieInclusion reasons in net/cookies/ | [
{
"path": "shell/browser/api/electron_api_cookies.cc",
"patch": "@@ -4,10 +4,12 @@\n \n #include \"shell/browser/api/electron_api_cookies.h\"\n \n+#include <sstream>\n #include <string>\n #include <string_view>\n #include <utility>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"base/time/ti... | 2025-02-05T11:48:11 |
golang/go | 2dd7e94e163f172472273b81846e6e3add412bc6 | 28f1ad5782d80a0a3f95b004c6a822003fd0b1a1 | cmd/go: use go.dev instead of golang.org in flag errors
Also add the URL to the one possible error that didn't have it.
It looks like CL 93836 just missed the third error case when
adding the URL.
Change-Id: I837f8a730b25adb42909c9dfbde0dad2f664fec5
Reviewed-on: https://go-review.googlesource.com/c/go/+/718220
Review... | [
{
"path": "src/cmd/go/internal/work/security.go",
"patch": "@@ -375,13 +375,13 @@ Args:\n \t\t\t\t}\n \n \t\t\t\tif i+1 < len(list) {\n-\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s: %s %s (see https://golang.org/s/invalidflag)\", source, arg, list[i+1])\n+\t\t\t\t\treturn fmt.Errorf(\"invalid flag in %s... | 2025-11-05T20:02:52 |
facebook/react | 221f3002caa2314cba0a62950da6fb92b453d1d0 | 55b54b0d638a6ae5c7a5ab6dd4fee732cfbc47ad | chore[DevTools]: make clipboardWrite optional for chromium (#32262)
Addresses https://github.com/facebook/react/issues/32244.
### Chromium
We will use
[chrome.permissions](https://developer.chrome.com/docs/extensions/reference/api/permissions)
for checking / requesting `clipboardWrite` permission before copying
... | [
{
"path": ".eslintrc.js",
"patch": "@@ -500,13 +500,15 @@ module.exports = {\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react-devtools-shared/src/backend/console.js',\n 'packages/react-devtools-shared/src/backend/shared/DevToolsComponentStackFrame.js',\n+ 'pac... | 2025-01-30T20:08:17 |
nodejs/node | 8c17ceb38fd9bc550f6e5fedb25ad80120396aba | ccf105df2a0a528460abe16e5cba571e0c7e4f3c | module: allow cycles in require() in the CJS handling in ESM loader
When --import is used, the ESM loader is used to handle even pure
CJS entry points, and it can run into CJS module facades in the
evaluating state when the parent CJS module is being evaluated.
In this case it should be allowed, since the ESM <-> CJS ... | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -26,6 +26,7 @@ const {\n ModuleWrap,\n kErrored,\n kEvaluated,\n+ kEvaluating,\n kEvaluationPhase,\n kInstantiated,\n kUninstantiated,\n@@ -338,8 +339,14 @@ class ModuleJob extends ModuleJobBase {\n return { __proto__: nul... | 2025-06-11T09:33:16 |
vercel/next.js | 9d792e35f9f7479a4ec9878e8858ebd9577d3870 | 2cd70dfede8bcb1b72798804d92f9653edde61e6 | Cover org package external in externals-transitive test (#86691)
<!-- 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... | [
{
"path": "test/e2e/externals-transitive/dep-b/index.js",
"patch": "@@ -1,4 +1,5 @@\n import lodash from 'lodash'\n-import pkg from 'lodash/package.json'\n+import lodashPkg from 'lodash/package.json'\n+import globalPkg from '@storybook/global/package.json'\n \n-export default [lodash.VERSION, pkg.version]\n... | 2025-12-01T22:18:30 |
rust-lang/rust | 73fe905f3c43f8829c36b04eb52ba534e448fa53 | 0c68443b0a0469e4211acca7e7b06e14f256ada8 | Detect inherent method behind deref being shadowed by trait method
```
error[E0277]: the trait bound `Rc<RefCell<S>>: Borrow<S>` is not satisfied
--> $DIR/shadowed-intrinsic-method-deref.rs:16:22
|
LL | let sb : &S = &s.borrow();
| ^^^^^^ the trait `Borrow<S>` is not implemented for `R... | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs",
"patch": "@@ -3178,6 +3178,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n self.suggest_tuple_wrapping(err, root_obligation, obligation);\n }\n+ self.suggest_shadowed_inherent_method(err,... | 2026-03-10T21:53:03 |
golang/go | 28f1ad5782d80a0a3f95b004c6a822003fd0b1a1 | daa220a1c952b50a05a3a9411f122689247881b8 | cmd/go: fix TestScript/govcs
On my Mac, TestScript/govcs was failing because hg prints a URL
using 1.0.0.127.in-addr.arpa instead of 127.0.0.1, and my Mac
cannot resolve that name back into an IP address.
% host 127.0.0.1
1.0.0.127.in-addr.arpa domain name pointer localhost.
% host 1.0.0.127.in-addr.arpa
%
Change-Id... | [
{
"path": "src/cmd/go/internal/vcweb/hg.go",
"patch": "@@ -109,6 +109,13 @@ func (h *hgHandler) Handler(dir string, env []string, logger *log.Logger) (http.\n \t\t\twg.Done()\n \t\t}()\n \n+\t\t// On some systems,\n+\t\t// hg serve --address=localhost --print-url prints in-addr.arpa hostnames\n+\t\t// even ... | 2025-11-05T19:46:35 |
facebook/react | 55b54b0d638a6ae5c7a5ab6dd4fee732cfbc47ad | 4b3728f05efbab9624e981339d8a0992a58f9a41 | [ci] Only install chromium for flight fixtures (#32275)
I noticed we only use chromium in fixtures/flight, so let's specifically
only install that browser in ci. | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -476,9 +476,7 @@ jobs:\n fi\n - name: Playwright install deps\n working-directory: fixtures/flight\n- run: |\n- npx playwright install\n- sudo npx playwright install-deps\n+ run: np... | 2025-01-30T19:13:45 |
electron/electron | 6486ce8191d4d02ed90ea8c1e034c3b57ae32cb0 | bec6ddda7035be6aa77f9f4c9523a06bfc49470d | build: remove debugger agent timeout patch (#45457) | [
{
"path": "patches/node/.patches",
"patch": "@@ -8,7 +8,6 @@ refactor_allow_embedder_overriding_of_internal_fs_calls.patch\n chore_allow_the_node_entrypoint_to_be_a_builtin_module.patch\n fix_handle_boringssl_and_openssl_incompatibilities.patch\n fix_crypto_tests_to_run_with_bssl.patch\n-fix_account_for_deb... | 2025-02-05T11:47:54 |
vercel/next.js | 2307d46f511d02f48d4b8f93713c4bc087c0e5ff | 73764165b94ee60560d4696c2341319a7fa35813 | docs: update prefix two-digit number in routing section (#77758)
## Description
The current [routing
documents](https://github.com/vercel/next.js/tree/canary/docs/01-app/03-building-your-application/01-routing)
are missing `01` and `02` prefix.
This PR changes the numbering of them and update [contribution-guide
doc... | [
{
"path": "docs/04-community/01-contribution-guide.mdx",
"patch": "@@ -79,17 +79,17 @@ For example, in the [functions API Reference](/docs/app/api-reference/functions)\n └── ...\n ```\n \n-But, in the [routing section](/docs/app), the files are prefixed with a two-digit number, sorted in the order developer... | 2025-12-01T10:46:38 |
nodejs/node | 12508853321ff00ebd2eec8070c5aa1342e8c7fb | bb991716c62bb991240361929931fcc1c9cc8229 | test: update WPT for es-exceptions to 2f96fa1996
PR-URL: https://github.com/nodejs/node/pull/58640
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> | [
{
"path": "test/fixtures/wpt/README.md",
"patch": "@@ -34,7 +34,7 @@ Last update:\n - wasm/jsapi: https://github.com/web-platform-tests/wpt/tree/cde25e7e3c/wasm/jsapi\n - wasm/webapi: https://github.com/web-platform-tests/wpt/tree/fd1b23eeaa/wasm/webapi\n - WebCryptoAPI: https://github.com/web-platform-test... | 2025-06-11T08:55:52 |
golang/go | daa220a1c952b50a05a3a9411f122689247881b8 | 3ae9e950021d79134146a751531f151a1f02d9bd | cmd/go: silence TLS handshake errors during test
We don't need to see messages like "TLS handshake error: EOF"
during go test.
Change-Id: If6bf51e655119914f337b9e61448c99485af34f2
Reviewed-on: https://go-review.googlesource.com/c/go/+/718183
Reviewed-by: Michael Matloob <matloob@google.com>
LUCI-TryBot-Result: Go LUC... | [
{
"path": "src/cmd/go/internal/vcweb/vcstest/vcstest.go",
"patch": "@@ -7,6 +7,7 @@\n package vcstest\n \n import (\n+\t\"bytes\"\n \t\"cmd/go/internal/vcs\"\n \t\"cmd/go/internal/vcweb\"\n \t\"cmd/go/internal/web/intercept\"\n@@ -70,7 +71,9 @@ func NewServer() (srv *Server, err error) {\n \t\t}\n \t}()\n \... | 2025-11-05T19:45:36 |
facebook/react | 4b3728f05efbab9624e981339d8a0992a58f9a41 | f02ba2fcc5de5c280d5c79f52302b04daaaf1e23 | [Fiber] Track Appearing Named ViewTransition in the accumulateSuspenseyCommit Phase (#32254)
When a named ViewTransition component unmounts in one place and mounts
in a different place we need to match these up so we know a pair has
been created. Since the unmounts are tracked in the snapshot phase we
need some way to... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -97,6 +97,7 @@ import {\n Passive,\n DidDefer,\n ViewTransitionNamedStatic,\n+ ViewTransitionNamedMount,\n LayoutStatic,\n } from './ReactFiberFlags';\n import {\n@@ -266,7 +267,6 @@ import {\n markSkippedUpdateLanes,\... | 2025-01-30T17:13:36 |
vercel/next.js | 73764165b94ee60560d4696c2341319a7fa35813 | 4390c7b4ec28cbcfeb9ea6da519afdd46bd6a1c7 | Turbopack: align chunk loading error name (#86593)
- Set `error.name` just like Webpack does
- Add some tests
<img width="1854" height="451" alt="Bildschirmfoto 2025-11-28 um 10 44 06" src="https://github.com/user-attachments/assets/8cadd60e-2a7f-4715-9c39-66453fe400f4" />
<img width="1865" height="564" alt="... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -910,10 +910,12 @@ jobs:\n export IS_WEBPACK_TEST=1\n \n BROWSER_NAME=firefox node run-tests.js \\\n- test/production/pages-dir/production/test/index.test.ts\n+ test/production/pages-dir/production/test/index.te... | 2025-12-01T10:11:52 |
nodejs/node | 58e1cba200df9c1c70221d67d6038a7e7290b29c | 238af6a8b546e69d2ebaf2cc220563da2dfd6b76 | test: deflake async-hooks/test-improper-order on AIX
PR-URL: https://github.com/nodejs/node/pull/58567
Fixes: https://github.com/nodejs/node/issues/58562
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Joy... | [
{
"path": "test/async-hooks/test-improper-order.js",
"patch": "@@ -51,8 +51,15 @@ if (process.argv[2] === 'child') {\n child.stderr.on('data', (d) => { errData = Buffer.concat([ errData, d ]); });\n child.stdout.on('data', (d) => { outData = Buffer.concat([ outData, d ]); });\n \n- child.on('close', co... | 2025-06-03T11:07:24 |
electron/electron | bec6ddda7035be6aa77f9f4c9523a06bfc49470d | e9d5eeb118e4ff224508bfec6b61f30239bb804d | feat: route deprecated sync clipboard read through permission checks (#45377)
* feat: route deprecated clipboard commands through permission checks
* docs: address review feedback
* fix: enable checks for child windows | [
{
"path": "BUILD.gn",
"patch": "@@ -441,6 +441,7 @@ source_set(\"electron_lib\") {\n \"chromium_src:chrome_spellchecker\",\n \"shell/common:mojo\",\n \"shell/common:plugin\",\n+ \"shell/common:web_contents_utility\",\n \"shell/services/node/public/mojom\",\n \"//base:base_static\",\n ... | 2025-02-05T06:13:29 |
golang/go | 3ae9e950021d79134146a751531f151a1f02d9bd | a494a26bc2d0ad52e0e265c2a1b9a3a964118699 | cmd/go: fix TestCgoPkgConfig on darwin with pkg-config installed
Most darwin systems don't have pkg-config installed and skip this test.
(And it doesn't run in all.bash because it is skipped during -short.)
But for those systems that have pkg-config and run the non-short tests,
it fails because the code was not writi... | [
{
"path": "src/cmd/go/go_test.go",
"patch": "@@ -1506,15 +1506,17 @@ func main() {\n \ttg.setenv(\"PKG_CONFIG_PATH\", tg.path(\".\"))\n \ttg.run(\"run\", tg.path(\"foo.go\"))\n \n-\tif runtime.GOOS != \"darwin\" { // darwin doesn't like these ldflags\n-\t\t// test for ldflags\n-\t\ttg.tempFile(\"bar.pc\", `... | 2025-11-05T18:42:44 |
facebook/react | ddc26c9db16a7be2f05eacc6f0228f42eeff3803 | dc44bca85b19481267ae5f7c0c271f8a5a126654 | Swap to Eli's new GitHub username in Maintainers file (#32237)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull ... | [
{
"path": "MAINTAINERS",
"patch": "@@ -20,6 +20,6 @@ rickhanlonii\n sebmarkbage\n sethwebster\n sophiebits\n-TheSavior\n+elicwhite\n tyao1\n yuzhi",
"additions": 1,
"deletions": 1
}
] | 2025-01-27T18:10:40 |
vercel/next.js | 4390c7b4ec28cbcfeb9ea6da519afdd46bd6a1c7 | 3d30f407c4b5cad84486836d8a9fc8fa90c266f1 | Turbopack: use tracing context for config watching (#86576)
It was using the `evaluate_context` to watch the config (and transitively imported files) for changes.
That was incorrect for various reasons though: any errors during that caused the build to fail, and it didn't actually collect all referenced files.
Turns ... | [
{
"path": "turbopack/crates/turbopack-node/src/transforms/postcss.rs",
"patch": "@@ -103,6 +103,7 @@ fn postcss_configs() -> Vc<Vec<RcStr>> {\n #[turbo_tasks::value]\n pub struct PostCssTransform {\n evaluate_context: ResolvedVc<Box<dyn AssetContext>>,\n+ config_tracing_context: ResolvedVc<Box<dyn As... | 2025-12-01T09:55:11 |
electron/electron | e9d5eeb118e4ff224508bfec6b61f30239bb804d | c147e4fa81161299688045a53e8909023f9a2e84 | build: try removing embedder exception patch (#45429) | [
{
"path": "patches/node/.patches",
"patch": "@@ -20,7 +20,6 @@ test_formally_mark_some_tests_as_flaky.patch\n fix_do_not_resolve_electron_entrypoints.patch\n ci_ensure_node_tests_set_electron_run_as_node.patch\n fix_assert_module_in_the_renderer_process.patch\n-fix_capture_embedder_exceptions_before_enterin... | 2025-02-04T18:39:20 |
golang/go | a494a26bc2d0ad52e0e265c2a1b9a3a964118699 | a8fb94969cb98efd84fa4f6fdccc14a5866828be | cmd/go: fix TestScript/vet_flags
Test caching can cause an incorrect test failure when the vet step result
is reused, leading to not printing a vet command line at all.
Avoid that with -a (we are also using -n so no real work is done).
Fixes one failing case in 'go test cmd/go' on my Mac.
Change-Id: I028284436b1ecc7... | [
{
"path": "src/cmd/go/testdata/script/vet_flags.txt",
"patch": "@@ -20,7 +20,8 @@ stderr '-unsafeptr'\n ! stderr '-unsafeptr=false'\n \n # -unreachable is disabled during test but on during plain vet.\n-go test -n runtime\n+# The -a makes sure the vet result is not cached, or else we won't print the command... | 2025-11-05T18:49:48 |
nodejs/node | fe4aa9c502de24daea4b167c19dae8c9842ca9a0 | 905a722df3b757d969d33641a1a08c95f98faab6 | 2025-06-09, Version 24.2.0 (Current)
Notable changes:
doc:
* add Filip Skokan to TSC (Rafael Gonzaga) https://github.com/nodejs/node/pull/58499
* deprecate `util.isNativeError` in favor of `Error.isError` (Miguel Marcondes Filho) https://github.com/nodejs/node/pull/58262
* deprecate passing an empty string to `... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.1.0\">24.1.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V24.md#24.2.0\">24.2.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V24.md#24.1.0\">2... | 2025-06-08T18:03:03 |
facebook/react | dc44bca85b19481267ae5f7c0c271f8a5a126654 | 9eabb37338e6bea18441dec58a4284fe00ee09ae | fix(react-compiler-healthcheck): Add shebang to banner (#32225)
## Summary
PR https://github.com/facebook/react/pull/31963 migrated the bundler
from Rollup to esbuild, but the `react-compiler-healthcheck` script
lacks a shebang, leading to issues with `npx` not being able to execute
it.
https://github.com/facebook/... | [
{
"path": "compiler/packages/react-compiler-healthcheck/scripts/build.js",
"patch": "@@ -36,7 +36,9 @@ const config = {\n format: 'cjs',\n platform: 'node',\n banner: {\n- js: `/**\n+ js: `#!/usr/bin/env node\n+\n+/**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source ... | 2025-01-27T16:59:25 |
electron/electron | c147e4fa81161299688045a53e8909023f9a2e84 | 1d27a27813706af17e2a0b796fc8604a2f8491da | build: add win toolchain for release builds (#45380)
* build: add win toolchain for release builds
* build: fix installed_software.json script
* chore: run pwsh script within src
* build: fixup uploader arch | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -143,6 +143,25 @@ runs:\n run: |\n cd src\n e build --target electron:node_headers\n+ - name: Create installed_software.json ${{ inputs.step-suffix }}\n+ shell: powershell\n+ if: ${{ inputs.is-release == '... | 2025-02-04T06:06:01 |
nodejs/node | 905a722df3b757d969d33641a1a08c95f98faab6 | 3aaa2ebe19712b0e77ea75793f0de08094997974 | test_runner: support object property mocking
PR-URL: https://github.com/nodejs/node/pull/58438
Fixes: https://github.com/nodejs/node/issues/58322
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/api/test.md",
"patch": "@@ -2048,6 +2048,87 @@ added:\n \n Resets the implementation of the mock module.\n \n+## Class: `MockPropertyContext`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+The `MockPropertyContext` class is used to inspect or manipulate the behavior\n+of property mocks created ... | 2025-06-09T17:57:07 |
golang/go | a8fb94969cb98efd84fa4f6fdccc14a5866828be | 04f05219c4f78b0f932485d2544b8c7193c04bb0 | cmd/go: fix TestScript/tool_build_as_needed
This test assumes that changing GOOS/GOARCH results in an
unrunnable binary, but that's not true if the user has
go_GOOS_GOARCH_exec programs in their path (like I do).
This test was timing out waiting to create a gomote to run
a windows/amd64 binary.
Rewrite the test not t... | [
{
"path": "src/cmd/go/testdata/script/tool_build_as_needed.txt",
"patch": "@@ -40,13 +40,15 @@ rm $TOOLDIR/test2json$GOEXE\n go tool -n test2json\n ! stdout $NEWTOOLDIR${/}test2json$GOEXE\n # Set GOOS/GOARCH to different values than host GOOS/GOARCH.\n-env GOOS=windows\n-[GOOS:windows] env GOOS=linux\n-env ... | 2025-11-05T19:05:45 |
facebook/react | a6ce56d9a9162c295ef0086762b76506534de201 | 5269823927e1ba0ea14a64478b28c02ba5f0de3e | [ci] Fix typo (#32217)
yml was a mistake | [
{
"path": ".github/workflows/shared_check_maintainer.yml",
"patch": "@@ -38,7 +38,7 @@ jobs:\n isRemote = isRemote === 'true';\n }\n if (typeof isRemote !== 'boolean') {\n- throw new Error(`Invalid `isRemote` input. Expected a boolean, got: ${isRemote}`);\n... | 2025-01-24T20:06:15 |
electron/electron | d3bead5e0edb3df5205675e27e0a8fc9dbd6fd74 | 9f1bb531ba47e7011dce88e09f047c3d116d76d7 | docs: mention C++20 requirement in breaking changes document (#45413)
* docs: mention C++20 requirement in breaking changes document
* chore: fix linter issue | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -145,6 +145,16 @@ macOS 10.15 (Catalina) is no longer supported by [Chromium](https://chromium-rev\n Older versions of Electron will continue to run on Catalina, but macOS 11 (Big Sur)\n or later will be required to run Electron v33.0.0 and higher.\n \n+###... | 2025-02-03T21:19:26 |
nodejs/node | 3aaa2ebe19712b0e77ea75793f0de08094997974 | 66632648ba0d014eeb75845e322371718b0e4000 | url: move bad port deprecation in legacy url to end-of-life
Calling `url.parse()` with a URL that has a bad port
will now throw an error instead of emitting a deprecation
warning. It's been deprecated for ~ 3 years now.
PR-URL: https://github.com/nodejs/node/pull/58617
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
R... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3548,6 +3548,9 @@ issued for `url.parse()` vulnerabilities.\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/58617\n+ description: End-of-Life.\n - version:\n - v20.0.0\n pr-url: https://githu... | 2025-06-07T15:01:15 |
golang/go | 9f3a108ee0d2f08b4994c4201e54e5a53acbc216 | 0e1bd8b5f17e337df0ffb57af03419b96c695fe4 | os: ignore O_TRUNC errors on named pipes and terminal devices on Windows
Prior to Go 1.24, os.OpenFile used to support O_TRUNC on named pipes and
terminal devices, even when the truncation was really ignored. This
behavior was consistent with Unix semantics.
CL 618836 changed the implementation of os.OpenFile on Wind... | [
{
"path": "src/internal/syscall/windows/at_windows.go",
"patch": "@@ -131,6 +131,14 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \n \tif flag&syscall.O_TRUNC != 0 {\n \t\terr = syscall.Ftruncate(h, 0)\n+\t\tif err == ERROR_INVALID_PARAMETER {\n+\t\t\t// ERROR_INVALID... | 2025-10-30T11:36:42 |
facebook/react | de1eaa2655ee29933425695ae0af756bf6713147 | ae9017ceabb2a36a04c249ad5342e0b1af3e1a54 | Fix:- Improve HOC support and state preservation in React Refresh (#30660)
## Summary
This fixes #30659 , the issue was how the state was preserved and needed
special cases for the forward and memo, have also added tests related to
the same.
## How did you test this change?
`yarn test packages/react-refresh/s... | [
{
"path": "packages/react-refresh/src/ReactFreshRuntime.js",
"patch": "@@ -146,6 +146,21 @@ function canPreserveStateBetween(prevType: any, nextType: any) {\n if (isReactClass(prevType) || isReactClass(nextType)) {\n return false;\n }\n+\n+ if (typeof prevType !== typeof nextType) {\n+ return fa... | 2025-01-24T11:48:20 |
nodejs/node | 60155daf8da24a93987a89eeaad5c0335107cdeb | 3b111eb3f592534a972700c1b358c7810777399e | doc: deprecate utilisNativeError in favor of ErrorisError
PR-URL: https://github.com/nodejs/node/pull/58262
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jordan Harband <ljharb@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-B... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -4016,6 +4016,20 @@ To make [`child_process.exec`][] invoke the default shell, either omit the\n `shell` option, or set it to a nullish value. If the intention is not to invoke\n a shell, use [`child_process.execFile`][] instead.\n \n+### DEP0197: `util.type... | 2025-06-08T03:46:12 |
electron/electron | e7fa5c709c555bbe248bc98b50a14b5cfa9ea1d9 | 7a1d410e0a685dec042266ed106127f2229d19e5 | fix: incorrect WCO tooltip in RTL (#45405) | [
{
"path": "shell/browser/ui/views/win_caption_button_container.cc",
"patch": "@@ -39,7 +39,8 @@ std::unique_ptr<WinCaptionButton> CreateCaptionButton(\n }\n \n bool HitTestCaptionButton(WinCaptionButton* button, const gfx::Point& point) {\n- return button && button->GetVisible() && button->bounds().Contain... | 2025-02-03T09:50:50 |
facebook/react | a0b91fbd650f9398cca12fcda0c426c434eeb6d8 | b83090fca2d96283a5c6153abb65eaa5cc81c9ba | [compiler][ez] Fix main (bad rebase / amend for #32095) (#32160)
See title: this fixes test cases broken by
https://github.com/facebook/react/pull/32095 adding instead of moving
new test fixtures | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts",
"patch": "@@ -569,7 +569,7 @@ addObject(BUILTIN_SHAPES, BuiltInMixedReadonlyId, [\n 'flatMap',\n addFunction(BUILTIN_SHAPES, [], {\n positionalParams: [],\n- restParam: Effect.Read,\n+ restParam: Effect... | 2025-01-22T21:21:53 |
vercel/next.js | a51a2e4c2688c48b856825f807e369f2e1364b09 | cf480fc1c110945c69fa0a33bc2ae4f356a8e01e | [turbopack] Support traversing the graph in reverse order (#86427)
This makes certain aggregations trivial since we are are guaranteed to only traverse relevant edges.
Use it to fix a bug in the async module identification logic. Previously we would aggregate async cycles after propagating 'asyncness' through the DF... | [
{
"path": "contributing/core/testing.md",
"patch": "@@ -103,6 +103,19 @@ we attempt to capture traces of the playwright run to make debugging the failure\n A test-trace artifact should be uploaded after the workflow completes which can be downloaded, unzipped,\n and then inspected with `pnpm playwright show... | 2025-11-29T17:51:54 |
golang/go | a5fe6791d79347d4c28af4b475b679ce7a726a28 | a7d174ccaada72b836c1c535f056d3fff5b2d528 | internal/syscall/windows: fix ReOpenFile sentinel error value
ReOpenFile is documented to return INVALID_HANDLE_VALUE on error,
but the previous definition was checking for 0 instead.
Change-Id: Idec5e75e40b9f6c409e068d63a9b606781e80a46
Reviewed-on: https://go-review.googlesource.com/c/go/+/717320
Auto-Submit: Quim M... | [
{
"path": "src/internal/syscall/windows/syscall_windows.go",
"patch": "@@ -531,7 +531,7 @@ const (\n //sys\tGetOverlappedResult(handle syscall.Handle, overlapped *syscall.Overlapped, done *uint32, wait bool) (err error)\n //sys\tCreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint3... | 2025-11-03T15:29:06 |
electron/electron | 7a1d410e0a685dec042266ed106127f2229d19e5 | e2a7981dd3f99ff7e98b790de4acae586a0d1e25 | fix: default path not working on KDE Linux (#45402) | [
{
"path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch",
"patch": "@@ -260,10 +260,18 @@ index 61683d0eddb04c494ca5e650e7d556b44968ec49..5492456a9138b250e97a5479838bb443\n \n } // namespace ui\n diff --git a/ui/shell_dialogs/select_file_dialog_linux_kde.cc b/ui/sh... | 2025-02-03T08:49:48 |
nodejs/node | d79d550657128894e428cf524942e1698f05bcf2 | 3c351c272fcae369434b3cc0cc58284eb6c02279 | deps: use proper C standard when building libuv
Upstream libuv commits:
https://github.com/libuv/libuv/commit/bb706f5fe71827f667f0bce532e95ce0698a498d
https://github.com/libuv/libuv/commit/018363a163e8901ac2b90100ee436d9472847ffa
libuv was updated to 1.51.0 in 0315283cbdb7745c7e35bb49ac48b0ebcadcb228.
v1.51.0 was the... | [
{
"path": "deps/uv/uv.gyp",
"patch": "@@ -190,7 +190,7 @@\n '-Wno-unused-parameter',\n '-Wstrict-prototypes',\n ],\n- 'OTHER_CFLAGS': [ '-g', '--std=gnu89' ],\n+ 'OTHER_CFLAGS': [ '-g', '--std=gnu11' ],\n },\n 'conditions': [\n [ 'OS==\"win\"', {... | 2025-06-07T15:45:06 |
facebook/react | b83090fca2d96283a5c6153abb65eaa5cc81c9ba | deba48a72795d1332fe1df1159fc6b73566667fe | [compiler] Fix invalid Array.map type (#32095)
See test fixture
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32095).
* #32099
* #32104
* #32098
* #32097
* #32096
* __->__ #32095
* #32094... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts",
"patch": "@@ -549,8 +549,16 @@ addObject(BUILTIN_SHAPES, BuiltInMixedReadonlyId, [\n [\n 'map',\n addFunction(BUILTIN_SHAPES, [], {\n+ /**\n+ * Note `map`'s arguments are annotated as Effect.ConditionallyM... | 2025-01-22T20:02:51 |
vercel/next.js | 5d7c41a47dd49a7ae73a35f28d578eec9f5c42aa | 4a8eeab2fc61247132c95812a9ad2a7befc34979 | [Cache Components] Ensure cache misses always cause a restart in dev (#86583)
This PR works around a problem in the restart-on-cache-miss rendering
flow where short-lived caches wouldn't be considered dynamic if they
managed to fill microtaskily.
The problem is that:
1. If a cache fills microtaskily, it won't regist... | [
{
"path": "packages/next/src/server/use-cache/use-cache-wrapper.ts",
"patch": "@@ -691,9 +691,23 @@ async function generateCacheEntryImpl(\n stream = prelude\n }\n break\n+ case 'request':\n+ // If we're filling caches for a staged render, make sure that\n+ // it takes at le... | 2025-11-28T12:41:49 |
golang/go | c7ccbddf22884f54885fd23143d1b2087ab6e53c | 75b2bb1d1a62e69763aea6761b5be4b9c69e0214 | cmd/compile/internal/ssa: more aggressive on dead auto elim
Propagate "unread" across OpMoves. If the addr of this auto is only used
by an OpMove as its source arg, and the OpMove's target arg is the addr
of another auto. If the 2nd auto can be eliminated, this one can also be
eliminated.
This CL eliminates unnecessa... | [
{
"path": "src/cmd/compile/internal/ssa/deadstore.go",
"patch": "@@ -203,9 +203,27 @@ func (sr shadowRange) merge(lo, hi int64) shadowRange {\n // reaches stores then we delete all the stores. The other operations will then\n // be eliminated by the dead code elimination pass.\n func elimDeadAutosGeneric(f ... | 2025-09-11T15:57:38 |
electron/electron | bc22ee7897b9d482bbe7e5322ef771462a2bd6ec | 784201ecee06252b63ac1e1a2478f9c974bcc85d | build: fix `slack-github-action` for backports (#45388)
build: fix slack-github-action for backports | [
{
"path": ".github/workflows/pull-request-labeled.yml",
"patch": "@@ -15,12 +15,12 @@ jobs:\n - name: Trigger Slack workflow\n uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0\n with:\n+ webhook: ${{ secrets.BACKPORT_REQUESTED_SLACK_WEBHOOK_... | 2025-01-31T09:29:50 |
nodejs/node | 68bac3d798290ad3b4cc14963fb10dc91a31a4d0 | 0e8ae9185573f01b2c80ddf3d271e4a3383e440c | fs: fix cp handle existing symlinks
PR-URL: https://github.com/nodejs/node/pull/58476
Fixes: https://github.com/nodejs/node/issues/58468
Reviewed-By: Dario Piotrowicz <dario.piotrowicz@gmail.com> | [
{
"path": "lib/internal/fs/cp/cp.js",
"patch": "@@ -54,6 +54,7 @@ const {\n resolve,\n sep,\n } = require('path');\n+const fsBinding = internalBinding('fs');\n \n async function cpFn(src, dest, opts) {\n // Warn about using preserveTimestamps on 32-bit node\n@@ -344,7 +345,10 @@ async function onLink(... | 2025-05-27T23:56:50 |
golang/go | dd839f1d0037931395316ab13aefd3941aa959e8 | 6e165b4d176fb4c7fbb615b522a8b69d0b66c513 | internal/strconv: handle %f with fixedFtoa when possible
Everyone writes papers about fast shortest-output formatting.
Eventually we also sped up fixed-length formatting %e and %g.
But we've neglected %f, which falls back to the slow general code
even for relatively trivial things like %.2f on 1.23.
This CL uses the ... | [
{
"path": "src/internal/strconv/ftoa.go",
"patch": "@@ -146,28 +146,38 @@ func genericFtoa(dst []byte, val float64, fmt byte, prec, bitSize int) []byte {\n \t\treturn formatDigits(dst, shortest, neg, digs, prec, fmt)\n \t}\n \n-\t// TODO figure out when we can use fast code for f\n-\tif fmt != 'f' {\n-\t\t/... | 2025-11-02T17:32:01 |
vercel/next.js | 4a8eeab2fc61247132c95812a9ad2a7befc34979 | 19aee3ffc1bd2c20d6d14e817ea94d950d22a005 | Add "@zenstackhq/runtime" to server-external-packages.json (#54829)
### What?
[ZenStack](https://github.com/zenstackhq/zenstack) is a toolkit built
above Prisma ORM for adding access control and other features. This
change adds one of its packages "@zenstackhq/runtime" to the default
list of "serverComponentsExternal... | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/serverExternalPackages.mdx",
"patch": "@@ -39,6 +39,7 @@ Next.js includes a [short list of popular packages](https://github.com/vercel/ne\n - `@statsig/statsig-node-core`\n - `@swc/core`\n - `@xenova/transformers`\n+- `@zenstackhq/runtime`\... | 2025-11-28T11:37:43 |
facebook/react | deba48a72795d1332fe1df1159fc6b73566667fe | b6b33bfb92c095160df7370fb488acb89c55b5ca | [compiler] Repro for invalid Array.map type (#32094)
See test fixture
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32094).
* #32099
* #32104
* #32098
* #32097
* #32096
* #32095
* __->__ ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-invalid-mixedreadonly-map-shape.expect.md",
"patch": "@@ -0,0 +1,163 @@\n+\n+## Input\n+\n+```javascript\n+import {\n+ arrayPush,\n+ identity,\n+ makeArray,\n+ Stringify,\n+ useFragment,\n+} from 'shared-runtim... | 2025-01-22T19:58:52 |
electron/electron | 6e72cbb5e01876eb00ceac2e7d153520c92d04b9 | 233b99a0a88120f0d3a4c018e9f4ad29b2acd0ac | fix: multiple directory selection on Linux (#45373) | [
{
"path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch",
"patch": "@@ -14,10 +14,25 @@ It also:\n This may be partially upstreamed to Chromium in the future.\n \n diff --git a/ui/gtk/select_file_dialog_linux_gtk.cc b/ui/gtk/select_file_dialog_linux_gtk.cc\n-index b83... | 2025-01-30T15:34:44 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.