repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
8cfcf52db832bf7c8200470cc87a1159816a52e4
11813f9c75db3a8ae917481330627838f9cb5bac
tools: refloat 10 Node.js patches to cpplint.py Cherry-pick 12c8b4d15471cb6211b39c3a2ca5b10fa4b9f12b Original commit message: This commit is a suggestion for adding a rule for NULL usages in the code base. This will currently report a number of errors which could be ignored using // NOLINT (readability/nul...
[ { "path": "tools/cpplint.py", "patch": "@@ -306,9 +306,10 @@\n \"build/forward_decl\",\n \"build/header_guard\",\n \"build/include\",\n- \"build/include_subdir\",\n \"build/include_alpha\",\n+ \"build/include_inline\",\n \"build/include_order\",\n+ \"build/include_subdir\",\n ...
2025-11-26T16:37:05
vercel/next.js
fe0bb2fc51f1776e88a4357a45f3cfb3bdf4d0f3
45a8a82db5f701546300fc7478ccbe8776350dc0
Next.js sticky scroll standards (#90197) <!-- 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 Contributors ### Impro...
[ { "path": "docs/01-app/01-getting-started/04-linking-and-navigating.mdx", "patch": "@@ -158,6 +158,8 @@ Next.js avoids this with client-side transitions using the `<Link>` component. I\n \n Client-side transitions are what makes a server-rendered apps _feel_ like client-rendered apps. And when paired with [...
2026-02-23T18:38:22
electron/electron
fbfd7c7126f4dfede73850019a20e48e6e694074
00e01e0e82072fe05c8ff2aa05f2e6b78e190d71
docs: security.md mark 'Enable process sandboxing' as active by defau… (#43247) * docs: security.md mark 'Enable process sandboxing' as active by default since electron 20 * Adjusted according to feedback * Updated according to feedback - adjusted sandbox.md * formatting * Fixed broken markup * Implemented docs l...
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -21,7 +21,9 @@\n associated with the window, making it compatible with the Chromium\n OS-level sandbox and disabling the Node.js engine. This is not the same as\n the `nodeIntegration` option and the APIs available to the preload script\...
2025-10-23T20:11:55
golang/go
ae7b257f24736ec13100870c4dee59c5eb57f062
835d6d42c478a711708968cf0916d734940f88ee
cmd/compile: enhance astdump flag to also generate HTML AI-generated code, 3 merged commits, plus a LOT of hand cleanups and tweaks, including removing cargo-culted dead code from the SSA example, reorganizing CSS and JS out of a single giant comment, using defer appropriately to ensure balanced open/close tags, runni...
[ { "path": "src/cmd/compile/internal/gc/main.go", "patch": "@@ -47,6 +47,7 @@ import (\n // already been some compiler errors). It may also be invoked from the explicit panic in\n // hcrash(), in which case, we pass the panic on through.\n func handlePanic() {\n+\tir.CloseHTMLWriters()\n \tif err := recover(...
2026-01-30T06:46:05
facebook/react
98773466ce6736a5ffb7e54c1f4b44645ac18a80
9784cb379e249a5495cde5ba3037521207144e91
[Fizz] Don't outline Boundaries that may contribute to the preamble (#34058) Suspense boundaries that may have contributed to the preamble should not be outlined due to size because these boundaries are only meant to be in fallback state if the boundary actually errors. This change excludes any boundary which has the ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -10695,4 +10695,40 @@ describe('ReactDOMFizzServer', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Success!</div>);\n });\n+\n+ it('should always flush the boundaries contributing the preamble rega...
2025-07-31T01:06:47
rust-lang/rust
4b0caec04bb1dd73373b0660841c14b72507bede
fb27476aaf1012f1f6ace6306f9b990e0d989c31
Panic/return false on overflow in no_threads read/try_read impl
[ { "path": "library/std/src/sys/sync/rwlock/no_threads.rs", "patch": "@@ -17,6 +17,10 @@ impl RwLock {\n #[inline]\n pub fn read(&self) {\n let m = self.mode.get();\n+\n+ // Check for overflow.\n+ assert!(m == isize::MAX, \"too many active read locks on RwLock\");\n+\n i...
2026-03-28T23:19:10
vercel/next.js
45a8a82db5f701546300fc7478ccbe8776350dc0
797eb7fe7f6fa5e9d12a7d7e3c0eff4d5f862b6a
Turbopack: Aggregation update improvements (#90139) ## Summary - Remove negative count handling in aggregation updates since unsigned ints can't be negative - Add `aggregation_update_no_batch` feature flag for debugging (falls back to non-batched single-item processing) - Fix concurrency bug in inner/follower classif...
[ { "path": "turbopack/crates/turbo-tasks-backend/Cargo.toml", "patch": "@@ -16,6 +16,7 @@ workspace = true\n default = []\n print_cache_item_size = [\"dep:lzzzz\"]\n no_fast_stale = []\n+aggregation_update_no_batch = []\n verify_serialization = []\n verify_aggregation_graph = []\n verify_immutable = []", ...
2026-02-23T16:36:27
electron/electron
00e01e0e82072fe05c8ff2aa05f2e6b78e190d71
418b8235bcc230ad88e27674b6cf3698c4339221
fix: remove `killed` check to allow multiple signals (#40667) * fix: remove `killed` check to allow multiple signals * fix: signal forwarding
[ { "path": "npm/cli.js", "patch": "@@ -5,7 +5,9 @@ const proc = require('child_process');\n const electron = require('./');\n \n const child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit', windowsHide: false });\n+let childClosed = false;\n child.on('close', function (code, signal) {\n+ ch...
2025-10-23T19:20:04
golang/go
835d6d42c478a711708968cf0916d734940f88ee
1179cfc9b490ce5a8c3adaccea84c79e69f711d7
cmd/compile: add astdump debug flag This was extraordinarily useful for inlining work. I have cleaned it up somewhat, and did some additional tweaks after working on changes to bloop. -gcflags=-d=astdump=SomeFunc -gcflags=-d=astdump=SomeSubPkg.SomeFunc -gcflags=-d=astdump=Some/Pkg.SomeFunc -gcflags=-d=astdump=~YourRe...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -18,6 +18,7 @@ var Debug DebugFlags\n type DebugFlags struct {\n \tAlignHot int `help:\"enable hot block alignment (currently requires -pgo)\" concurrent:\"ok\"`\n \tAppend int `help:\"print information about ...
2024-11-19T18:57:23
facebook/react
4395689980a3e7d771675c99e4de42f40ea5bf0d
6891dcb87db831db17ab109730dea63706875dd7
[compiler] ref guards apply up to fallthrough of the test (#34024) Fixes #30782 When developers do an `if (ref.current == null)` guard for lazy ref initialization, the "safe" blocks should extend up to the if's fallthrough. Previously we only allowed writing to the ref in the if consequent, but this meant that you co...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts", "patch": "@@ -27,6 +27,7 @@ import {\n eachTerminalOperand,\n } from '../HIR/visitors';\n import {Err, Ok, Result} from '../Utils/Result';\n+import {retainWhere} from '../Utils/utils';\n \n /**\n * Va...
2025-07-29T17:53:13
nodejs/node
fc85c7afd3340ed8bf2240e9106f4cb62657c2c0
09c4f6f41cc50f8e22fb84f547e3d4cf4e420c50
tools: disable some new cpplint rules before update PR-URL: https://github.com/nodejs/node/pull/60901 Fixes: https://github.com/nodejs/node/issues/60771 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": ".cpplint", "patch": "@@ -1,3 +1,3 @@\n set noparent\n-filter=-build/include_alpha,-build/include_subdir,-build/include_what_you_use,-legal/copyright,-readability/nolint,-readability/braces\n+filter=-build/c++17,-build/include_alpha,-build/include_subdir,-build/include_what_you_use,-legal/copyrigh...
2025-11-30T07:42:11
vercel/next.js
9b6e563f7fb64d1ec6225306b17acabe741a5098
f93a867d7741214ed6544a0ff673f498ca69234b
refactor(app-render): extract stream-ops and debug-channel modules (5/8) (#89858) ## Summary Pure refactor: extract stream operations and debug-channel code from `app-render.tsx` into separate compile-time switchable modules. Web-only at this stage. - **`stream-ops.web.ts`**: extracted web stream operations (continu...
[ { "path": "packages/next/errors.json", "patch": "@@ -1068,5 +1068,6 @@\n \"1067\": \"The Next.js unhandled rejection filter is being installed more than once. This is a bug in Next.js.\",\n \"1068\": \"Expected workStore to be initialized\",\n \"1069\": \"Invariant: cache entry \\\"%s\\\" not found in...
2026-02-23T10:45:46
golang/go
8572b1cfea49b6108b9fb8ea650c4999ba70d381
e0414d74fe2d38a6de1cadbbc135d578b11a27af
internal/runtime: fix assembly for spectre retpoline instrumentation In the last year we added two CALLs whose targets are loaded from memory. Change them to call from a register so that the instrumentation for spectre mitigations works. This change also adds a smoke test for the spectre build flags. For #77420. Ch...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -789,22 +789,38 @@ func (t *tester) registerTests() {\n \tif !t.compileOnly && !t.short {\n \t\tt.registerTest(\"GODEBUG=gcstoptheworld=2 archive/zip\",\n \t\t\t&goTest{\n-\t\t\t\tvariant: \"runtime:gcstoptheworld2\",\n+\t\t\t\tvariant: \"gcstoptheworld2\",\n \...
2026-02-03T15:45:21
facebook/react
6891dcb87db831db17ab109730dea63706875dd7
3f40eb73a8de2823ea5cab39496faef33aa3f2b1
[compiler] treat ref-like identifiers as refs by default (#34005) `@enableTreatRefLikeIdentifiersAsRefs` is now on by default. I made one small fix to the render helper logic as part of this, uncovered by including more tests. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). B...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -608,7 +608,7 @@ export const EnvironmentConfigSchema = z.object({\n *\n * Here the variables `ref` and `myRef` will be typed as Refs.\n */\n- enableTreatRefLikeIdentifiersAsRefs: z.boolean().default(fal...
2025-07-29T17:51:10
rust-lang/rust
afe522a7545a14c741a0aea05663a4cb130e44fd
dffadd38089c57dd6fa3e2bf4baaa1e129a8ea37
fix: don't panic unmerge arm on trailing pipe Example --- ```rust fn main() { let y = match 0 { 0 |$0 => { 1i32 } 1 => { 2i32 } }; } ``` **Before this PR** Panic on apply **After this PR** Assist not applicable
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/unmerge_match_arm.rs", "patch": "@@ -38,11 +38,18 @@ pub(crate) fn unmerge_match_arm(acc: &mut Assists, ctx: &AssistContext<'_>) -> O\n }\n let match_arm = ast::MatchArm::cast(or_pat.syntax().parent()?)?;\n let match_arm_body = m...
2026-03-29T00:47:40
electron/electron
418b8235bcc230ad88e27674b6cf3698c4339221
717eb0dca5a7ec65ceec13ebf5b0dc0083f84df4
chore: bump nan to 2.23.0 (#48591) * chore: bump nan to 2.23.0 * Fix C++ flags passed to C compiler in NAN spec runner Passing C++-specific flags to the C compiler caused failures building native test modules. NAN uprgaded the version of node-gyp it uses, triggering a new codepath with the C compiler that didn't oc...
[ { "path": "DEPS", "patch": "@@ -6,7 +6,7 @@ vars = {\n 'node_version':\n 'v22.20.0',\n 'nan_version':\n- 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n+ '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':\n '0e5d146ba13101a1302d59ea6e6e0b3cace4ae38',\n 'reactiveobjc_ve...
2025-10-23T18:58:40
nodejs/node
09c4f6f41cc50f8e22fb84f547e3d4cf4e420c50
85852a3221b17f4d10d35e9abf94d676a81c3120
deps,src: prepare for cpplint update Disable linting where there are false positives or clashes whith the C++ formatter. PR-URL: https://github.com/nodejs/node/pull/60901 Fixes: https://github.com/nodejs/node/issues/60771 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vladimir Morozov <vmorozov@microsof...
[ { "path": "deps/ncrypto/ncrypto.h", "patch": "@@ -66,7 +66,10 @@ namespace ncrypto {\n #define NCRYPTO_STR(x) #x\n #define NCRYPTO_REQUIRE(EXPR) \\\n { \\\n- if (!(EXPR) { abort()...
2025-11-26T17:05:35
vercel/next.js
54d12035a043c8ce9df63ee460b84d794fca2fd2
1fedf5b0d348237446505c2950e0b53fd1639ca3
Fix route.replace crash with --debug-build-paths (#90312) ## Summary - Fixes `route.replace is not a function` error when running `next build --debug-build-paths` on projects with parallel routes **Root cause:** Turbopack filters routes at the route level (e.g., `/parallel-test` includes all page entries), while JS ...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -2185,7 +2185,10 @@ export default async function build(\n for (const [originalPath, normalizedPath] of Object.entries(\n appPathRoutes\n )) {\n- if (normalizedPath === page)...
2026-02-22T01:13:22
facebook/react
1d7e942da76c794c3cbf52a8c214d90a69814a8f
79dc706498c4f8ef077167898492693197e1b975
[compiler] Allow mergeRefs pattern (and detect refs passed as ref prop) (#34004) Two related changes: * ValidateNoRefAccessInRender now allows the mergeRefs pattern, ie a function that aggregates multiple refs into a new ref. This is the main case where we have seen false positive no-ref-in-render errors. * Behind `@e...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/TypeInference/InferTypes.ts", "patch": "@@ -451,6 +451,18 @@ function* generateInstructionTypes(\n \n case 'JsxExpression':\n case 'JsxFragment': {\n+ if (env.config.enableTreatRefLikeIdentifiersAsRefs) {\n+ if (value.kind === ...
2025-07-29T17:06:11
rust-lang/rust
9eb2c671df6796db1fca35268fda64a1c6e7ee56
064cbfd71db23df29ed24e26f9aafe96059fdc18
fix: postfix completions include nots prefix-expr Example --- Like `is_foo`, `.not`, `.if` ```rust fn main() { let is_foo = true; !is_foo.$0 } ``` **Before this PR** ```rust fn main() { let is_foo = true; !if is_foo { $0 } } ``` **After this PR** ```rust fn main() { let is_foo = tr...
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs", "patch": "@@ -402,23 +402,28 @@ fn receiver_accessor(receiver: &ast::Expr) -> ast::Expr {\n .unwrap_or_else(|| receiver.clone())\n }\n \n-/// Given an `initial_element`, tries to expand it to include deref(s), and ...
2026-03-29T00:30:56
golang/go
b691a2edc7f5863f61a07c4a4f087eef1a15a704
31c9bcb1037a332fd547808693cd1899090b5854
crypto/tls: revalidate whole chain on resumption on Windows and macOS TestHandshakeChangeRootCAsResumption and TestHandshakeGetConfigForClientDifferentClientCAs changed because previously rootA and rootB shared Subject and SPKI, which made the new full-chain revalidation check succeed, as the same leaf would verify a...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -22,6 +22,7 @@ import (\n \t\"internal/godebug\"\n \t\"io\"\n \t\"net\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strings\"\n \t\"sync\"\n@@ -1873,15 +1874,27 @@ func anyValidVerifiedChain(verifiedChains [][]*x509.Certificate, opts x509.Verif\n \t\t}) {\n \t\t\t...
2026-01-30T17:07:23
electron/electron
c6c3d405e25c37a51918984a96fa18f42fd5d1ab
9235dc0159bdba8101c21dfcd73a80f1ff5124ea
docs: fix Ubuntu version used to build Electron (#48638)
[ { "path": "README.md", "patch": "@@ -39,7 +39,7 @@ Each Electron release provides binaries for macOS, Windows, and Linux.\n \n * macOS (Big Sur and up): Electron provides 64-bit Intel and Apple Silicon / ARM binaries for macOS.\n * Windows (Windows 10 and up): Electron provides `ia32` (`x86`), `x64` (`amd64...
2025-10-23T14:45:45
nodejs/node
28142a6106298ac8c0041b3f385e0d941305286c
90ff75f4320f365751dde91f0c35377e2a41b6a4
build: run embedtest with node_g when BUILDTYPE=Debug PR-URL: https://github.com/nodejs/node/pull/60850 Refs: https://github.com/nodejs/node/pull/60806 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "Makefile", "patch": "@@ -78,11 +78,17 @@ EXEEXT := $(shell $(PYTHON) -c \\\n \t\t\"import sys; print('.exe' if sys.platform == 'win32' else '')\")\n \n NODE_EXE = node$(EXEEXT)\n-# Use $(PWD) so we can cd to anywhere before calling this\n-NODE ?= \"$(PWD)/$(NODE_EXE)\"\n NODE_G_EXE = node_g$(EXEE...
2025-12-01T15:23:30
vercel/next.js
fd38d5bf1520b58f879eb4afeba1cb8efb428f05
ccee817b559c770c291350fcd13ad4cb6239339c
segment cache: add test for passing unawaited promise to context provider (#89339) Adds a failing test proving that if the RSC response from a prefetch contains an unresolved promise, navigating to the page will cause the Suspense boundary wrapping the use of that promise to remain in fallback state indefinitely. Thi...
[ { "path": "test/e2e/app-dir/segment-cache/prefetch-partial-rsc/app/layout.tsx", "patch": "@@ -0,0 +1,9 @@\n+import { ReactNode } from 'react'\n+\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", "ad...
2026-02-21T18:29:09
rust-lang/rust
e38074eeb057f13c697da2be977877313018c345
dffadd38089c57dd6fa3e2bf4baaa1e129a8ea37
fix: complete envs in nested `env!()` Example --- ```rust fn main() { println!("{}", env!("CA$0")); } ``` **Before this PR** Cannot complete any env **After this PR** ```rust fn main() { println!("{}", env!("CARGO_BIN_NAME")); } ```
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/env_vars.rs", "patch": "@@ -51,11 +51,10 @@ pub(crate) fn complete_cargo_env_vars(\n original: &ast::String,\n expanded: &ast::String,\n ) -> Option<()> {\n- let is_in_env_expansion = ctx\n- .sema\n- .hir_file_...
2026-03-28T23:05:59
facebook/react
79dc706498c4f8ef077167898492693197e1b975
85bbe39ef8e24a192b5e9f2987b1babf8ce772e1
[compiler] Improve ref validation error message (#34003) Improves the error message for ValidateNoRefAccessInRender, using the new diagnostic type as well as providing a longer but succinct summary of what refs are for and why they're unsafe to access in render. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccessInRender.ts", "patch": "@@ -5,7 +5,11 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import {CompilerError, ErrorSeverity} from '../CompilerError';\n+import {\n+ CompilerDiagnostic,\n+ Co...
2025-07-29T17:03:28
golang/go
31c9bcb1037a332fd547808693cd1899090b5854
18d31e3e8bf47538c8a570268cd714d47bf01aef
internal/poll: readWriteUnlock should destroy fd when no remaining references Fixes #77404 Change-Id: I0402becb94855baf942d6ba3815cc2a3c1526d6e Reviewed-on: https://go-review.googlesource.com/c/go/+/740921 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Sh...
[ { "path": "src/internal/poll/fd_mutex.go", "patch": "@@ -265,7 +265,9 @@ func (fd *FD) readWriteLock() error {\n // is no remaining reference.\n func (fd *FD) readWriteUnlock() {\n \tfd.fdmu.rwunlock(true)\n-\tfd.fdmu.rwunlock(false)\n+\tif fd.fdmu.rwunlock(false) {\n+\t\tfd.destroy()\n+\t}\n }\n \n // clos...
2026-02-02T11:06:22
nodejs/node
f9f343fb8dda773b749db4dee00704f8bbe79c19
b1e941e7b2590d3d7fed76a9de5e467fd04d6da3
src: handle DER decoding errors from system certificates When decoding certificates from the system store, it's not actually guaranteed to succeed. In case the system returns a certificate that cannot be decoded (might be related to SSL implementation issues), skip them. PR-URL: https://github.com/nodejs/node/pull/60...
[ { "path": "src/crypto/crypto_context.cc", "patch": "@@ -507,7 +507,11 @@ void ReadMacOSKeychainCertificates(\n CFRelease(search);\n \n if (ortn) {\n- fprintf(stderr, \"ERROR: SecItemCopyMatching failed %d\\n\", ortn);\n+ per_process::Debug(DebugCategory::CRYPTO,\n+ \"Cannot r...
2025-12-01T07:26:03
golang/go
7fd116f86451d7262f7683629b90c8adc0137f53
8ac41b52c4b7a6ab9c41d008abbe254270200b8e
go/types, types2: add missing Named.unpack call in Checker.hasVarSize CL 734980 swapped use of Type.Underlying() in Checker.hasVarSize for traversal of Named.fromRHS. It forgot to call Named.unpack() before inspecting Named.fromRHS, allowing access of unexpanded instantiated types. These unexpanded instantiated types...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -1009,7 +1009,8 @@ func sliceElem(x *operand) (Type, *typeError) {\n // yet been checked.\n func (check *Checker) hasVarSize(t Type) bool {\n \t// Note: We could use Underlying here, but passing through the RHS may yield\n-\t// better err...
2026-01-30T19:23:02
nodejs/node
94cd600542d7af9792db63d4643ac4b0adec7e4c
209a4fe8123848ffcf876ec5914c6114a3e0ded1
crypto: fix DOMException name for non-extractable key error PR-URL: https://github.com/nodejs/node/pull/60830 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nieße...
[ { "path": "lib/internal/crypto/webcrypto.js", "patch": "@@ -676,7 +676,7 @@ async function exportKey(format, key) {\n }\n \n if (!key[kExtractable])\n- throw lazyDOMException('key is not extractable', 'InvalidAccessException');\n+ throw lazyDOMException('key is not extractable', 'InvalidAccessErro...
2025-11-30T21:45:27
electron/electron
9235dc0159bdba8101c21dfcd73a80f1ff5124ea
f784ea6f4f98a12208c9dc42d7e437280e285a06
chore: bump chromium to 143.0.7485.0 (main) (#48618) * chore: bump chromium in DEPS to 143.0.7485.0 * chore: update allow_disabling_blink_scheduler_throttling_per_renderview.patch Move SetSupportsDraggableRegions mojom IPC from chrome/ and extensions/ to blink/ | https://chromium-review.googlesource.com/c/chromium/s...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7483.0',\n+ '143.0.7485.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-10-23T13:30:29
golang/go
8ac41b52c4b7a6ab9c41d008abbe254270200b8e
62d08234b797806796af0d51051f2e13caa42e2a
testing/synctest: add Sleep Add a convenience function which combines time.Sleep and synctest.Wait. Fixes #77169 Change-Id: I2ff105105e95cfd8e5b4f72ccacf7afa59efb6bd Reviewed-on: https://go-review.googlesource.com/c/go/+/740066 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Damien Neil <dneil@google.co...
[ { "path": "api/next/77169.txt", "patch": "@@ -0,0 +1 @@\n+pkg testing/synctest, func Sleep(time.Duration) #77169", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/testing/synctest/77169.md", "patch": "@@ -0,0 +1 @@\n+The new [Sleep] h...
2026-01-28T23:04:46
vercel/next.js
ccee817b559c770c291350fcd13ad4cb6239339c
3b94d8021af89754ee84252786bd9501a047bdf3
Turbopack: support Subresource Integrity (#90152) A spinoff from https://github.com/vercel/next.js/pull/90045 - [x] The SRI test is failing for unrelated reasons (hardcoded chunk name matching) - [x] Somehow, the hashes are wrong
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -88,6 +88,7 @@ use crate::{\n AppPageRoute, Endpoint, EndpointOutput, EndpointOutputPaths, ModuleGraphs, Route, Routes,\n },\n server_actions::{build_server_actions_loader, create_server_actions_manifest},\n+ sri_manifest::get_sri_manif...
2026-02-21T09:40:12
nodejs/node
10837e33b0ec2730139f579f0af5ad1286f61cae
d0c102495a5958d2cce1b42ed9cd45eddbafac7f
lib,test: fix jsdoc comments To prepare for eslint-plugin-jsdoc update. Refs: https://github.com/nodejs/node/pull/60535 PR-URL: https://github.com/nodejs/node/pull/60870 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gma...
[ { "path": "lib/fs.js", "patch": "@@ -1115,7 +1115,7 @@ function lazyLoadRimraf() {\n /**\n * Asynchronously removes a directory.\n * @param {string | Buffer | URL} path\n- * @param {{}} [options]\n+ * @param {object} [options]\n * @param {(err?: Error) => any} callback\n * @returns {void}\n */\n@@ -114...
2025-11-27T09:50:12
golang/go
62d08234b797806796af0d51051f2e13caa42e2a
35abaf75c35adc9b22038885781b8be70a8476e0
internal/maps,cmd/compile/internal/walk: replace calls to mapaccess1* with mapaccess2* mapaccess1* and mapaccess2* functions share the same implementation and differ only in whether the boolean "found" is returned. This change replaces mapaccess1* calls with mapaccess2*. We can do this transparently, since the call s...
[ { "path": "src/cmd/compile/internal/walk/assign.go", "patch": "@@ -154,12 +154,14 @@ func walkAssignMapRead(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {\n \n \tr := n.Rhs[0].(*ir.IndexExpr)\n \twalkExprListSafe(n.Lhs, init)\n+\n \tr.X = walkExpr(r.X, init)\n \tr.Index = walkExpr(r.Index, init)\n+\tmap_ :...
2026-01-13T10:06:28
vercel/next.js
72c4c9c65b02652d1c97218f5cf775ddb55fd283
22e46a40adf5f757422e2389066e963654ed7c0d
Fix runtime prefetch `isPartial` byte stripping when deployed (#90272) Make `stripIsPartialByte` resilient to responses that don't have the leading `isPartial` marker byte. Instead of unconditionally consuming the first byte, it now checks whether it's a recognized marker ('~' or '#') and leaves the stream intact when...
[ { "path": "packages/next/src/client/components/segment-cache/cache.ts", "patch": "@@ -14,7 +14,6 @@ import {\n import {\n NEXT_DID_POSTPONE_HEADER,\n NEXT_INSTANT_PREFETCH_HEADER,\n- NEXT_IS_PRERENDER_HEADER,\n NEXT_ROUTER_PREFETCH_HEADER,\n NEXT_ROUTER_SEGMENT_PREFETCH_HEADER,\n NEXT_ROUTER_STAL...
2026-02-21T02:09:24
nodejs/node
768f3ba32a3719070d1376341243e4cdf2383436
d1ab5ef4ba18e27388fc193126238dc771289428
test: fix embedtest in debug windows PR-URL: https://github.com/nodejs/node/pull/60806 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/embedding/embedtest.cc", "patch": "@@ -210,23 +210,23 @@ int RunNodeInstance(MultiIsolatePlatform* platform,\n return 1;\n \n exit_code = node::SpinEventLoop(env).FromMaybe(1);\n- }\n-\n- if (!snapshot_blob_path.empty() && is_building_snapshot) {\n- snapshot = setup->CreateSna...
2025-11-29T10:40:39
golang/go
35abaf75c35adc9b22038885781b8be70a8476e0
07f7f8ca5202bdcd39216e25b4a5b2c309ea727f
encoding/json: use pooled encoder in Encoder.Encode Due to the lack of MarshalWrite in the v1 API, it is unfortunately common to see: json.NewEncoder(out).Encode(in) where a single-use Encoder is constructed and thrown away. This performed acceptably in v1 since every call to Encode used a globally pooled encode...
[ { "path": "src/encoding/json/bench_test.go", "patch": "@@ -14,6 +14,7 @@ package json\n \n import (\n \t\"bytes\"\n+\t\"crypto/sha256\"\n \t\"fmt\"\n \t\"internal/testenv\"\n \t\"internal/zstd\"\n@@ -581,3 +582,19 @@ func BenchmarkUnmarshalNumber(b *testing.B) {\n \t\t}\n \t}\n }\n+\n+func BenchmarkNewEncod...
2026-01-30T20:15:31
facebook/react
85bbe39ef8e24a192b5e9f2987b1babf8ce772e1
820af2097103309fdc5675d2bde744103a439eff
[compiler] Fixes to enableTreatRefLikeIdentifiersAsRefs (#34000) We added the `@enableTreatRefLikeIdentifiersAsRefs` feature a while back but never enabled it. Since then we've continued to see examples that motivate this mode, so here we're fixing it up to prepare to enable by default. It now works as follows: * If ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts", "patch": "@@ -1211,6 +1211,8 @@ addObject(BUILTIN_SHAPES, BuiltInRefValueId, [\n ['*', {kind: 'Object', shapeId: BuiltInRefValueId}],\n ]);\n \n+addObject(BUILTIN_SHAPES, ReanimatedSharedValueId, []);\n+\n addFunction(\n B...
2025-07-29T16:57:48
vercel/next.js
aa6d7c2271092417de894c2d492ea01253b8117f
19dcd1339f946e6979acd415ec380c2fcfb3ccf2
[devtools] Omit empty looking error messages (#90256) If the trimmed error message has no length, we skip the line entirely to remove useless vertical space from the Redbox. Errors with no messages are assumed to only be relevant due to their stack.
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-message/error-message.tsx", "patch": "@@ -19,6 +19,10 @@ export function ErrorMessage({ errorMessage, errorType }: ErrorMessageProps) {\n }\n }, [errorMessage])\n \n+ if (!errorMessage) {\n+ return null\n+ }\n+\n // ...
2026-02-20T23:21:21
nodejs/node
7643c2a076a7f9e6262ef1813ec01f46c994f46b
3c92ee1008a30edaefd1e4b87e62b14edafd114f
doc: update debuglog examples to use 'foo-bar' instead of 'foo' PR-URL: https://github.com/nodejs/node/pull/60867 Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -135,14 +135,14 @@ The `section` supports wildcard also:\n \n ```mjs\n import { debuglog } from 'node:util';\n-const log = debuglog('foo');\n+const log = debuglog('foo-bar');\n \n log('hi there, it\\'s foo-bar [%d]', 2333);\n ```\n \n ```cjs\n const { debuglog } = r...
2025-11-29T02:18:49
electron/electron
f784ea6f4f98a12208c9dc42d7e437280e285a06
7ec0ebc50a016ed5ea538160602001024d84cb06
fix: icon in Windows toast notification (#48543)
[ { "path": "shell/browser/notifications/win/notification_presenter_win.cc", "patch": "@@ -30,9 +30,8 @@ namespace {\n bool SaveIconToPath(const SkBitmap& bitmap, const base::FilePath& path) {\n std::optional<std::vector<uint8_t>> png_data =\n gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false);\n- if (...
2025-10-21T19:12:26
golang/go
cce3fea08f8b2509b7651ee552111a8cc763a459
3b2a451cef467e42e41552cf490498d3bf39df29
internal/poll: move buffer pinning inside execIO This is a step towards deferring adding the handle to IOCP until the first IO operation. The goal of this CL is to avoid the fd.isBlocking check in fd.pin, which was happening outside execIO, and making buffer pinning less error-prone. This also fixes an issue where b...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -232,27 +232,10 @@ func (fd *FD) waitIO(o *operation) error {\n \treturn err\n }\n \n-// pin pins ptr for the duration of the IO operation.\n-// If fd is in blocking mode, pin does nothing.\n-func (fd *FD) pin(mode int, ptr any) {\n-\tif fd.isBlockin...
2026-01-30T13:29:58
facebook/react
6b22f31f1ac88cce1b38c67a5c97c7ab0e832823
b5c16371091c1abbf77ec944c755bd139abc7568
[compiler] Aggregate all errors reported from DropManualMemoization (#34002) Noticed this from my previous PR that this pass was throwing on the first error. This PR is a small refactor to aggregate every violation and report them all at once. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sa...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/DropManualMemoization.ts", "patch": "@@ -289,50 +289,84 @@ function extractManualMemoizationArgs(\n instr: TInstruction<CallExpression> | TInstruction<MethodCall>,\n kind: 'useCallback' | 'useMemo',\n sidemap: IdentifierSidemap,\n+...
2025-07-28T17:25:25
vercel/next.js
074ba4a953f124126b351277711560daa11d558e
e5d04e9866c3714ee046a2fd4be4e3090c858a10
[test] Improve fetch timeout error stack for `act` (#90261) Before: ``` apiRequestContext.fetch: Request timed out after 30000ms Call log: - → GET http://localhost:55200/refetch-on-new-base-tree/a?_rsc=1u5ob - <snip> 225 | // server; we pass the request to the server the immed...
[ { "path": "test/lib/router-act.ts", "patch": "@@ -224,9 +224,18 @@ export function createRouterAct(\n // but it should not affect the timing of when requests reach the\n // server; we pass the request to the server the immediately.\n result: (async () => {\n- ...
2026-02-20T21:02:16
nodejs/node
d09c3ffb7ca85606d491e51ff15b11416a4f85a6
1b3a64deb454c24b0a20bb73f13759d97a25f9bf
test: skip failing tests when compiled without amaro When compiled without amaro, this conflicts with --experimental-strip-types defaulting to true. To avoid that, we need to skip relevant failing tests. Fixes: https://github.com/nodejs/node/issues/60640 PR-URL: https://github.com/nodejs/node/pull/60815 Reviewed-By: ...
[ { "path": "src/node_options.cc", "patch": "@@ -1092,7 +1092,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {\n \"Type-stripping for TypeScript files.\",\n &EnvironmentOptions::strip_types,\n kAllowedInEnvvar,\n- true);\n+ HAVE_AMARO);\n ...
2025-11-28T15:37:42
golang/go
f14d8975a21e24aa33e0b496e822fdcb285879b9
35c5deb1d43b245c19059d1532929ee087e44a84
runtime: align end of systemstack_switch prologue on amd64 for consistency with gosave_systemstack_switch gosave_systemstack_switch saves PC with fixed offset of 8 bytes from systemstack_switch to bypass prologue. This commit makes this offset consistent with actual address of UNDEF instruction intended to be at that ...
[ { "path": "src/runtime/asm_amd64.s", "patch": "@@ -510,6 +510,8 @@ goodm:\n // The frame layout needs to match systemstack\n // so that it can pretend to be systemstack_switch.\n TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0\n+\t// Align for consistency with offset used in gosave_systemstack_switch\n+\...
2026-01-29T18:12:49
electron/electron
6562d6ed0bdf1cdd99bebe3dde763942d943ea3f
0b179f8f059f9afb2601277cacaa4bc7ea575a96
fix: `systemPreferences.getAccentColor` inverted color (#48511) fix: systemPreferences.getAccentColor inverted color
[ { "path": "shell/browser/api/electron_api_system_preferences_win.cc", "patch": "@@ -16,6 +16,7 @@\n #include \"base/win/wrapped_window_proc.h\"\n #include \"shell/common/color_util.h\"\n #include \"shell/common/process_util.h\"\n+#include \"skia/ext/skia_utils_win.h\"\n #include \"ui/gfx/win/hwnd_util.h\"\n...
2025-10-21T14:46:46
rust-lang/rust
1c3e8d133d07d7492afa355c544b8bb15251141b
6183ecdda52ba9b9b93f656f9a37492168c82726
fix UB in test_swap_ptr_triple_dangling
[ { "path": "src/tools/miri/tests/native-lib/pass/ptr_write_access.rs", "patch": "@@ -176,17 +176,17 @@ fn test_swap_ptr_triple_dangling() {\n }\n \n extern \"C\" {\n- fn swap_ptr_triple_dangling(t_ptr: *const Triple);\n+ fn swap_ptr_triple_dangling(t_ptr: *mut Triple);\n }\n \n ...
2026-03-28T21:55:21
nodejs/node
01d5a38a6097a2d7423fc436ad8c96d8e4e0c3fe
1de8d7f21aaf64e5f210c00db5ff7bc5f04cacd1
doc: fix typos in changelogs I know we can't fix the parts that are commit messages, but I believe the rest of the text is editable. Am I misremembering? PR-URL: https://github.com/nodejs/node/pull/60855 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Review...
[ { "path": "doc/changelogs/CHANGELOG_V12.md", "patch": "@@ -1883,7 +1883,7 @@ consumption.\n #### Increase of the default server headers timeout\n \n The default value of `server.headersTimeout` for `http` and `https` servers was\n-increased from `40000` to `60000` (60 seconds). This to accomodate for system...
2025-11-28T04:24:42
golang/go
35c5deb1d43b245c19059d1532929ee087e44a84
afae85307206cb56851c31652bd9ae45ba60c800
all: switch linux-ppc64 target to ELFv2 ABI Go is only capable of producing internally linked, static binaries on linux-ppc64. As such, binaries should run in either ELFv1 or ELFv2 ppc64 userspaces today. This opens the door to enabling cgo and external linking which will require ELFv2 support and userspace, eventual...
[ { "path": "src/cmd/link/internal/ld/elf.go", "patch": "@@ -178,14 +178,7 @@ func Elfinit(ctxt *Link) {\n \n \tswitch ctxt.Arch.Family {\n \t// 64-bit architectures\n-\tcase sys.PPC64, sys.S390X:\n-\t\tif ctxt.Arch.ByteOrder == binary.BigEndian && ctxt.HeadType != objabi.Hopenbsd {\n-\t\t\tehdr.Flags = 1 // ...
2026-01-07T19:48:53
vercel/next.js
8f231d6380699d60a62fdd4f110f69b0bbbffee2
77cd1afab7fa88d27c17eb89d5f512ba6521fbc7
[instant] Include declaration location of instant config in validation errors (#90169)
[ { "path": "crates/next-core/src/next_server/transforms.rs", "patch": "@@ -12,10 +12,11 @@ use crate::{\n next_config::NextConfig,\n next_server::context::ServerContextType,\n next_shared::transforms::{\n- get_next_dynamic_transform_rule, get_next_font_transform_rule, get_next_image_rule,\...
2026-02-20T19:31:53
golang/go
bae9486d07706bcc216961f504e75d1fb5c5aec8
c08f6a5b2651b2ce4a9510952fb88739719fe5a4
cmd/compile/internal/bloop: avoid extraneous heap allocs in b.Loop body due to autotmp variable scope The motivating example I created for #73137 still seems to heap allocate in go1.26rc2 when used in a b.Loop body. │ go1.25 │ go1.26rc2 │ │ allocs...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -155,6 +155,10 @@ func preserveCallResults(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n \n \tassign := typecheck.AssignExpr(ir.NewAssignListStmt(call.Pos(), ir.OAS2, lhs, ir.Nodes{call})).(*ir.AssignListStmt)\n \tassign.Def = true\n+\tfor _...
2026-01-23T20:59:40
rust-lang/rust
6183ecdda52ba9b9b93f656f9a37492168c82726
c26f488618146fe1d4d8df6bbf8fe19455691015
native-lib: fix passing repr(C) enums
[ { "path": "src/tools/miri/src/shims/native_lib/mod.rs", "patch": "@@ -396,8 +396,9 @@ trait EvalContextExtPriv<'tcx>: crate::MiriInterpCxExt<'tcx> {\n // matches what codegen does. This does mean that we support some types whose ABI is not\n // stable, but that's fine -- we are anyway quite ...
2026-03-28T21:39:52
facebook/react
cc015840ef72d48de86778785894c7ca44f4f856
19baee813cb08fc5971a3b301814faa6cd530ec8
fix: `React.use` inside `React.lazy`-ed component on SSR (#33941)
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6340,6 +6340,63 @@ describe('ReactDOMFizzServer', () => {\n expect(getVisibleChildren(container)).toEqual('Hi');\n });\n \n+ it('should correctly handle different promises in React.use() across lazy components', as...
2025-07-28T08:36:08
nodejs/node
08d966cb657d114db5b939a13f064f4517f35b42
bff6ea49b860a14817097e66fb6edd08e99434cb
src: handle indexed properties in `process.env` Closes: https://github.com/nodejs/node/issues/60795 PR-URL: https://github.com/nodejs/node/pull/60826 Fixes: https://github.com/nodejs/node/issues/60795 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Stefan Stoj...
[ { "path": "src/node_env_var.cc", "patch": "@@ -4,6 +4,7 @@\n #include \"node_external_reference.h\"\n #include \"node_i18n.h\"\n #include \"node_process-inl.h\"\n+#include \"util.h\"\n \n #include <time.h> // tzset(), _tzset()\n #include <optional>\n@@ -16,6 +17,7 @@ using v8::DontDelete;\n using v8::DontE...
2025-11-27T13:10:35
electron/electron
0b179f8f059f9afb2601277cacaa4bc7ea575a96
89d3067dd4b001320eca8e35b2d1c4f9968a6196
fix: devtools crashing on Linux in detach mode (#48600)
[ { "path": "shell/browser/ui/views/electron_views_delegate.cc", "patch": "@@ -8,6 +8,7 @@\n \n #include \"ui/views/widget/desktop_aura/desktop_native_widget_aura.h\"\n #include \"ui/views/widget/native_widget_aura.h\"\n+#include \"ui/views/window/default_frame_view.h\"\n \n #if BUILDFLAG(IS_LINUX)\n #include...
2025-10-21T14:45:02
rust-lang/rust
27242aa3196c1aa7b58fa744231f76362b0ecf2c
fb27476aaf1012f1f6ace6306f9b990e0d989c31
Panic in Hermit clock_gettime
[ { "path": "library/std/src/sys/time/hermit.rs", "patch": "@@ -6,7 +6,7 @@ use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Timespec {\n let mut t = hermit_abi::timespec { tv_sec: 0, tv_nsec: 0 };\n- let _ = unsafe { hermit_abi::clock_gettime(clock, &raw mut t) };\n+ ...
2026-03-28T21:00:03
vercel/next.js
468de5d1bbe6d9493799541806a5d7726838a5a8
a6d950a4450f81bc09dcbf755f305c2d54a5b6d3
Remove workStore from params/searchParams/pathname function signatures (#90215) `workStore` is a request-scoped value available via `workAsyncStorage.getStore()` anywhere during rendering. Threading it as an explicit parameter was originally done to enforce that these functions are only callable within a valid work sc...
[ { "path": "packages/next/errors.json", "patch": "@@ -1065,5 +1065,6 @@\n \"1064\": \"createServerParamsForRoute should not be called in client contexts.\",\n \"1065\": \"createServerPathnameForMetadata should not be called in client contexts.\",\n \"1066\": \"createServerSearchParamsForServerPage shou...
2026-02-20T17:39:59
facebook/react
19baee813cb08fc5971a3b301814faa6cd530ec8
2aa5f9d4e3f961c6ec2c14f80403d35b7f2fe83e
[Runtime] Fix CI (#33999)
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ReactCompilerRule-test.ts", "patch": "@@ -247,9 +247,10 @@ const tests: CompilerTestCases = {\n name: 'Pipeline errors are reported',\n code: normalizeIndent`\n import useMyEffect from 'useMyEffect';\n+ import {AUTODEPS} from...
2025-07-25T19:04:35
golang/go
c08f6a5b2651b2ce4a9510952fb88739719fe5a4
14a4cb13e389d8dbc1ba3ba0097e208f1436a22a
cmd/link: put type:* at the start of the type descriptors That used to happen naturally because the symbol had zero size. After CL 724261 we need to force it. Fixes #77372 Change-Id: Ia8eef989bc9cbad5459b60ff6535136e7e0c6cab Reviewed-on: https://go-review.googlesource.com/c/go/+/740400 Reviewed-by: Keith Randall <kh...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2395,6 +2395,9 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t// sorted by type string. The reflect package will use\n \t\t// this to ensure that type descriptor pointers are unique.\n \n+\t\t// We define ...
2026-01-29T22:50:05
rust-lang/rust
1a320616e9d090e7ef7ac90e5ceabd7e2248d97f
7e28c7438a7b0c79a09724ba799d32ed461beb72
[perf] Revert FastISel patch This change caused a significant compile-time regression for debug builds.
[ { "path": "src/llvm-project", "patch": "@@ -1 +1 @@\n-Subproject commit 05918363362b439b9b0bced3daa14badd75da790\n+Subproject commit 1cb4e3833c1919c2e6fb579a23ac0e2b22587b7e", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2026-03-28T16:43:29
electron/electron
89d3067dd4b001320eca8e35b2d1c4f9968a6196
00a3031357b90fa29621de4f7395cabae304430c
fix: `trafficLightPosition` incorrect with `customButtonsOnHover` (#48538) fix: trafficLightPosition incorrect with customButtonsOnHover
[ { "path": "shell/browser/ui/cocoa/window_buttons_proxy.mm", "patch": "@@ -176,6 +176,13 @@ - (void)updateButtonsVisibility {\n [button setHidden:hidden];\n [button setNeedsDisplay:YES];\n }\n+\n+ // On macOS 26, toggling the hidden state of the standard window buttons can\n+ // cause AppKit to r...
2025-10-21T14:43:04
nodejs/node
bff6ea49b860a14817097e66fb6edd08e99434cb
ca5956cb7ab051be2a3ae6c0f99e5e446db40b9a
node-api: fix data race and use-after-free in napi_threadsafe_function Other threads can still hold a valid handle to the tsfn after finalization if finalization was triggered by - release with napi_tsfn_abort, or - environment shutdown Handle this by: - protecting finalization itself with the mutex - if necessary, d...
[ { "path": "src/node_api.cc", "patch": "@@ -200,7 +200,7 @@ class BufferFinalizer : private Finalizer {\n ~BufferFinalizer() { env()->Unref(); }\n };\n \n-class ThreadSafeFunction : public node::AsyncResource {\n+class ThreadSafeFunction {\n public:\n ThreadSafeFunction(v8::Local<v8::Function> func,\n ...
2024-11-15T17:58:09
facebook/react
2aa5f9d4e3f961c6ec2c14f80403d35b7f2fe83e
8c587a2a411fd6bd9d82b17ff1030eb263c564a1
[compiler] fix false positive "mutate frozen" validation with refs (#33993) The test case here previously reported a "Cannot modify local variables after render completes" error (from ValidateNoFreezingKnownMutableFunctions). This happens because one of the functions passed to a hook clearly mutates a ref — except tha...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingRanges.ts", "patch": "@@ -249,6 +249,7 @@ export function inferMutationAliasingRanges(\n }\n for (const param of [...fn.context, ...fn.params]) {\n const place = param.kind === 'Identifier' ? param : param.pl...
2025-07-25T17:08:09
golang/go
14a4cb13e389d8dbc1ba3ba0097e208f1436a22a
ee7a2119ac17ea2a6bbf12b4c8001bf39c388166
cmd/compile: make prove use non-equality in subtraction for a stronger bound Given: s := /* slice */ k := /* proved valid index in s (0 <= k < len(s)) */ v := s[k:] len(v) >= 1, so v[0] needs no bounds check. However, for len(v) = len(s) - k, we only checked if len(s) >= k and so could only prove len(v) >= 0, t...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2187,24 +2187,22 @@ func (ft *factsTable) detectSubRelations(v *Value) {\n \t\treturn // x-y might overflow\n \t}\n \n-\t// Subtracting a positive number only makes\n-\t// things smaller.\n-\tif yLim.min >= 0 {\n+\t// Subtracting a positive no...
2026-01-29T19:45:27
electron/electron
0c27c1a3959bb3088cd4f60540cdffcec4b2b842
a528547dc87a18e572fa459d450faa1efa38ae44
fix: position window titlebar buttons correctly in Ubuntu on Wayland (#48490)
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -186,14 +186,3 @@ the one downloaded by `npm install`. Usage:\n ```sh\n export ELECTRON_OVERRIDE_DIST_PATH=/Users/username/projects/electron/out/Testing\n ```\n-\n-## Set By Electron\n-\n-Electron sets some variables in your environment at runtime....
2025-10-20T19:42:23
facebook/react
8c587a2a411fd6bd9d82b17ff1030eb263c564a1
12483a119bf21ab69f9837f65b6bed2ba55cb73e
[compiler] clarify text for setState-in-effect error (#33991) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33991). * #33993 * __->__ #33991 * #33984
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoSetStateInEffects.ts", "patch": "@@ -97,16 +97,21 @@ export function validateNoSetStateInEffects(\n errors.pushDiagnostic(\n CompilerDiagnostic.create({\n category:\n- ...
2025-07-25T17:07:55
nodejs/node
ca5956cb7ab051be2a3ae6c0f99e5e446db40b9a
ce29481a527ea8f2f88f6dc9a609829b34bd647c
util: safely inspect getter errors whose message throws PR-URL: https://github.com/nodejs/node/pull/60684 Fixes: https://github.com/nodejs/node/issues/60683 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -2544,9 +2544,9 @@ function formatProperty(ctx, value, recurseTimes, key, type, desc,\n if (ctx.getters && (ctx.getters === true ||\n (ctx.getters === 'get' && desc.set === undefined) ||\n (ctx.getters === 'set' && desc.set !== u...
2025-11-27T11:06:24
facebook/react
12483a119bf21ab69f9837f65b6bed2ba55cb73e
b2c30493ce891d6e066667aa4a49c51837deaebc
[compiler] Fix for edge cases of mutation of potentially frozen values (#33984) Fixes two related cases of mutation of potentially frozen values. The first is method calls on frozen values. Previously, we modeled unknown function calls as potentially aliasing their receiver+args into the return value. If the receiver...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -943,7 +943,10 @@ export function printAliasingEffect(effect: AliasingEffect): string {\n return `Assign ${printPlaceForAliasEffect(effect.into)} = ${printPlaceForAliasEffect(effect.from)}`;\n }\n case ...
2025-07-25T17:07:24
nodejs/node
e825de8e02c29d8ec7a081da338c07f5ab329101
634dc26605ada74c9e44492e97a247e867da1abf
test: fix debug test crashes caused by sea tests PR-URL: https://github.com/nodejs/node/pull/60807 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/sea/testcfg.py", "patch": "@@ -5,7 +5,15 @@\n def GetConfiguration(context, root):\n # We don't use arch-specific out folder in Node.js; use none/none to auto\n # detect release mode from GetVm and get the path to the executable.\n- vm = context.GetVm('none', 'none')\n+ try:\n+ vm =...
2025-11-27T10:22:58
facebook/react
36c2bf5c3e7cd2f804c04d261b675c14d09dcf14
190758e6236938283b51dce7d3fd21af6801a470
[DevTools] Allow all file links in Chrome DevTools to open in external editor (#33985) Stacked on #33983. Allow React to be configured as the default handler of all links in Chrome DevTools. To do this you need to configure the Chrome DevTools setting for "Link Handling:" to be set to "React Developer Tools". By defa...
[ { "path": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -18,7 +18,12 @@ import {\n LOCAL_STORAGE_TRACE_UPDATES_ENABLED_KEY,\n } from 'react-devtools-shared/src/constants';\n import {logEvent} from 'react-devtools-shared/src/Logger';\n-import {normalizeUrlIfValid} from 'react-devtool...
2025-07-25T14:27:09
vercel/next.js
a6d950a4450f81bc09dcbf755f305c2d54a5b6d3
d7732c57d6fb2fe0e1522d150dd9888633c6e1c3
Turbopack: fix static asset skew protection for edge and prerenders (#90238) - Edge Runtime was missing `globalThis.NEXT_CLIENT_ASSET_SUFFIX` at runtime - Prerenders were always running `globalThis.NEXT_CLIENT_ASSET_SUFFIX` set Fixups after #88828
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -241,7 +241,7 @@ pub async fn get_edge_chunking_context_with_client_assets(\n )\n .asset_base_path(Some(asset_prefix))\n .default_url_behavior(UrlBehavior {\n- suffix: AssetSuffix::Inferred,\n+ suffix: AssetSuffix:...
2026-02-20T17:31:02
golang/go
ee7a2119ac17ea2a6bbf12b4c8001bf39c388166
48788436b8c9a87d056e52cf90d493940b610b4d
cmd/link: remove AIX special case for first type descriptor It doesn't seem to be necessary, and removing it seems cleaner than adding an AIX case to the code in runtime.moduleTypelinks. Fixes #77365 Change-Id: I59fa56abf42e18017bd112481ea09d0cca47d105 Reviewed-on: https://go-review.googlesource.com/c/go/+/740220 Re...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2182,7 +2182,7 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \tcreateRelroSect := func(name string, symn sym.SymKind) *sym.Section {\n \t\tsect := state.allocateNamedDataSection(segRelro, genrelrosecname(name), []sym.SymKind{sym...
2026-01-29T08:51:32
nodejs/node
90980932a4c75d32f39d0afd31a41a8c2e01d796
23c58f01e561f86c8913da9f4f446231e4f84a19
doc: add fullName property to SuiteContext Add documentation for the missing fullName property in SuiteContext. This property returns the name of the suite and each of its ancestors, separated by '>'. The property has been available since v22.3.0 but was missing from the documentation. Fixes: https://github.com/node...
[ { "path": "doc/api/test.md", "patch": "@@ -3667,7 +3667,9 @@ the path of the root test file.\n ### `context.fullName`\n \n <!-- YAML\n-added: v22.3.0\n+added:\n+ - v22.3.0\n+ - v20.16.0\n -->\n \n The name of the test and each of its ancestors, separated by `>`.\n@@ -3970,6 +3972,16 @@ The absolute path o...
2025-11-25T19:34:19
facebook/react
142fd27bf6e1b46c554d436509bdf9b70f7ef042
7ca2d4cd2e263f1923d958b16797d20d3efbc194
[DevTools] Add Option to Open Local Files directly in External Editor (#33983) The `useOpenResource` hook is now used to open links. Currently, the `<>` icon for the component stacks and the link in the bottom of the components stack. But it'll also be used for many new links like stacks. If this new option is configu...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -26,7 +26,7 @@ import {\n import {localStorageSetItem} from 'react-devtools-shared/src/storage';\n \n import type {FrontendBridge} from 'react-devtools-shared/src/bridge';\n-import type {ReactFunctionLocation} from 'shared/ReactTypes';...
2025-07-25T14:16:43
electron/electron
413803188d29ba4064ccb1250302496aa1994a20
1cc2fce905ab320847d2b95321f5b4d63c65ac37
fix: background hover contrast for WCO buttons (#48568)
[ { "path": "shell/browser/ui/views/win_caption_button.cc", "patch": "@@ -11,6 +11,7 @@\n #include \"base/i18n/rtl.h\"\n #include \"base/numerics/safe_conversions.h\"\n #include \"base/win/windows_version.h\"\n+#include \"chrome/browser/ui/color/chrome_color_id.h\"\n #include \"chrome/grit/theme_resources.h\"...
2025-10-20T07:54:14
vercel/next.js
415e0df7a15b91a46fb0b85af5501d2cd000c163
ca0957df545d2b7757bdf1a3a6343c65bffdbba9
[Instant] speed up test instant-validation suite (#90214) This PR speeds up the `instant-validation` test suite from 450s down to ~100s. We were wasting a lot of time in `waitForNoErrorToast()`, which ends up waiting almost 15s by default. The trick is to add some debug logs inside app-render to track when instant va...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -3615,13 +3615,39 @@ async function logMessagesAndSendErrorsToBrowser(\n }\n }\n \n+async function spawnStaticShellValidationInDev(\n+ ...args: Parameters<typeof spawnStaticShellValidationInDevImpl>\n+) {\n+ if (process.env.__N...
2026-02-20T05:57:04
rust-lang/rust
024acdd4b6e04efde74559f9a9416558d89aa165
fda6d37bb88ee12fd50fa54d15859f1f91b74f55
Fix ambiguous parsing in bootstrap.py
[ { "path": "src/bootstrap/bootstrap.py", "patch": "@@ -1259,7 +1259,12 @@ def check_vendored_status(self):\n \n def parse_args(args):\n \"\"\"Parse the command line arguments that the python script needs.\"\"\"\n- parser = argparse.ArgumentParser(add_help=False)\n+\n+ # Pass allow_abbrev=False to r...
2026-03-28T14:51:02
golang/go
48788436b8c9a87d056e52cf90d493940b610b4d
5593ea463498dce06a1b52dce2918912a9db6c4e
go/token: simplify fixOffset Each time I go to definition of this I am deeply confused at what I am looking, so let's clean this a bit with modern Go. Change-Id: I8f44e78f0cdde9b970388f9b98a2720e6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/738341 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/go/token/position.go", "patch": "@@ -276,26 +276,12 @@ func (f *File) AddLineColumnInfo(offset int, filename string, line, column int)\n \n // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.\n func (f *File) fixOffset(offset int) int {\n-\tswitch {\n-\tcase offset < 0...
2026-01-23T15:12:27
vercel/next.js
ca0957df545d2b7757bdf1a3a6343c65bffdbba9
2bf2c9c5f2e678cde27bba17ef31589325055c34
Prevent unhandled rejection filter from being bundled into the server runtime (#90205) The unhandled-rejection module was being bundled into server.runtime.prod.js AND loaded as a standalone file, causing installUnhandledRejectionFilter() to run twice. Each instance captured the other's handler as an underlying listen...
[ { "path": "packages/next/errors.json", "patch": "@@ -1064,5 +1064,6 @@\n \"1063\": \"`connection` must not be used within a Client Component. Next.js should be preventing `connection` from being included in Client Components statically, but did not in this case.\",\n \"1064\": \"createServerParamsForRou...
2026-02-20T04:48:45
facebook/react
7ca2d4cd2e263f1923d958b16797d20d3efbc194
99be14c883c5c83c9a087d37e19d93d6afb839ed
Work around Chrome DevTools crash on `performance.measure` (#33997)
[ { "path": "packages/react-client/src/ReactFlightPerformanceTrack.js", "patch": "@@ -110,7 +110,7 @@ export function logComponentRender(\n }\n debugTask.run(\n // $FlowFixMe[method-unbinding]\n- performance.measure.bind(performance, entryName, {\n+ performance.measure.bind(p...
2025-07-25T10:32:30
electron/electron
3bfe1f236345a7fa6e651ee24782c72a16a58b47
7e031f7e33dcc66cbe5e0e4153a0fc0544618612
chore: bump chromium to 143.0.7474.0 (main) (#48572) * chore: bump chromium in DEPS to 143.0.7474.0 * 7006208: [Mac] Fix rendering bug for manual occlusion detection on macOS 26 Refs https://chromium-review.googlesource.com/c/chromium/src/+/7006208 * chore: update patches * 7038563: Forward declare more in page_na...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7469.0',\n+ '143.0.7474.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2025-10-17T17:04:24
vercel/next.js
b6257d77e26d6cb5928ebcc0c99fc9d55066d58e
87f609e710650c5b05664ac1da3b2cd35a643d78
Fix OTEL propagation and add direct entrypoint e2e coverage (#90181) ## Summary - update tracing propagation behavior so forced extraction does not drop active context when no remote span context is present - keep existing custom-server OTEL e2e coverage intact - add a new production e2e scenario that invokes the buil...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -527,6 +527,9 @@ export async function handler(\n const method = req.method || 'GET'\n const tracer = getTracer()\n const activeSpan = tracer.getActiveScopeSpan()\n+ const isWrappedByNextServer = Boolean(\n+ routerServerContex...
2026-02-20T00:17:38
facebook/react
99be14c883c5c83c9a087d37e19d93d6afb839ed
5a04619f60221d9132f64f25b5a87b04c78fc7dc
[Flight] Promote enableAsyncDebugInfo to stable without enableComponentPerformanceTrack (#33996) There's a lot of overlap between `enableComponentPerformanceTrack` and `enableAsyncDebugInfo` because they both rely on timing information. The former is mainly emit timestamps for how long server components and awaits too...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -3647,7 +3647,7 @@ function initializeIOInfo(response: Response, ioInfo: ReactIOInfo): void {\n // $FlowFixMe[cannot-write]\n ioInfo.end += response._timeOrigin;\n \n- if (response._replayConsole) {\n+ if (enableComponentPerforma...
2025-07-25T08:59:46
golang/go
10ed9b6ed5ffadf16151d98a188a4242515b62e9
11722941452d04aa0364a5c6b60acffaa2776b1c
runtime: use smaller max align for arm32 Maybe fixes a dashboard build failure for linux/arm32 casued by CL 724261. This value comes from cmd/link/internal/arm/l.go (and in general, maxAlign in cmd/link/internal/$ARCH/<something>.go). Change-Id: I4d02cd41072da1b6ad6c7405044bd7788626b013 Reviewed-on: https://go-revie...
[ { "path": "src/runtime/type.go", "patch": "@@ -526,7 +526,11 @@ func moduleTypelinks(md *moduledata) []*_type {\n \tfor td < etypedesc {\n \t\t// TODO: The fact that type descriptors are aligned to\n \t\t// 0x20 does not make sense.\n-\t\ttd = alignUp(td, 0x20)\n+\t\tif GOARCH == \"arm\" {\n+\t\t\ttd = alig...
2026-01-28T23:39:46
electron/electron
7e031f7e33dcc66cbe5e0e4153a0fc0544618612
7580e3a5e2ce8870cf949795012cfa4d38fb28a1
ci: fix publish for macOS < 26.0 (#48575)
[ { "path": "build/args/all.gn", "patch": "@@ -19,6 +19,10 @@ proprietary_codecs = true\n \n enable_printing = true\n \n+# Refs https://chromium-review.googlesource.com/c/chromium/src/+/6986517\n+# CI is using MacOS 15.5 which doesn't have the required modulemaps.\n+use_clang_modules = false\n+\n # Removes DL...
2025-10-16T23:53:13
vercel/next.js
cf83d7c0b1b608006b72f8634f3ce67547273064
9a7733ed83bce9cc1264454ddc7335fdcfb0c1eb
fix(cache): DCE to avoid pulling server internals into browser bundles (4/8) (#89865) ## Summary Fix dead-code elimination in `packages/next/cache.js` to prevent server-only internals from being pulled into browser bundles. Restructures the conditional exports so bundlers can properly tree-shake server paths. ## Tes...
[ { "path": "packages/next/cache.js", "patch": "@@ -1,22 +1,53 @@\n-const cacheExports = {\n- unstable_cache: require('next/dist/server/web/spec-extension/unstable-cache')\n- .unstable_cache,\n+let cacheExports\n \n- updateTag: require('next/dist/server/web/spec-extension/revalidate')\n- .updateTag,\n...
2026-02-19T12:36:27
facebook/react
5a04619f60221d9132f64f25b5a87b04c78fc7dc
129aa85e1621f31d382d3b8bf7a5aa456daf3d59
[Flight] Properly close stream when no chunks need to be written after prerender (#33982) There is an edge case when prerendering where if you have nothing to write you can end up in a state where the prerender is in status closed before you can provide a destination. In this case the destination is never closed becua...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js", "patch": "@@ -863,4 +863,46 @@ describe('ReactFlightDOMNode', () => {\n expect(ownerStack).toBeNull();\n }\n });\n+\n+ // @gate experimental\n+ // @gate enableHalt\n+ it('can handle an empty prelude when p...
2025-07-25T02:38:31
golang/go
11722941452d04aa0364a5c6b60acffaa2776b1c
2bd7f15dd7423b6817939b199cd2c8032e3b79cc
runtime, cmd/link: store type descriptor length, not end Storing the type descriptor length lets us save a relocation. It also avoids a problem for Darwin dynamic linking. For #6853 Fixes #77350 Change-Id: If5c94330fe10d75690325f3d0b0658060ef3eb2d Reviewed-on: https://go-review.googlesource.com/c/go/+/739681 Reviewe...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1535,10 +1535,6 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \ttypes.SetSize(8)\n \tldr.SetAttrSpecial(types.Sym(), false)\n \n-\tetypedesc := ldr.CreateSymForUpdate(\"runtime.etypedesc\", 0)\n-\tetypedesc.SetType(sym.STYPE)\n-\tldr.SetAttrSpecial(e...
2026-01-28T01:34:46
electron/electron
7580e3a5e2ce8870cf949795012cfa4d38fb28a1
471a14432fa1dcae52e1716396521607a59ecd92
chore: update fix_harden_blink_scriptstate_maybefrom.patch (#48566)
[ { "path": "patches/chromium/fix_harden_blink_scriptstate_maybefrom.patch", "patch": "@@ -3,6 +3,9 @@ From: deepak1556 <hop2deep@gmail.com>\n Date: Wed, 28 Jun 2023 21:11:40 +0900\n Subject: fix: harden blink::ScriptState::MaybeFrom\n \n+NOTE: since https://chromium-review.googlesource.com/c/chromium/src/+/6...
2025-10-16T01:16:17
nodejs/node
d255fc7baee0d7fd014627e00d095adb81dcd23b
7fe808572702711ca2abad3bc8adad3c0d89eb6b
test_runner: fix line feed escaping in JUnit Replaces line feed characters with the correct character reference in XML attribute values. PR-URL: https://github.com/nodejs/node/pull/60274 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
[ { "path": "lib/internal/test_runner/reporter/junit.js", "patch": "@@ -19,11 +19,11 @@ const inspectOptions = { __proto__: null, colors: false, breakLength: Infinity }\n const HOSTNAME = hostname();\n \n function escapeAttribute(s = '') {\n- return escapeContent(RegExpPrototypeSymbolReplace(/\"/g, RegExpPro...
2025-11-23T18:39:24
vercel/next.js
9a7733ed83bce9cc1264454ddc7335fdcfb0c1eb
def0e3aabfa112ada22ece9297501c52471d34bd
Automatically build and clear native build when running `pnpm build` (#89819) ## What? Adds a `maybe-build-native.mjs` script to `packages/next-swc/` that conditionally rebuilds native SWC bindings during `pnpm build`. The script is integrated into the turborepo pipeline as the `build` task for `@next/swc`. ## Why? ...
[ { "path": "AGENTS.md", "patch": "@@ -367,8 +367,7 @@ When running Next.js integration tests, you must rebuild if source files have ch\n \n - **First run after branch switch/bootstrap (or if unsure)?** → `pnpm build`\n - **Edited only core Next.js files (`packages/next/**`) after bootstrap?** → `pnpm --filte...
2026-02-19T12:24:33
facebook/react
129aa85e1621f31d382d3b8bf7a5aa456daf3d59
bcea86945cd5324f1a7f324a48fd2c7cb36e569b
[compiler] Use diagnostic for "found suppression" error (#33981)
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/compilationMode-all-output.txt", "patch": "@@ -1,5 +1,5 @@\n import { c as _c } from \"react/compiler-runtime\"; // \n-        @compilationMode:\"all\"\n+@compilationMode:\"all\"\n function nonReactFn() {\n   const $ = _c(1);\n   l...
2025-07-24T22:54:24
golang/go
15882523a18cf7653c17e7c91aeaa1174a23702b
3c924059e66427eface8d357adcf1566e3be847a
go/parser: use (*Scanner).End in error testing Updates #74958 Change-Id: I43dcbff6ec828bddf157b2e6ec80df526a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/738700 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Rev...
[ { "path": "src/go/parser/error_test.go", "patch": "@@ -81,6 +81,8 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \n \tfor {\n \t\tpos, tok, lit := s.Scan()\n+\t\tend := s.End()\n+\n \t\tswitch tok {\n \t\tcase token.EOF:\n \t\t\treturn errors\n@@ -104,13 +106,7 @@ func...
2026-01-23T09:19:18
nodejs/node
49e56bfc55c9e77a77d232ec8a6ee84a432fa2d3
72dd0fa5cd1fa8b42e14cd69c15955145617fc30
doc: fix webstorage config file property PR-URL: https://github.com/nodejs/node/pull/60798 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "doc/node-config-schema.json", "patch": "@@ -186,6 +186,9 @@\n \"experimental-websocket\": {\n \"type\": \"boolean\"\n },\n+ \"experimental-webstorage\": {\n+ \"type\": \"boolean\"\n+ },\n \"extra-info-on-fatal-exception\": {\n \"t...
2025-11-21T08:09:25
facebook/react
bcea86945cd5324f1a7f324a48fd2c7cb36e569b
2ae8b3dacf2cd93900d86bc11f22768d507ddce7
[compiler][rfc] Enable more validations in playground. (#33777) This is mostly to kick off conversation, i think we should go with a modified version of the implemented approach that i'll describe here. The playground currently serves two roles. The primary one we think about is for verifying compiler output. We use ...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -142,7 +142,10 @@ const COMMON_HOOKS: Array<[string, Hook]> = [\n ],\n ];\n \n-function compile(source: string): [CompilerOutput, 'flow' | 'typescript'] {\n+function compile(\n+ source: string,\n+ mode: 'compiler' | 'lin...
2025-07-24T22:52:45
vercel/next.js
def0e3aabfa112ada22ece9297501c52471d34bd
99b4c96ee1e53478bfe2fefa9fe7bd21419fd430
fix: use Buffer.indexOf in uint8array helpers for faster byte scanning (3/8) (#89864) ## Summary Use `Buffer.indexOf` when available in `uint8array-helpers.ts` for faster byte sequence scanning. Falls back to the existing manual loop on non-Node environments. ## Test plan - [ ] `pnpm test-unit test/unit/stream-util...
[ { "path": "packages/next/src/server/stream-utils/uint8array-helpers.ts", "patch": "@@ -5,6 +5,14 @@ export function indexOfUint8Array(a: Uint8Array, b: Uint8Array) {\n if (b.length === 0) return 0\n if (a.length === 0 || b.length > a.length) return -1\n \n+ // Use Node's native implementation when avai...
2026-02-19T11:06:37
electron/electron
471a14432fa1dcae52e1716396521607a59ecd92
676406c9e6664ad94c818475249442100b068bf7
chore: bump chromium to 143.0.7469.0 (main) (#48548) * chore: bump chromium in DEPS to 143.0.7469.0 * 7021651: [//gpu] Fold handle creation into D3DImageBackingFactory Refs https://chromium-review.googlesource.com/c/chromium/src/+/7021651 * 7013047: Fix various C++23 build errors in //chrome Refs https://chromium-...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '143.0.7451.0',\n+ '143.0.7469.0',\n 'node_version':\n 'v22.20.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2025-10-15T21:10:10
golang/go
3c924059e66427eface8d357adcf1566e3be847a
7f0f67195194cb07122315d5ab563eb617dbe21a
go/scanner: add End method to Scanner Fixes #74958 Change-Id: I50ef64ae9ae6a762a7aada3d29914bae6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/738681 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "api/next/74958.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/scanner, method (*Scanner) End() token.Pos #74958", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/scanner/74958.md", "patch": "@@ -0,0 +1 @@\n+The scanner now allow...
2026-01-23T08:09:49