repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
electron/electron | b8d0f18ff82267e4ed7d51072b9dfd237b36fb57 | 96c2022483338b458782840be1e3a5b71b4c3f44 | docs: add docs about shared texture mode osr (#45670)
* docs: add docs about shared texture mode osr
* docs: add docs about shared texture mode osr
* docs: fix dot
* 更新 web-contents.md
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
---------
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com> | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -898,6 +898,8 @@ copying data between CPU and GPU memory, with Chromium's hardware acceleration s\n Only a limited number of textures can exist at the same time, so it's important that you call `texture.release()` as soon as you're done with the texture.\n ... | 2025-02-27T16:10:58 |
facebook/react | fc8a898dd126198305fce458edd084c5d9c4b67a | 97d794958f5b19b66a980f737facd890463f0cb8 | [compiler] Fix broken fire snapshot (#31920)
This was not committed in #31811
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31920).
* #31919
* #31918
* #31917
* #31916
* #31915
* __->__ #31920 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/transform-fire/error.invalid-rewrite-deps-spread.expect.md",
"patch": "@@ -12,9 +12,12 @@ function Component(props) {\n \n const deps = [foo, props];\n \n- useEffect(() => {\n- fire(foo(props));\n- }, ...deps);\n... | 2024-12-26T19:58:37 |
golang/go | ff61991aed2871301e3f4fafff65fd67d6b170b5 | 129d0cb543e1e15cdea706dd7230ee90c8d54446 | cmd/go: fix flaky TestScript/mod_get_direct
Use our local git server instead of cloud.google.com/go,
which may go down or otherwise reject our traffic.
I built and installed git 2.23.0 and confirmed that this
updated test still fails if CL 196961 is rolled back.
So the test is still accurate at detecting the problem.... | [
{
"path": "src/cmd/go/testdata/script/mod_get_direct.txt",
"patch": "@@ -2,14 +2,14 @@\n # 'GOPROXY=direct go get golang.org/x/tools/gopls@master' did not correctly\n # resolve the pseudo-version for its dependency on golang.org/x/tools.\n \n-[!net:cloud.google.com] skip\n+[short] skip\n [!git] skip\n \n en... | 2025-11-13T19:33:53 |
vercel/next.js | 5437319dd4b6354dac9a2ee2aa67cb12a983e2eb | 2ff2a7aadfcbccde8f2ea47a7dc72785f8e5b783 | [turbopack] Rename is_marked_as_side_effect_free to side_effects and return ModuleSideEffects enum (#87102)
Refactor the `is_marked_side_effect_free` API
* Rename `side_effects`
* Change it to return `ModuleSideEffects` instead of a `bool`
* Remove the `side_effect_packages` from its parameters, instead arrange to p... | [
{
"path": "crates/next-core/src/hmr_entry.rs",
"patch": "@@ -3,15 +3,15 @@ use std::io::Write;\n use anyhow::Result;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{ResolvedVc, ValueToString, Vc};\n-use turbo_tasks_fs::{FileSystem, VirtualFileSystem, glob::Glob, rope::RopeBuilder};\n+use turbo_tasks_... | 2025-12-12T17:36:13 |
rust-lang/rust | 31f31ab2fe7e1306a4d52806b654ab3ff8621d25 | c34e7ffda7356c37945e5e56e7372c0d5d1bf1bc | Fix overlap edit on record to tuple assist uses self
Example
---
```rust
struct $0Foo { field1: u32 }
impl Foo {
fn clone(&self) -> Self {
Self { field1: self.field1 }
}
}
```
**Before this PR**
Panic
**After this PR**
```rust
struct Foo(u32);
impl Foo {
fn clone(&self) -> Self {
Self(s... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_named_struct_to_tuple_struct.rs",
"patch": "@@ -3,12 +3,13 @@ use std::ops::RangeInclusive;\n use either::Either;\n use ide_db::{defs::Definition, search::FileReference};\n use syntax::{\n- SyntaxElement, SyntaxKind, SyntaxNode, T... | 2026-03-11T10:33:28 |
electron/electron | 96c2022483338b458782840be1e3a5b71b4c3f44 | ff05d4a96ca9652bea76f63270c0b19c0707a4e1 | chore: Fix typos (#45825) | [
{
"path": "build/profile_toolchain.py",
"patch": "@@ -45,7 +45,7 @@ def windows_profile():\n win_sdk_dir = SetEnvironmentAndGetSDKDir()\n path = NormalizePath(os.environ['GYP_MSVS_OVERRIDE_PATH'])\n \n- # since current windows executable are symbols path dependant,\n+ # since current windows e... | 2025-02-27T13:31:21 |
facebook/react | 97d794958f5b19b66a980f737facd890463f0cb8 | 94867f33be327a52bfffda89a14c85897180e43e | [assert helpers] Remove toWarnDev from fixtures/dom (#31894)
This is unused and never was:
https://github.com/facebook/react/commit/e6a0473c3c6f501dbe291f60b9ee35760ab99eed | [
{
"path": "fixtures/dom/src/__tests__/nested-act-test.js",
"patch": "@@ -14,8 +14,6 @@ let TestAct;\n \n global.__DEV__ = process.env.NODE_ENV !== 'production';\n \n-expect.extend(require('../toWarnDev'));\n-\n describe('unmocked scheduler', () => {\n beforeEach(() => {\n jest.resetModules();",
"a... | 2024-12-23T23:11:04 |
golang/go | 129d0cb543e1e15cdea706dd7230ee90c8d54446 | 77c5130100ac1b29bb2e04d0f5f99e200136c0af | net/http/cgi: accept INCLUDED as protocol for server side includes
The existing protocol check for fcgi/cgi requests did not properly
account for Apache SSI (Server-Side Includes) SERVER_PROTOCOL value of
INCLUDED.
Added check for well-known INCLUDED value for proper implementation of
the CGI Spec as specified in RFC... | [
{
"path": "src/net/http/cgi/child.go",
"patch": "@@ -57,8 +57,11 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {\n \n \tr.Proto = params[\"SERVER_PROTOCOL\"]\n \tvar ok bool\n-\tr.ProtoMajor, r.ProtoMinor, ok = http.ParseHTTPVersion(r.Proto)\n-\tif !ok {\n+\tif r.Proto == \"INCLUDE... | 2025-10-28T16:26:26 |
electron/electron | ff05d4a96ca9652bea76f63270c0b19c0707a4e1 | 989918a59c51c27dbda3d871afefeaeb0911e90b | docs: dialog.md - typo fix s/wndow/window/ (#45831)
Update dialog.md - typo fix | [
{
"path": "docs/api/dialog.md",
"patch": "@@ -228,7 +228,7 @@ The `filters` specifies an array of file types that can be displayed, see\n **Note:** On macOS, using the asynchronous version is recommended to avoid issues when\n expanding and collapsing the dialog.\n \n-### `dialog.showMessageBoxSync([wndow, ... | 2025-02-27T09:32:42 |
vercel/next.js | ae0603c4eecc41f3808aca123db46d88f1342c57 | b26b2b71792eebad4ade5362281a5bee68cd059e | Turbopack: bincode: Remove automatic serde derives from `#[turbo_tasks::value]` macro (#86634)
Removing the automatic `serde` derives from `#[turbo_tasks::value]` should remove most of the macro expansion. I'll follow up with removing all the manual derives.
This also removes `Serialize` from `NextConfig`, leaving on... | [
{
"path": "Cargo.lock",
"patch": "@@ -9879,7 +9879,6 @@ dependencies = [\n \"regex\",\n \"rustc-hash 2.1.1\",\n \"serde\",\n- \"serde_with\",\n \"turbo-bincode\",\n \"turbo-rcstr\",\n \"turbo-tasks\",\n@@ -9907,6 +9906,7 @@ dependencies = [\n \"anyhow\",\n \"markdown\",\n \"mdxjs\",\n+ \"serde\",\n... | 2025-12-12T17:09:37 |
nodejs/node | 7be2528e05448a9a291ec679aa823d119c997141 | 9523c84c17d5ac00f62c1ca356a91bc397e81da0 | tools: compile maglev files into v8_compiler if maglev is disabled
v8_compiler needs maglev graph builder even if maglev is disabled. But
the required files shouldn't be compiled into v8_internal_headers, which
both v8_base_without_compiler and v8_compiler depends on, causing
duplicate symbols during linking if maglev... | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -636,11 +636,6 @@\n '<!@pymod_do_main(GN-scraper \"<(V8_ROOT)/BUILD.gn\" \"v8_header_set.\\\\\"v8_internal_headers\\\\\".*?sources = \")',\n ],\n 'conditions': [\n- ['v8_enable_maglev==0', {\n- 'sources': [\n- ... | 2025-06-27T06:44:05 |
facebook/react | 45a720f7c7ff98e22fb299b50fef90fe319081a7 | ab27231dc51aa2535df37555797e630d31047fa4 | [compile] Error on fire outside of effects and ensure correct compilation, correct import (#31798)
Traverse the compiled functions to ensure there are no lingering fires
and that all
fire calls are inside an effect lambda.
Also corrects the import to import from the compiler runtime instead
-- | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -567,7 +567,10 @@ export function compileProgram(\n \n const hasFireRewrite = compiledFns.some(c => c.compiledFn.hasFireRewrite);\n if (environment.enableFire && hasFireRewrite) {\n- externalFuncti... | 2024-12-20T21:55:01 |
rust-lang/rust | 9a91c4f3b798f3f90ef2841dfe192241b9b8430a | d347767ebdd4f57625b3b8725d41d0b7086af574 | TB comment typo fixes | [
{
"path": "src/tools/miri/src/borrow_tracker/tree_borrows/wildcard.rs",
"patch": "@@ -50,8 +50,8 @@ impl WildcardAccessRelatedness {\n }\n }\n \n-/// Caches information about where in the tree exposed nodes with permission to do reads/ rites are\n-/// located. [`ExposedCache`] stores this information a ... | 2026-03-14T08:39:32 |
golang/go | 028375323f39b2d59bae0abfe20ba187c42bcf16 | 4ebf295b0b1740caac6302cc824ebd0f6175c1d5 | cmd/go/internal/modfetch/codehost: fix flaky TestReadZip
In normal use by the go command, ReadZip always happens after Stat,
which makes sure that the relevant revision has been fetched to
local disk. But TestReadZip calls ReadZip directly, and ReadZip was not
ensuring that fetch had happened.
This made 'go test' pas... | [
{
"path": "src/cmd/go/internal/modfetch/codehost/vcs.go",
"patch": "@@ -624,15 +624,20 @@ func (r *vcsRepo) ReadZip(ctx context.Context, rev, subdir string, maxSize int64\n \t\treturn nil, vcsErrorf(\"vcs %s: ReadZip: %w\", r.cmd.vcs, errors.ErrUnsupported)\n \t}\n \n+\tif rev == \"latest\" {\n+\t\trev = r.... | 2025-11-13T16:43:55 |
electron/electron | 9b6ba1ced11b705daedca170990ec762406243fd | 7870ade07af069798128a2a9df7dafedb544a4de | fix: re-enable MacWebContentsOcclusion feature flag (#45775) | [
{
"path": "patches/chromium/revert_code_health_clean_up_stale_macwebcontentsocclusion.patch",
"patch": "@@ -17,27 +17,85 @@ Refs: https://chromium-review.googlesource.com/c/chromium/src/+/6078344\n This partially (leaves the removal of the feature flag) reverts\n ef865130abd5539e7bce12308659b19980368f12.\n ... | 2025-02-25T17:28:09 |
nodejs/node | 9ab976397da80e84ebf9ed12c3e7bd308aab6de1 | b890c51ff29081c81a40d4910071cfdd80c40ff5 | fs: close dir before throwing if `options.bufferSize` is invalid
PR-URL: https://github.com/nodejs/node/pull/58856
Fixes: https://github.com/nodejs/node/issues/58854
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "lib/internal/fs/dir.js",
"patch": "@@ -59,7 +59,13 @@ class Dir {\n }),\n };\n \n- validateUint32(this.#options.bufferSize, 'options.bufferSize', true);\n+ try {\n+ validateUint32(this.#options.bufferSize, 'options.bufferSize', true);\n+ } catch (validationError) {\n+ ... | 2025-07-06T05:32:45 |
facebook/react | 03297e048d08de2f7c4c0d2950e2cb1c13875f66 | 99471c02dd6631df1892bf76d932afd22fffa5e3 | [compiler] transform fire calls (#31796)
This is the diff with the meaningful changes. The approach is:
1. Collect fire callees and remove fire() calls, create a new binding
for the useFire result
2. Update LoadLocals for captured callees to point to the useFire result
3. Update function context to reference useFi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -98,6 +98,7 @@ import {validateNoJSXInTryStatement} from '../Validation/ValidateNoJSXInTryState\n import {propagateScopeDependenciesHIR} from '../HIR/PropagateScopeDependenciesHIR';\n import {outlineJSX} from ... | 2024-12-20T20:09:09 |
vercel/next.js | aaee236cb587eabd4c72bfd6d942d54b705fe59d | 6cc51a3b8a3030d456965a24a85f094842c2fac1 | Update self-hosting.mdx (#87109)
small typo fix
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "docs/01-app/02-guides/self-hosting.mdx",
"patch": "@@ -218,7 +218,7 @@ module.exports = {\n \n ## Usage with CDNs\n \n-When using a CDN in front on your Next.js application, the page will include `Cache-Control: private` response header when dynamic APIs are accessed. This ensures that the result... | 2025-12-12T16:23:09 |
golang/go | 4ebf295b0b1740caac6302cc824ebd0f6175c1d5 | 625d8e9b9cd7ede188a8856c5ac88791333baa63 | runtime: prefer to restart Ps on the same M after STW
Today, Ps jump around arbitrarily across STW. Instead, try to keep the P
on the previous M it ran on. In the future, we'll likely want to try to
expand this beyond STW to create a more general affinity for specific
Ms.
For this to be useful, the Ps need to have ru... | [
{
"path": "src/internal/trace/testtrace/helpers.go",
"patch": "@@ -16,8 +16,7 @@ import (\n \t\"testing\"\n )\n \n-// MustHaveSyscallEvents skips the current test if the current\n-// platform does not support true system call events.\n+// Dump saves the trace to a file or the test log.\n func Dump(t *testin... | 2025-10-24T19:14:59 |
facebook/react | a9bbe34622885ef5667d33236d580fe7321c0d8b | 17520b638190a20e745fe53299813b29b52dfc4c | [Flight] Reject any new Chunks not yet discovered at the time of reportGlobalError (#31851)
Same as #31840 but for the Flight Client. | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -307,6 +307,8 @@ export type Response = {\n _rowTag: number, // 0 indicates that we're currently parsing the row ID\n _rowLength: number, // remaining bytes in the row. 0 indicates that we're looking for a newline.\n _buffer: Arr... | 2024-12-19T05:03:40 |
electron/electron | 698cce67079ce8333d76ed3e865238bb31c82e7f | 3eab549369e1eeb758fb5c2b8a5f55fab2e4965d | fix: drag and drop icons on Windows (#45767) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -140,3 +140,4 @@ ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spell... | 2025-02-24T08:54:08 |
nodejs/node | b890c51ff29081c81a40d4910071cfdd80c40ff5 | f5da8f89ee6e6450746c54a0809d43d64006c0f8 | os: fix GetInterfaceAddresses memory lieaky
PR-URL: https://github.com/nodejs/node/pull/58940
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_os.cc",
"patch": "@@ -214,6 +214,9 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n+ auto cleanup =\n+ OnScopeLeave([&]() { uv_free_interface_addresses(interfaces, count); });\n+\n Local<Value> no_scope_id = Integer::New(iso... | 2025-07-05T17:33:23 |
vercel/next.js | c54eda4baaeb3826d9149b15c7bdc85039f8978d | b17b31f16eb0a761ecdc0b821234d3cbe24f499f | [turbopack] Mark packages as side effect free when local analysis determines that they are. (#86398)
This implements some simple static analysis to determine if modules are side effect free based on their top level module evaluation items.
The rules are simple
* declarations ✅
* literals ✅
* property access ✅ (... | [
{
"path": "Cargo.lock",
"patch": "@@ -9775,6 +9775,7 @@ dependencies = [\n \"once_cell\",\n \"parking_lot\",\n \"petgraph 0.8.3\",\n+ \"phf\",\n \"regex\",\n \"rustc-hash 2.1.1\",\n \"serde\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crates/next-core/sr... | 2025-12-12T06:22:38 |
golang/go | 625d8e9b9cd7ede188a8856c5ac88791333baa63 | 4684a26c2606eae5ec3d06d17f66a66374315a47 | runtime/pprof: fix goroutine leak profile tests for noopt
The goroutine leak profile tests currently rely on a function being
inlined, which results in a slightly different representation in the
pprof proto. This function is not inlined on the noopt builder.
Disable inlining of the one function which could be inlined... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -1569,6 +1569,9 @@ func containsCountsLabels(prof *profile.Profile, countLabels map[int64]map[strin\n \treturn true\n }\n \n+// Inlining disabled to make identification simpler.\n+//\n+//go:noinline\n func goroutineLeakExample() {\n \t<-make(chan str... | 2025-11-13T00:09:05 |
facebook/react | 17520b638190a20e745fe53299813b29b52dfc4c | 7de040ccfa49f4128f0f5c6a7a81c019b4a381b8 | [Fiber] Mark hydrated components in tertiary color (green) (#31829)
This is a follow up to #31752.
This keeps track in the commit phase whether this subtree was hydrated.
If it was, then we mark those components in the Components track as
green. Just like the phase itself is marked as green.
If the boundary client r... | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -1933,6 +1933,7 @@ const SUSPENDED_MARKER: SuspenseState = {\n dehydrated: null,\n treeContext: null,\n retryLane: NoLane,\n+ hydrationErrors: null,\n };\n \n function mountSuspenseOffscreenState(renderLanes: Lanes): Offsc... | 2024-12-19T04:53:54 |
electron/electron | 3e51ee516ea167ceb0c70367e8b08afe178e7a7b | e3f61b465dac3fa2d944e931fd5fec58d5e27498 | fix: rework and improve `legacyMainResolve` patch (#45754)
fix: rework and improve legacyMainResolve patch | [
{
"path": "patches/node/.patches",
"patch": "@@ -18,7 +18,7 @@ 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_revert_src_lb_reducing_c_calls_of_esm_lega... | 2025-02-22T16:06:04 |
nodejs/node | f5da8f89ee6e6450746c54a0809d43d64006c0f8 | 053467253dddc7aed19c4c19e40ba698714a0e4d | crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4
Reverts: https://github.com/nodejs/node/pull/56160
Fixes: https://github.com/nodejs/node/issues/56159
Fixes: https://github.com/nodejs/node/issues/58913
Refs: https://github.com/nodejs/node/pull/58121
PR-URL: https://github.com/nodejs/node/pull/58942... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -4061,6 +4061,19 @@ Type: Documentation-only\n \n The [`util.types.isNativeError`][] API is deprecated. Please use [`Error.isError`][] instead.\n \n+### DEP0198: Creating SHAKE-128 and SHAKE-256 digests without an explicit `options.outputLength`\n+\n+<!-- YA... | 2025-07-05T09:34:24 |
golang/go | 4684a26c2606eae5ec3d06d17f66a66374315a47 | 0f9c8fb29dfe70f3688bda95cb6cb38dfa7fff9f | spec: remove cycle restriction for type parameters
Fixes #75883.
Change-Id: I708c0594ef3182d3aca37a6358aa0a0ef89809b6
Reviewed-on: https://go-review.googlesource.com/c/go/+/711422
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Robert Griesemer <gri@google.c... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 9, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 12, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -2686,22 +2686,6 ... | 2025-10-13T23:57:34 |
facebook/react | faf6c4dfdcd3c9b3862af6a3afcb3d80abd407c0 | ef979d4703ffcd1f379a4b76195816bea3da3c81 | [flags] Remove debugRenderPhaseSideEffectsForStrictMode (#31839)
This is enabled everywhere, we can just use the inline `__DEV__` checks. | [
{
"path": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -92,7 +92,6 @@ import {\n DidDefer,\n } from './ReactFiberFlags';\n import {\n- debugRenderPhaseSideEffectsForStrictMode,\n disableLegacyContext,\n disableLegacyContextForFunctionComponents,\n enableProfilerCommitHooks,\... | 2024-12-18T22:51:12 |
nodejs/node | 19876f492e2a966f298499f0a8d297779be396b8 | cc856b3d5da2f8ee7ebc77afd0cb94f12b3827e5 | doc: move "Core Promise APIs" to "Completed initiatives"
PR-URL: https://github.com/nodejs/node/pull/58934
Fixes: https://github.com/nodejs/TSC/issues/1094
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: ... | [
{
"path": "doc/contributing/strategic-initiatives.md",
"patch": "@@ -8,7 +8,6 @@ agenda to ensure they are active and have the support they need.\n \n | Initiative | Champion | Links |\n | ---------------------- | --------------... | 2025-07-04T22:35:37 |
facebook/react | ef979d4703ffcd1f379a4b76195816bea3da3c81 | 95465dc4913377ab7e2fa98d956c87adb5e38e6c | [Flight Reply] Reject any new Chunks not yet discovered at the time of reportGlobalError (#31840)
We might have already resolved models that are not pending and so are
not rejected by aborting the stream. When those later get parsed they
might discover new chunks which end up as pending. These should be
errored sin... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMReplyEdge-test.js",
"patch": "@@ -245,4 +245,31 @@ describe('ReactFlightDOMReplyEdge', () => {\n ),\n );\n });\n+\n+ it('should abort when parsing an incomplete payload', async () => {\n+ const infinitePromise = new Pro... | 2024-12-18T20:56:57 |
golang/go | 0929d2197807c7b70ff0b1a17982259879e9c064 | f03d06ec1a69d77b4c43971cc474c3111a424c3a | cmd/go: keep objects alive while stopping cleanups
There are two places in cmd/go where cleanups are stopped before they
fire, and where the objects the cleanups are attached to may be dead
while we call Stop. This is essentially a race between Stop and the
cleanup being called. This can be fine, but these cleanups ar... | [
{
"path": "src/cmd/go/internal/base/limit.go",
"patch": "@@ -63,6 +63,12 @@ func AcquireNet() (release func(), err error) {\n \t\t\t<-netLimitSem\n \t\t}\n \t\tcleanup.Stop()\n+\n+\t\t// checker may be dead at the moment after we last access\n+\t\t// it in this function, so the cleanup can fire before Stop\... | 2025-11-12T18:22:58 |
electron/electron | 612da3ec47e0ca0c642a7409fe0135180cd45732 | 6248c2436a2fd4c503feeee7183fe0afc44df2c6 | chore: bump chromium to 135.0.7027.0 (main) (#45677)
* chore: bump chromium in DEPS to 135.0.7021.0
* chore: bump chromium in DEPS to 135.0.7023.0
* chore: update patches
* chore: gen-libc++-filenames.js
* [Extensions] Add a BUILD.gn file for the chrome.system.display API.
Refs https://chromium-review.googlesourc... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '135.0.7012.0',\n+ '135.0.7027.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2025-02-21T22:46:51 |
nodejs/node | 00ba5ff4d0b624ed5e39c16042f6d3bc8cee7b0f | 9501c868d4997992c3bf0e6717b45bc7852ffb71 | doc: fix `fetch` subsections in `globals.md`
PR-URL: https://github.com/nodejs/node/pull/58933
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chemi ... | [
{
"path": "doc/api/globals.md",
"patch": "@@ -579,7 +579,7 @@ The implementation is based upon [undici](https://undici.nodejs.org), an HTTP/1.\n written from scratch for Node.js. You can figure out which version of `undici` is bundled\n in your Node.js process reading the `process.versions.undici` property.... | 2025-07-04T16:44:16 |
rust-lang/rust | 17c079625c1f8ccd91a9a810e3bd8af73e67ebe8 | 0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a | tests/debuginfo/basic-stepping.rs: Add cdb test | [
{
"path": "tests/debuginfo/basic-stepping.rs",
"patch": "@@ -88,6 +88,45 @@\n //@ lldb-command: frame select\n //@ lldb-check: [...]let m: *const() = &a;[...]\n \n+// === CDB TESTS ===================================================================================\n+\n+// Enable source line support. See\n... | 2026-03-13T23:03:43 |
facebook/react | 1e9ef39a8742889f8414c7df9c9e6ef463fe3d01 | 7eb8234f7cbeda298fffb1566b5cc771c09eff2e | [flags] Delete enableSchedulerDebugger (#31826)
The tool for this isn't used so I killed it internally and we can clean
up the code to make it easier to reduce the scheduler code. | [
{
"path": "fixtures/scheduler/index.html",
"patch": "@@ -91,19 +91,8 @@ <h2>Tests:</h2>\n <div> If the counter advanced while you were away from this tab, it's correct.</div>\n </li>\n <li>\n- <p>Can pause execution, dump scheduled callbacks, and continue where it left off</p>\n- <bu... | 2024-12-18T18:29:22 |
golang/go | f03d06ec1a69d77b4c43971cc474c3111a424c3a | 48127f656b53bfb5d73e7281ad525dbc371eb4c6 | runtime: fix list test memory management for mayMoreStack
The NIH tests simply failed to allocate the nodes outside the heap at
all. The Manual tests failed to keep the nodes alive, allowing the GC to
collect them.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest
Change-Id: I6a6a636c434bb703d6888383d32d... | [
{
"path": "src/runtime/list_manual_test.go",
"patch": "@@ -21,10 +21,19 @@ type listedValManual struct {\n \tbNode runtime.ListNodeManual\n }\n \n+// ListHeadManual is intended to be used with objects where the lifetime of the\n+// object is managed explicitly, so it is OK to store as uintptr.\n+//\n+// Thi... | 2025-11-12T20:20:54 |
electron/electron | 6248c2436a2fd4c503feeee7183fe0afc44df2c6 | 8d58999135995bdd3032062c01623dee08d38ac2 | fix: re-enable synchronous spellcheck on Windows (#45712)
* fix: re-enable synchronous spellcheck on Windows
* revert: fix: empty suggestions with windows platform checker
---------
Co-authored-by: Samuel Maddock <smaddock@slack-corp.com> | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -140,3 +140,4 @@ revert_code_health_clean_up_stale_macwebcontentsocclusion.patch\n ignore_parse_errors_for_pkey_appusermodel_toastactivatorclsid.patch\n feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callbac... | 2025-02-21T22:45:46 |
vercel/next.js | d43d57afd0ff3b0b327adb0329c693e333cd830a | 8479550bc50d9483a0c857e6bc2874ad98f2fe5d | Remove urlencoded action handling & harden action ID checks (#87082)
- Removes support for urlencoded actions
- Errors when a server action request is received in apps that have no
server actions
- validate action ID in MPA actions before proceeding
---------
Co-authored-by: Josh Story <story@hey.com> | [
{
"path": "packages/next/errors.json",
"patch": "@@ -970,5 +970,8 @@\n \"969\": \"Invariant: nextConfig couldn't be loaded\",\n \"970\": \"process.env.NEXT_DEPLOYMENT_ID is missing but runtimeServerDeploymentId is enabled\",\n \"971\": \"The NEXT_DEPLOYMENT_ID environment variable value \\\"%s\\\" doe... | 2025-12-11T21:56:15 |
rust-lang/rust | b1b87ffdbc24e3928bf0aa4c766cd731ebbc641e | 3b1b0ef4d80d3117924d91352c8b6ca528708b3c | Add overview documentation for `std::mem`.
I heard that `std::mem` sounds scary to some people, and how it’s
described — “Basic functions for dealing with memory” — sounds even to
me like something that should be avoided, not even because it would be
unsafe, but because it is too low-level.
Let’s fix that by telling ... | [
{
"path": "library/core/src/mem/mod.rs",
"patch": "@@ -1,7 +1,32 @@\n-//! Basic functions for dealing with memory.\n+//! Basic functions for dealing with memory, values, and types.\n //!\n-//! This module contains functions for querying the size and alignment of\n-//! types, initializing and manipulating me... | 2026-03-12T19:35:39 |
nodejs/node | 51d9f3f5164380814d49a9af1418a73db850800b | f2ca1ec4003a711c20aa8c3de8a08b54bbca50bf | src: -Wunreachable-code error in crypto_context.cc
PR-URL: https://github.com/nodejs/node/pull/58901
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com> | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -77,8 +77,6 @@ static const char* const root_certs[] = {\n #include \"node_root_certs.h\" // NOLINT(build/include_order)\n };\n \n-static const char system_cert_path[] = NODE_OPENSSL_SYSTEM_CERT_PATH;\n-\n static std::string extra_root_certs_file; // ... | 2025-06-30T09:40:40 |
facebook/react | 7eb8234f7cbeda298fffb1566b5cc771c09eff2e | 2bd1c756c6fffefb00cdb2986218fa2701ece82e | [Flight] Fix double-incremented pending chunks counter (#31833)
Before calling `emitTimingChunk` inside of `forwardDebugInfo`, we must
not increment `request.pendingChunks`, as this is already done inside of
the `emitTimingChunk` function.
I don't have a unit test for this, but manually verified that this fixes
... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -3810,11 +3810,11 @@ function forwardDebugInfo(\n debugInfo: ReactDebugInfo,\n ) {\n for (let i = 0; i < debugInfo.length; i++) {\n- request.pendingChunks++;\n if (typeof debugInfo[i].time === 'number') {\n // When for... | 2024-12-18T15:35:02 |
rust-lang/rust | ddd1a69483c9a5503b5f2e0b563d9b015f164b86 | 314e224fa5cd0312975eaac809203baa108e743a | Remove `Clone` derive on `QueryJobInfo`.
This requires refactoring `depth_limit_error` to do some extra work
immediately instead of returning a cloned `info`. | [
{
"path": "compiler/rustc_query_impl/src/job.rs",
"patch": "@@ -46,7 +46,7 @@ impl<'tcx> QueryJobMap<'tcx> {\n }\n }\n \n-#[derive(Clone, Debug)]\n+#[derive(Debug)]\n pub(crate) struct QueryJobInfo<'tcx> {\n pub(crate) frame: QueryStackFrame<'tcx>,\n pub(crate) job: QueryJob<'tcx>,\n@@ -88,26 +8... | 2026-03-10T03:00:45 |
electron/electron | 324fc0f62a1bd30300e2493c591e5a5103b900c4 | f62668e2e3b9cbe4c6b7584cd76621acc1c751da | fix: crash on `getUserMedia` with invalid `chromeMediaSourceId` (#45733)
* fix: crash on getUserMedia with invalid chromeMediaSourceId
* test: add a test | [
{
"path": "shell/browser/web_contents_permission_helper.cc",
"patch": "@@ -101,16 +101,20 @@ void HandleUserMediaRequest(const content::MediaStreamRequest& request,\n : \"\");\n }\n \n- if (request.video_type == MediaStreamType::GUM_TAB_VIDEO_CAPTURE ||\n- request.video_type == MediaStre... | 2025-02-21T16:17:52 |
vercel/next.js | 8c5af211d580b2b94c535cf4ff4e8be57c963491 | e760fa231d913a93518f38ff94214b2d1defd751 | Fix: Server refresh() should not purge client cache (#86878)
The server form of refresh() is used to re-render all the dynamic data
on the current page. Unlike updateTag/revalidateTag, it does not affect
any cached data, so the client cache should not evict any of its
entries. | [
{
"path": "packages/next/src/client/components/app-router-headers.ts",
"patch": "@@ -34,3 +34,6 @@ export const NEXT_IS_PRERENDER_HEADER = 'x-nextjs-prerender' as const\n export const NEXT_ACTION_NOT_FOUND_HEADER = 'x-nextjs-action-not-found' as const\n export const NEXT_REQUEST_ID_HEADER = 'x-nextjs-reques... | 2025-12-11T18:26:28 |
nodejs/node | f2ca1ec4003a711c20aa8c3de8a08b54bbca50bf | 06b0987f12ced28f9e479420213d463876747154 | src: fix -Wunreachable-code-return in src/node_contextify.cc
PR-URL: https://github.com/nodejs/node/pull/58901
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com> | [
{
"path": "src/node_contextify.cc",
"patch": "@@ -733,7 +733,6 @@ Intercepted ContextifyContext::PropertyDefinerCallback(\n // kYes to behave according to the expected semantics.\n return Intercepted::kNo;\n }\n- return Intercepted::kNo;\n }\n \n // static",
"additions": 0,
"deletions": 1... | 2025-06-30T09:21:21 |
facebook/react | 975cea2d3ddb95ad31f10ae112bdde5101725c85 | 49b1a956a915da972e60221e9610d383fac08bd7 | Enable debugRenderPhaseSideEffectsForStrictMode in test renderers (#31761)
This flag controls the strict mode double invoke render/lifecycles/etc
behavior in Strict Mode.
The only place this flag is off is the test renderers, which it should
be on for.
If we can land this, we can follow up to remove the flag. | [
{
"path": "packages/shared/forks/ReactFeatureFlags.test-renderer.js",
"patch": "@@ -10,7 +10,7 @@\n import typeof * as FeatureFlagsType from 'shared/ReactFeatureFlags';\n import typeof * as ExportsType from './ReactFeatureFlags.test-renderer';\n \n-export const debugRenderPhaseSideEffectsForStrictMode = fal... | 2024-12-17T03:52:18 |
rust-lang/rust | 60bd8e36cd8f2b534ba2979ddc04cef7a34dca32 | 1867653c81ac31900ae623e3970dba8f833bf870 | Enable the const_closures feature gate to silence an unrelated error | [
{
"path": "tests/ui/traits/const-traits/ice-112822-expected-type-for-param.rs",
"patch": "@@ -1,8 +1,9 @@\n-#![feature(const_trait_impl)]\n+#![feature(const_trait_impl, const_closures)]\n+#![allow(incomplete_features)]\n \n const fn test() -> impl [const] Fn() {\n //~^ ERROR: }: [const] Fn()` is not sat... | 2026-03-13T07:37:12 |
vercel/next.js | 8d3cbecb8b8257ed5f5c6c31edd325d1b4974505 | 593cef1b97c7524d786510487c6df240d7453011 | bundle-analyzer: fix regression and add basic smoke test (#87010) | [
{
"path": "packages/next/src/build/turbopack-analyze/index.ts",
"patch": "@@ -1,3 +1,6 @@\n+import type { NextConfigComplete } from '../../server/config-shared'\n+import type { __ApiPreviewProps } from '../../server/api-utils'\n+\n import path from 'path'\n import { validateTurboNextConfig } from '../../lib... | 2025-12-11T04:13:12 |
nodejs/node | 06b0987f12ced28f9e479420213d463876747154 | 560d00ffb716fc445b4eccc203c272cf924bb83c | src: fix -Wunreachable-code in src/node_api.cc
PR-URL: https://github.com/nodejs/node/pull/58901
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com> | [
{
"path": "src/node_api.cc",
"patch": "@@ -1058,8 +1058,7 @@ napi_create_external_buffer(napi_env env,\n \n #ifdef V8_ENABLE_SANDBOX\n return napi_set_last_error(env, napi_no_external_buffers_allowed);\n-#endif // V8_ENABLE_SANDBOX\n-\n+#else\n v8::Isolate* isolate = env->isolate;\n \n // The finaliz... | 2025-06-30T09:15:36 |
facebook/react | d325f872de658fc26127a91c965c135d8ad4e877 | ac172706526a840100302f92ae90dfa4ad804c56 | [compiler][be] Logger based debug printing in test runner (#31809)
Avoid mutable logging enabled state and writing to `process.stdout`
within our babel transform. | [
{
"path": "compiler/packages/babel-plugin-react-compiler/package.json",
"patch": "@@ -42,9 +42,7 @@\n \"babel-jest\": \"^29.0.3\",\n \"babel-plugin-fbt\": \"^1.0.0\",\n \"babel-plugin-fbt-runtime\": \"^1.0.0\",\n- \"chalk\": \"4\",\n \"eslint\": \"^8.57.1\",\n- \"glob\": \"^7.1.6\",\n ... | 2024-12-16T20:15:13 |
golang/go | 0c28789bd7dfc55099cac86a3212dda0d6c091f6 | 4e761b9a181a090ca9ec52916c4aef93c4cbc090 | net/url: disallow raw IPv6 addresses in host
RFC 3986 requires square brackets around IPv6 addresses.
Parse's acceptance of raw IPv6 addresses is non compliant,
and complicates splitting out a port.
This is a resubmission of CL 710176 after the revert in CL 711800,
this time with a new urlstrictipv6 godebug to contro... | [
{
"path": "doc/godebug.md",
"patch": "@@ -163,6 +163,11 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlstrictcolons` setting ... | 2025-10-18T09:31:12 |
vercel/next.js | 593cef1b97c7524d786510487c6df240d7453011 | 42690262d69988cd95e8317a725095f8f75f85cd | docs: remove deprecated url.parse() from custom server example (#86986)
This PR updates the custom server documentation to remove usage of
Node's
deprecated `url.parse()` API. The example does not require URL parsing,
since
the `parsedUrl` argument is optional for the Next.js `RequestHandler`.
Removing `url.parse()` ... | [
{
"path": "docs/01-app/02-guides/custom-server.mdx",
"patch": "@@ -27,9 +27,9 @@ const handle = app.getRequestHandler()\n \n app.prepare().then(() => {\n createServer((req, res) => {\n- const parsedUrl = parse(req.url!, true)\n- handle(req, res, parsedUrl)\n+ handle(req, res)\n }).listen(port)\... | 2025-12-10T13:58:36 |
facebook/react | 80b81fe56353f7419bd07ecfc3534d274a413fca | e30872a4e01bdc0cf185a818156ae7741c815e21 | [compiler] Repro for aliased captures within inner function expressions (#31770)
see fixture | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-capturing-func-maybealias-captured-mutate.expect.md",
"patch": "@@ -0,0 +1,129 @@\n+\n+## Input\n+\n+```javascript\n+import {makeArray, mutate} from 'shared-runtime';\n+\n+/**\n+ * Bug repro:\n+ * Found differences ... | 2024-12-16T19:43:34 |
nodejs/node | 1539f3b727a49fddd8b71eb6ea07aa3251d4afaf | 247672d078c6b0ee69c3f9581c0a141458c16843 | deps: V8: cherry-pick 0ce2edb7adfd
Original commit message:
Fix invalid template specialization
Bug: chromium:40565911
Change-Id: If206c140e99e24a6df4ee7351e8022748eabac22
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6491420
Auto-Submit: Bruno Pitrus <brunopitrus@hotmail.com>
... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js #####\n... | 2025-07-04T12:56:56 |
golang/go | 8873e8bea29ac6de5fecee88b8b81239bd2eb179 | b8b84b789e4275aeea491dbdb50536facd1fa7d7 | runtime,runtime/pprof: clean up goroutine leak profile writing
Cleaned up goroutine leak profile extraction:
- removed the acquisition of goroutineProfile semaphore
- inlined the call to saveg when recording stacks instead of using
doRecordGoroutineProfile, which had side-effects over
goroutineProfile fields.
Added r... | [
{
"path": "src/runtime/mprof.go",
"patch": "@@ -1261,7 +1261,7 @@ func goroutineProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.P\n \n //go:linkname pprof_goroutineLeakProfileWithLabels\n func pprof_goroutineLeakProfileWithLabels(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n in... | 2025-11-06T09:53:28 |
vercel/next.js | 5099903e88943df679d69d81f088a2b7b699f0c6 | 24ccec0505c22c7cbe7c8f767e26aa56a6016e96 | bundle-analyzer: add kbd shortcut labels and fix focus bugs (#87001)
- Adds decorated kbd-style shortcut labels to cue the user into using them
- Listens only for the appropriate OS or Ctrl key on Mac/Others
- Esc now clears and focuses the search field and the treemap focus
- Does not trigger in the case where the us... | [
{
"path": "apps/bundle-analyzer/app/page.tsx",
"patch": "@@ -1,18 +1,15 @@\n 'use client'\n \n import type React from 'react'\n-import { useEffect, useMemo, useRef, useState } from 'react'\n+import { useEffect, useMemo, useState } from 'react'\n import useSWR from 'swr'\n import { ErrorState } from '@/compo... | 2025-12-10T07:36:19 |
facebook/react | e30872a4e01bdc0cf185a818156ae7741c815e21 | 54e86bd0d0eac76320c8810090810e7a858125d6 | [compiler][be] Playground now compiles entire program (#31774)
Compiler playground now runs the entire program through
`babel-plugin-react-compiler` instead of a custom pipeline which
previously duplicated function inference logic from `Program.ts`. In
addition, the playground output reflects the tranformed file (i... | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/01-user-output.txt",
"patch": "@@ -1,4 +1,5 @@\n-function TestComponent(t0) {\n+import { c as _c } from \"react/compiler-runtime\";\n+export default function TestComponent(t0) {\n const $ = _c(2);\n const { x } = t0;\n let t1... | 2024-12-16T19:43:21 |
nodejs/node | 8db664f72ccc9471e09992c20d90de862f90e2b0 | 6a3b545b4da83cf54b82bdb89cd3ad8b2aec6fe7 | deps: V8: cherry-pick 1d7159580156
Original commit message:
[explicit-resource-management] Clear isolate internal exception
This CL clears the isolate internal exception before rejecting
the promise.
Bug: 418103036
Change-Id: If3748f7fc4b79b7b5be5009b9fff0d0267541a6f
Reviewed-on: https://chr... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n... | 2025-06-18T06:48:13 |
electron/electron | d8baceb08caae374d3931d5747152e3971a1a379 | d6f4982522efd5917b44d1ceed418e4a0ee7824e | fix: crash loading `about:blank` in subframes (#45694)
fix: crash loading about:blank in subframes | [
{
"path": "patches/chromium/fix_crash_loading_non-standard_schemes_in_iframes.patch",
"patch": "@@ -28,17 +28,17 @@ The patch should be removed in favor of either:\n Upstream bug https://bugs.chromium.org/p/chromium/issues/detail?id=1081397.\n \n diff --git a/content/browser/renderer_host/navigation_request... | 2025-02-20T17:07:15 |
golang/go | b8b84b789e4275aeea491dbdb50536facd1fa7d7 | c761b26b56eec36390885e5373aab2fd17dc67ef | cmd/go: clarify the -o testflag is only for copying the binary
Fixes #74769
Change-Id: Iebbaea8fb1a25e30a541a827815def9e269a8135
Reviewed-on: https://go-review.googlesource.com/c/go/+/709255
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Matloob <matloob... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1953,7 +1953,7 @@\n //\t Also emits build output in JSON. See 'go help buildjson'.\n //\n //\t-o file\n-//\t Compile the test binary to the named file.\n+//\t Save a copy of the test binary to the named file.\n //\t The test still runs (unless -c ... | 2025-10-05T18:21:59 |
vercel/next.js | 347c8dfaaf4afedce16fb632ec03545e0e4ecbf2 | ac8d891d9517f84da3450cb0bf2df1ad167fed0f | docs: use cache debugging notes (#86937)
Closes: https://github.com/vercel/next.js/issues/86896 | [
{
"path": "docs/01-app/03-api-reference/01-directives/use-cache.mdx",
"patch": "@@ -518,6 +518,24 @@ export default function ClientComponent({ action }) {\n \n ## Troubleshooting\n \n+### Debugging cache behavior\n+\n+#### Verbose logging\n+\n+Set `NEXT_PRIVATE_DEBUG_CACHE=1` for verbose cache logging:\n+\n... | 2025-12-09T20:22:51 |
facebook/react | 2d320563f35ad75419983f166431055b4e7ed9f6 | c80b336d23aa472b5e5910268138ac0447d6ae19 | [flags] Delete enableDebugTracing (#31780)
This is unused, even in the one builds that uses it, and we don't plan
on landing it in this form. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationModes-test.js",
"patch": "@@ -37,56 +37,6 @@ describe('ReactDOMServerIntegration', () => {\n resetModules();\n });\n \n- // Test pragmas don't support itRenders abstraction\n- if (\n- __EXPERIMENTAL__ &&\n- require('shared/Re... | 2024-12-15T17:16:10 |
nodejs/node | 46508d9dd858ae8140ea121af9496bfee8c21b4f | 8173d9d72b02c18e1ec5b8e10a91fbd455781f5f | src,permission: enhance permission model debug
This commit enhance the permission model debug logs
when NODE_DEBUG_NATIVE=PERMISSION_MODEL is used
Example
Inserting /Users/rafaelgss/repos/os/node/t.js
└─ /
├─ Users/rafaelgss/repos/os/node/t.js
└─ tm
├─ 3
├─ 2
└─ p/*
Signed-off-by: RafaelGSS ... | [
{
"path": "src/permission/fs_permission.cc",
"patch": "@@ -72,43 +72,53 @@ bool is_tree_granted(\n return granted_tree->Lookup(resolved_param, true);\n }\n \n-void PrintTree(const node::permission::FSPermission::RadixTree::Node* node,\n- size_t spaces = 0) {\n- std::string whitespace(spaces... | 2025-07-02T17:37:13 |
rust-lang/rust | 384f363b7023244df33bef7eb8070a334eae9b48 | 0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a | change "error finalizing incremental compilation" from warning to note
The warning has no error code, so in a `-D warnings` environment, it's
impossible to ignore if it consistently breaks your build. Change it
to a note so it is still visible, but doesn't break the build | [
{
"path": "compiler/rustc_incremental/src/persist/fs.rs",
"patch": "@@ -366,7 +366,7 @@ pub fn finalize_session_directory(sess: &Session, svh: Option<Svh>) {\n }\n Err(e) => {\n // Warn about the error. However, no need to abort compilation now.\n- sess.dcx().emit_warn... | 2026-03-13T18:32:54 |
electron/electron | d6f4982522efd5917b44d1ceed418e4a0ee7824e | 9d558cec5ef74c45a18daf3ea494cb3ecc1ab3eb | fix: possible timing issue in utility-process spec (#45690)
This fixture has been calling process.exit() immediately after writing
to stdout and stderr, which the Node.js docs say is risky behavior:
> Calling process.exit() will force the process to exit as quickly as
> possible even if there are still asynchronous o... | [
{
"path": "spec/fixtures/api/utility-process/log.js",
"patch": "@@ -1,3 +1,7 @@\n-console.log('hello');\n-process.stderr.write('world');\n-process.exit(0);\n+function write (writable, chunk) {\n+ return new Promise((resolve) => writable.write(chunk, resolve));\n+}\n+\n+write(process.stdout, 'hello\\n')\n+ ... | 2025-02-20T05:28:04 |
golang/go | c761b26b56eec36390885e5373aab2fd17dc67ef | 65858a146e585b74d41db63f3821d6a150f36d49 | mime: parse media types that contain braces
This CL fixes a bug introduced by CL 666655: isTokenChar would no longer
(but should) report true for '{' and '}'.
Fixes #76236
Change-Id: Ifc0953c30d7cae7bfba9bc4b6bb6951a83c52576
GitHub-Last-Rev: c91a75c2c8778a9a8343c6bb4fa89eb1f978059f
GitHub-Pull-Request: golang/go#762... | [
{
"path": "src/mime/grammar.go",
"patch": "@@ -62,7 +62,9 @@ func isTokenChar(c byte) bool {\n \t\t1<<'^' |\n \t\t1<<'_' |\n \t\t1<<'`' |\n+\t\t1<<'{' |\n \t\t1<<'|' |\n+\t\t1<<'}' |\n \t\t1<<'~'\n \treturn ((uint64(1)<<c)&(mask&(1<<64-1)) |\n \t\t(uint64(1)<<(c-64))&(mask>>64)) != 0",
"additions": 2,
... | 2025-11-10T21:20:09 |
facebook/react | c80b336d23aa472b5e5910268138ac0447d6ae19 | c32780eeb4c44e138d09a35da841926f512d3b07 | Implement requestPaint in the actual scheduler (#31784)
When implementing passive effects we did a pretty massive oversight.
While the passive effect is scheduled into its own scheduler task, the
scheduler doesn't always yield to the browser if it has time left. That
means that if you have a fast commit phase, it migh... | [
{
"path": "packages/scheduler/src/__tests__/Scheduler-test.js",
"patch": "@@ -183,7 +183,7 @@ describe('SchedulerBrowser', () => {\n it('task with continuation', () => {\n scheduleCallback(NormalPriority, () => {\n runtime.log('Task');\n- // Request paint so that we yield at the end of the ... | 2024-12-14T21:17:06 |
vercel/next.js | 7f5f0a69833c3e0e204cdc12d10a846154d5181f | 3f19ee59f0e056241e35a7494d869b2958159cb6 | enhance debug-build-paths on glob cases (#86953) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -969,5 +969,6 @@\n \"968\": \"Invariant: getNextConfigEdge must only be called in edge runtime\",\n \"969\": \"Invariant: nextConfig couldn't be loaded\",\n \"970\": \"process.env.NEXT_DEPLOYMENT_ID is missing but runtimeServerDeploymentId is enabled... | 2025-12-09T17:42:28 |
rust-lang/rust | fed57899b93d6e17b00bf00326d7b9aebdccc6e0 | cdbe2b35b55bb38ac503e0989e69cca9aa530ce5 | Remove `value_from_cycle_error` specialization for `type_of` | [
{
"path": "compiler/rustc_query_impl/src/from_cycle_error.rs",
"patch": "@@ -21,11 +21,6 @@ use rustc_span::{ErrorGuaranteed, Span};\n use crate::job::report_cycle;\n \n pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n- vtables.type_of.value_from_cycle_error = |tcx, _, _... | 2026-03-12T16:02:49 |
nodejs/node | 35d1511aaaf957acc2024c30c72a1fff9ca7ee21 | 983cfb8658cdcf785bcfddf979d6e8dbcfa12647 | meta: add IlyasShabi to collaborators
Fixes: https://github.com/nodejs/node/issues/58766
PR-URL: https://github.com/nodejs/node/pull/58916
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"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+* [IlyasShabi](http... | 2025-07-01T17:15:49 |
electron/electron | 9d558cec5ef74c45a18daf3ea494cb3ecc1ab3eb | 159e1a42b3d5ad1641acb318cf4c382f736c16f9 | fix: action.openPopup function missing (#45697) | [
{
"path": "shell/browser/extensions/api/extension_action/extension_action_api.cc",
"patch": "@@ -100,6 +100,13 @@ ExtensionActionSetIconFunction::RunExtensionAction() {\n return RespondNow(NoArguments());\n }\n \n+ExtensionFunction::ResponseAction\n+ExtensionActionOpenPopupFunction::RunExtensionAction() {... | 2025-02-19T23:05:02 |
facebook/react | c32780eeb4c44e138d09a35da841926f512d3b07 | d1dd7feabc63bf8ca61e9b3f4d78245a29ebbe9a | [Fiber] Highlight hydration and offscreen render phases (#31752)
This highlights the render phase as the tertiary color (green) when
we're render a hydration lane or offscreen lane.
I call the "Render" phase "Hydrated" instead in this case. For the
offscreen case we don't currently have a differentiation between
hydr... | [
{
"path": "packages/react-reconciler/src/ReactFiberLane.js",
"patch": "@@ -621,6 +621,18 @@ export function includesTransitionLane(lanes: Lanes): boolean {\n return (lanes & TransitionLanes) !== NoLanes;\n }\n \n+export function includesOnlyHydrationLanes(lanes: Lanes): boolean {\n+ return (lanes & Hydra... | 2024-12-14T18:49:47 |
vercel/next.js | 3f19ee59f0e056241e35a7494d869b2958159cb6 | 27c24bf79258597ebf67c5f558091d3ea4f9dcaf | fix: only call `captureOwnerStack` if it exists (#86982) | [
{
"path": "packages/next/src/server/node-environment-extensions/utils.tsx",
"patch": "@@ -160,8 +160,8 @@ function applyOwnerStack(error: Error) {\n // via `throwIfDisallowedDynamic`.\n if (process.env.NODE_ENV !== 'production') {\n const ownerStack =\n- getClientReact()?.captureOwnerStack() ??... | 2025-12-09T14:20:51 |
golang/go | 65858a146e585b74d41db63f3821d6a150f36d49 | 4bfc3a9d14c0b3bfcfe4ce987e47cda6720785a2 | os/exec: include Cmd.Start in the list of methods that run Cmd
Fixes #76265
Change-Id: I451271c5662dd3bcdeec07b55761b15f64c00dcd
Reviewed-on: https://go-review.googlesource.com/c/go/+/719860
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Alan Donovan <adonovan@google.com>
Auto-Submit: Keith Randall <khr@gol... | [
{
"path": "src/os/exec/exec.go",
"patch": "@@ -142,8 +142,8 @@ func (w wrappedError) Unwrap() error {\n \n // Cmd represents an external command being prepared or run.\n //\n-// A Cmd cannot be reused after calling its [Cmd.Run], [Cmd.Output] or [Cmd.CombinedOutput]\n-// methods.\n+// A Cmd cannot be reused... | 2025-11-11T21:08:26 |
rust-lang/rust | cdbe2b35b55bb38ac503e0989e69cca9aa530ce5 | 791f4f9315cdf85c5137c26070f2818d332d66b7 | Remove `value_from_cycle_error` specialization for `erase_and_anonymize_regions_ty` | [
{
"path": "compiler/rustc_query_impl/src/from_cycle_error.rs",
"patch": "@@ -26,11 +26,6 @@ pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n erase_val(ty::EarlyBinder::bind(Ty::new_error(tcx, guar)))\n };\n \n- vtables.erase_and_anonymize_regions_ty.value_fro... | 2026-03-12T15:35:50 |
nodejs/node | a7a37c3ac630d207859c8768f77935aeacbc485d | 2022f832a98b8f1130b6c84b8d17c208a96ce15f | crypto: fix inclusion of OPENSSL_IS_BORINGSSL define
PR-URL: https://github.com/nodejs/node/pull/58845
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Et... | [
{
"path": "src/node_config.cc",
"patch": "@@ -7,6 +7,10 @@\n #include \"node_options.h\"\n #include \"util-inl.h\"\n \n+#if HAVE_OPENSSL\n+#include \"ncrypto.h\" // Ensure OPENSSL_IS_BORINGSSL is defined if applicable\n+#endif\n+\n namespace node {\n \n using v8::Context;",
"additions": 4,
"deletio... | 2025-07-01T12:57:57 |
electron/electron | b50066f420c562fd4a86b2a286cb7ff26441416d | 22b7403cd1beb2aa95bec223ddd6f328c18b7f8c | fix: extension web workers net request failing (#45698) | [
{
"path": "shell/browser/electron_browser_client.cc",
"patch": "@@ -1074,6 +1074,12 @@ void ElectronBrowserClient::\n // reason for it, and we could consider supporting it in future.\n protocol_registry->RegisterURLLoaderFactories(factories,\n false /* all... | 2025-02-19T18:08:28 |
facebook/react | 0d67cc065157b2b98843cd1e2578b0969765c54b | 2e25ee373d96a882cee9a1ee3d7fee3f498bde2d | Fix `commong` typo in <title> multiple children error message (#31777) | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -3080,7 +3080,7 @@ function pushTitle(\n console.error(\n 'React expects the `children` prop of <title> tags to be a string, number, bigint, or object with a novel `toString` method but found an Array wi... | 2024-12-14T17:32:58 |
rust-lang/rust | 791f4f9315cdf85c5137c26070f2818d332d66b7 | 0e4bafc47cfd39fbe620226e1b9fceeeb8af9e8a | Remove `value_from_cycle_error` specialization for `type_of_opaque_hir_typeck` | [
{
"path": "compiler/rustc_query_impl/src/from_cycle_error.rs",
"patch": "@@ -26,11 +26,6 @@ pub(crate) fn specialize_query_vtables<'tcx>(vtables: &mut QueryVTables<'tcx>) {\n erase_val(ty::EarlyBinder::bind(Ty::new_error(tcx, guar)))\n };\n \n- vtables.type_of_opaque_hir_typeck.value_from_cyc... | 2026-03-12T14:55:28 |
vercel/next.js | 73f507625796f83edb397626e29cff318e5a3c48 | 9be830659405e82e2d9a2e6a61ec196652a4fab1 | docs: fix generateSitemaps returned type signature (#86984)
Closes: https://github.com/vercel/next.js/issues/86959 | [
{
"path": "docs/01-app/02-guides/upgrading/version-16.mdx",
"patch": "@@ -363,8 +363,8 @@ export async function generateSitemaps() {\n \n // Next.js 16 - asynchronous id access\n export default async function sitemap({ id }) {\n- const resolvedId = await id // id is now Promise<number>\n- const start = re... | 2025-12-09T12:01:22 |
nodejs/node | 16035b4bbe1e3566d5cb57011b6e40cdffb049d1 | c08a1d152b758a1b97b81e9edce6ed60faaf4063 | doc: fix links in test.md
Links explaining the various target file-related `run([options])`
pointed to the wrong section.
PR-URL: https://github.com/nodejs/node/pull/58876
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> | [
{
"path": "doc/api/test.md",
"patch": "@@ -1360,16 +1360,16 @@ changes:\n If `false`, it would only run one test file at a time.\n **Default:** `false`.\n * `cwd`: {string} Specifies the current working directory to be used by the test runner.\n- Serves as the base path for resolving files acco... | 2025-06-30T19:50:14 |
golang/go | 4bfc3a9d14c0b3bfcfe4ce987e47cda6720785a2 | 2263d4aabdde8a4a466009ecc356501f87c7efb7 | std,cmd: go fix -any std cmd
This change mechanically replaces all occurrences of interface{}
by 'any' (where deemed safe by the 'any' modernizer) throughout
std and cmd, minus their vendor trees.
Since this fix is relatively numerous, it gets its own CL.
Also, 'go generate go/types'.
Change-Id: I14a6b52856c3291c1d... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -38,7 +38,7 @@ func testEndToEnd(t *testing.T, goarch, file string) {\n \tctxt.IsAsm = true\n \tdefer ctxt.Bso.Flush()\n \tfailed := false\n-\tctxt.DiagFunc = func(format string, args ...interface{}) {\n+\tctxt.DiagFunc = func(format string... | 2025-11-11T19:48:22 |
electron/electron | ee67bc7dcbfa9e2ac8af82ece99ee2aae2c61ada | ecd7eb36ac7ae4bc190d8bc12550cdc30c82e5d6 | fix: dangling speculative frames (#45609)
* fix: dangling speculative frames
* harden lifecycle state checks
* feedback
* add const | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -1792,16 +1792,20 @@ void WebContents::RenderFrameDeleted(\n // - An <iframe> is removed from the DOM.\n // - Cross-origin navigation creates a new RFH in a separate process which\n // is swapped by content::RenderFrameHostMana... | 2025-02-18T22:52:05 |
vercel/next.js | 19421c37928da8ea8758c9cfb2dea869f340ff69 | 78660a53864b8dfff75e8e122cc1db5e8a8d0e4b | docs: fix broken examples link (#86916)
### What?
Fix broken link in the documentation pointing to the examples folder.
### Why?
The previous link to the examples folder in
`docs/04-community/index.mdx` was incorrect:
https://github.com/vercel/next.js/tree/canary/contributing/examples
This caused confusion and 404 er... | [
{
"path": "docs/04-community/index.mdx",
"patch": "@@ -11,7 +11,7 @@ With over 5 million weekly downloads, Next.js has a large and active community o\n There are a couple of ways you can contribute to the development of Next.js:\n \n - [Documentation](/docs/community/contribution-guide): Suggest improvement... | 2025-12-08T21:12:13 |
nodejs/node | c08a1d152b758a1b97b81e9edce6ed60faaf4063 | ab9ef37aa73cdc00c27d2ee8f374d697ba9081f0 | v8: fix missing callback in heap utils destroy
This fixes the v8.getHeapSnapshot() calls not properly being
destroyed. Pipeline calls would for example not properly end
without the callback being in place.
PR-URL: https://github.com/nodejs/node/pull/58846
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: ... | [
{
"path": "lib/internal/heap_utils.js",
"patch": "@@ -53,11 +53,12 @@ class HeapSnapshotStream extends Readable {\n this[kHandle].readStart();\n }\n \n- _destroy() {\n+ _destroy(err, callback) {\n // Release the references on the handle so that\n // it can be garbage collected.\n this[... | 2025-06-30T11:51:40 |
golang/go | 951cf0501b57d31e648f2808820f2c7eaca3edc8 | 2750f9529148d21c5e29cb325acccc6240e813cf | internal/trace/testtrace: fix flag name typos
Change-Id: I6a6a636cd82a3e22a482ea2b2ab1004c45e2c304
Reviewed-on: https://go-review.googlesource.com/c/go/+/719400
Auto-Submit: Michael Pratt <mpratt@google.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco... | [
{
"path": "src/internal/trace/testtrace/helpers.go",
"patch": "@@ -37,7 +37,7 @@ func Dump(t *testing.T, testName string, traceBytes []byte, forceToFile bool) {\n \t\t\tt.Logf(\"text trace too large to dump (%d bytes)\", len(s))\n \t\t} else {\n \t\t\tt.Log(s)\n-\t\t\tt.Log(\"Convert this to a raw trace wit... | 2025-11-10T21:19:36 |
rust-lang/rust | d19a07b2a9d7f0a18409485451c12632b93ff674 | 8db65c71725664d85d06ec96ee3e575665de1f6a | Fix LegacyKeyValueFormat report from docker build: x86_64-gnu | [
{
"path": "src/ci/docker/host-x86_64/x86_64-gnu-aux/Dockerfile",
"patch": "@@ -29,5 +29,5 @@ RUN sh /scripts/sccache.sh\n ENV NO_DEBUG_ASSERTIONS=1\n ENV NO_OVERFLOW_CHECKS=1\n \n-ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu\n-ENV RUST_CHECK_TARGET check-aux\n+ENV RUST_CONFIGURE_ARGS=\"--build=x... | 2026-03-03T23:47:53 |
vercel/next.js | 78660a53864b8dfff75e8e122cc1db5e8a8d0e4b | 0e973f71f133f4a0b220bbf1e3f0ed8a7c75e00d | Add gitignore note for next-env.d.ts (#86809)
<!-- 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
### ... | [
{
"path": "docs/01-app/01-getting-started/02-project-structure.mdx",
"patch": "@@ -31,22 +31,22 @@ Top-level folders are used to organize your application's code and static assets\n \n Top-level files are used to configure your application, manage dependencies, run proxy, integrate monitoring tools, and def... | 2025-12-08T10:36:09 |
electron/electron | 47572286f33f3d24eb1efdd7fec5b4fb1a5aacef | 6be1151ffc4a83cc241b78e0c3a04211dfb79943 | chore: bump chromium to 135.0.7015.0 (main) (#45500)
* https://chromium-review.googlesource.com/c/chromium/src/+/6230977
* chore: bump chromium to 135.0.7012.0
* chore: update accelerator.patch
Support parsing Ctrl+Alt shortcuts | https://chromium-review.googlesource.com/c/chromium/src/+/6238137
* 6234236: Reapply... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '134.0.6998.10',\n+ '135.0.7012.0',\n 'node_version':\n 'v22.14.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/... | 2025-02-18T16:51:27 |
nodejs/node | 8b199eef3dd4de910a6521adc42ae611a62a19e1 | 7db30d7ca866b67d2e162b9dd0eff3712a90ee34 | fs: special input `-1` on `chown`, `lchown` and `fchown`
PR-URL: https://github.com/nodejs/node/pull/58836
Fixes: https://github.com/nodejs/node/issues/58826
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -2853,10 +2853,10 @@ static void Chown(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n \n CHECK(IsSafeJsInt(args[1]));\n- const uv_uid_t uid = FromV8Value<uv_uid_t>(args[1]);\n+ const auto uid = FromV8Value<uv_uid_t, true>(args[1]... | 2025-06-29T21:47:02 |
facebook/react | 17ca4b157fcba6c734583513353ba72376a7ba2d | 4dff0e62b2320d8c97746a16c95efd9c9ad0bc07 | Fix useResourceEffect in Fizz (#31758)
We're seeing errors when testing useResourceEffect in SSR and it turns
out we're missing the noop dispatcher function on Fizz.
I tested a local build with this change and it resolved the late
mutation errors in the e2e tests. | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerIntegrationHooks-test.js",
"patch": "@@ -27,6 +27,7 @@ let useRef;\n let useImperativeHandle;\n let useInsertionEffect;\n let useLayoutEffect;\n+let useResourceEffect;\n let useDebugValue;\n let forwardRef;\n let yieldedValues;\n@@ -51,6 +52,7 @@ fun... | 2024-12-13T16:26:44 |
rust-lang/rust | 201bbb30a4faa261f488afae6b6fb66d4b210e0d | 3a0572c2d67648c32513f9439d7cd6488ebc9492 | fix: offer on const like path-expr for 'extract_variable'
Example
---
```rust
struct Foo;
fn foo() -> Foo {
$0Foo$0
}
```
**Before this PR**
Assist not applicable
**After this PR**
```rust
struct Foo;
fn foo() -> Foo {
let foo = Foo;
foo
}
``` | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/extract_variable.rs",
"patch": "@@ -75,7 +75,7 @@ pub(crate) fn extract_variable(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n .next()\n .and_then(ast::Expr::cast)\n {\n- expr.syntax().ancesto... | 2026-03-13T14:34:06 |
golang/go | 426ef30ecf2d2b6eadd962358884ed68220b9cc5 | 5241d114f55cfa69a4bf8f2051f5d83d1f618859 | cmd/go: implement -reuse for Mercurial repos
When we added -reuse in CL 411398, we only handled Git repos.
This was partly because we were focused on Git traffic,
partly because Git is the dominant module VCS, and
partly because I couldn't see how to retrieve the metadata needed
in other version control systems.
This... | [
{
"path": "lib/hg/goreposum.py",
"patch": "@@ -0,0 +1,64 @@\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+# Mercurial extension to add a 'goreposum' command that\n+# computes a hash of a ... | 2025-08-19T19:27:39 |
vercel/next.js | 3c2fc61bdb8e55eb8671b4152921b336bdf9ceb9 | 3bb0bcbf82311538ab1f34184c766e397a7373f5 | Fix validateTurboNextConfig running for next start (#86886)
This fixes `validateTurboNextConfig` running during `next start` which
was caught due to the wrong `phase` being provided to `workflows` config
wrapper.
We shouldn't run extra validation during `next start` as this needs to
boot as fast as possible and would... | [
{
"path": "packages/next/src/build/turbopack-analyze/index.ts",
"patch": "@@ -8,6 +8,7 @@ import { getSupportedBrowsers } from '../utils'\n import { normalizePath } from '../../lib/normalize-path'\n import type { NextConfigComplete } from '../../server/config-shared'\n import type { __ApiPreviewProps } from... | 2025-12-05T22:23:11 |
electron/electron | 6be1151ffc4a83cc241b78e0c3a04211dfb79943 | c0422d7cc97da03815963bf55384a8b68294999c | fix: win.closeFilePreview recreates panel when called twice (#45319)
* fix: close quick look during tests on macOS
* use longer delay :shrug:
* fix: sharedPreviewPanel being recreated on close
* test: ensure preview panel gets closed | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -1596,8 +1596,11 @@ static bool FromV8(v8::Isolate* isolate,\n }\n \n void NativeWindowMac::CloseFilePreview() {\n- if ([QLPreviewPanel sharedPreviewPanelExists]) {\n+ // Need to be careful about checking [QLPreviewPanel sharedPreviewPanel] as\n... | 2025-02-17T22:25:19 |
facebook/react | a7b829524b295bb114b112c7fc2375bbcd4c65e3 | 56ae4b8d22f773c961c6f57946e648de0879c7f1 | [DevTools] Show component names while highlighting renders (#31577)
## Summary
This PR improves the Trace Updates feature by letting developers see
component names directly on the update overlay. Before this change, the
overlay only highlighted updated regions, leaving it unclear which
components were involved. Wi... | [
{
"path": "packages/react-devtools-shared/src/__tests__/traceUpdates-test.js",
"patch": "@@ -0,0 +1,269 @@\n+import {groupAndSortNodes} from 'react-devtools-shared/src/backend/views/TraceUpdates/canvas';\n+\n+describe('Trace updates group and sort nodes', () => {\n+ test('should group nodes by position wit... | 2024-12-13T11:53:05 |
nodejs/node | 1c2fa7ee7090d2d0d13382e250bad3c99b0f5821 | 0f7e75f7f61a977b8b995fe6fab6cceb13e86a53 | src: -Wmismatched-new-delete in debug_utils.cc
PR-URL: https://github.com/nodejs/node/pull/58844
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net> | [
{
"path": "src/debug_utils.cc",
"patch": "@@ -488,7 +488,7 @@ std::vector<std::string> NativeSymbolDebuggingContext::GetLoadedLibraries() {\n WideCharToMultiByte(\n CP_UTF8, 0, module_name, -1, str, size, nullptr, nullptr);\n list.emplace_back(str);\n- delete str;\... | 2025-06-28T18:52:02 |
golang/go | 5241d114f55cfa69a4bf8f2051f5d83d1f618859 | cdf64106f621b47987f332d5003afaefd9204b08 | spec: more precise prose for special case of append
As written, the special case for append may be interpreted
such that any first argument that is assignable to []byte
is permissible, including nil. This change makes makes it
clear that a slice argument is required.
Not a language change. The compiler always expecte... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Oct 1, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Nov 9, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7383,8 +7383,8 @@... | 2025-11-08T03:52:27 |
vercel/next.js | 6169e786020b63e101cc09285e1277e278cd34b8 | 7c969652ad589a62b7d2a90523d919d8a0583192 | Fix required-server-files (#86875)
Fixes a regression in https://github.com/vercel/next.js/pull/86830
`config.distDir` was missing
<img width="1622" height="475" alt="Bildschirmfoto 2025-12-05 um 17 50 43" src="https://github.com/user-attachments/assets/6460801d-949e-441b-a7d3-6fb679f22d83" /> | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -1931,17 +1931,22 @@ export default async function build(\n \n if (hasInstrumentationHook) {\n serverFilesManifest.files.push(\n- path.join(SERVER_DIRECTORY, `${INSTRUMENTATION_HOOK_FILENAME}.js`)\n+ p... | 2025-12-05T17:26:06 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.