repo
stringclasses
10 values
pr_number
int64
7
155k
title
stringlengths
4
137
body
stringlengths
0
68.4k
buggy_commit
stringlengths
40
40
fix_commit
stringlengths
40
40
buggy_distance
int64
1
30
confidence
stringclasses
3 values
files
listlengths
1
5
ollama/ollama
14,810
remove experimental aliases support
We previously were trying it in `ollama launch`, but stopped using it. And also the new cloud integration makes the semantics a little less clear. I could imagine bringing it back in the future, but I'd want to think through the semantics a bit more (how resolution works both for source and target)
61086083eb8c558bc14c61d6df630c3bf6e690b4
f676231de9a54b158d83bff893fb20dbc7472ad2
12
medium
[ { "filename": "api/client.go", "patch": "@@ -476,25 +476,3 @@ func (c *Client) Whoami(ctx context.Context) (*UserResponse, error) {\n \t}\n \treturn &resp, nil\n }\n-\n-// AliasRequest is the request body for creating or updating a model alias.\n-type AliasRequest struct {\n-\tAlias string `json:\"...
nodejs/node
62,401
module: runtime deprecate `module.register()`
Building on #62395, this runtime-deprecates `module.register()`. I’m not sure when we want to land and release this; I think the options are basically either: 1. When `module.registerHooks()` goes stable, hopefully sometime before 26 goes LTS; https://github.com/nodejs/node/pull/62395#issuecomment-4107156571 2. ...
e9b5214d72eadfc66fd205396f4a6c76fed4f399
0dfdec9542c88582fbf005f0758a502fc87d64ff
13
medium
[ { "filename": "doc/api/deprecations.md", "patch": "@@ -4527,16 +4527,27 @@ deprecated and will throw an error in a future version.\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62401\n+ description: Runtime deprecation.\n - version: REPLACEME\n ...
rust-lang/rust
127,534
feat(core): impl Step for NonZero<u*>
<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/127534)* <!-- homu-ignore:end --> Implement Step for NonZero unsigned integers as discussed in [libs-team#130][1]. [1]: https://github.com/rust-lang/libs-team/issues/130 `step_nonzero_impls` was ...
null
e923bacc082ee07e08de1a8ff04b2ae6fd986300
null
low
[ { "filename": "library/core/src/iter/range.rs", "patch": "@@ -15,6 +15,7 @@ macro_rules! unsafe_impl_trusted_step {\n )*};\n }\n unsafe_impl_trusted_step![AsciiChar char i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize Ipv4Addr Ipv6Addr];\n+unsafe_impl_trusted_step![NonZero<u8> NonZero<u16> NonZero<u...
huggingface/transformers
45,069
Fix TypeError in rope validation when ignore_keys is a list
## What does this PR do? Fixes a `TypeError` in `_check_received_keys` (line 919 of `modeling_rope_utils.py`) where `received_keys -= ignore_keys` fails when `ignore_keys` is a `list` instead of a `set`. ## Root cause Model configs (Qwen3.5, ErnieVLMoe, GLM4V, Ministral3) define `ignore_keys_at_rope_validation` as a...
null
02063e683595e4a3e7f4e5be2fee17cab129e4bb
null
low
[ { "filename": "src/transformers/modeling_rope_utils.py", "patch": "@@ -916,7 +916,7 @@ def _check_received_keys(\n \n # Some models need to store model-specific keys, and we don't want to throw warning at them\n if ignore_keys is not None:\n- received_keys -= ignore_keys\n+ ...
ollama/ollama
14,807
ci: fix missing windows zip file
Use 7z compression (better compression rate) if found in path. That alone isn't sufficient to get us under 2G, so MLX is now split out as a discrete download. Fix CI so it will fail if artifacts fail to upload.
10e51c51771ea8536715876ee6707928712be41e
a6b27d776b57a50b31028e591fc78de4e967a104
12
medium
[ { "filename": ".github/workflows/release.yaml", "patch": "@@ -583,11 +583,19 @@ jobs:\n for payload in dist/*.txt dist/*.zip dist/*.tgz dist/*.tar.zst dist/*.exe dist/*.dmg dist/*.ps1 dist/*.sh ; do\n echo \"Uploading $payload\"\n gh release upload ${GITHUB_REF_NAME} $paylo...
electron/electron
50,638
build: allow clearing src & cross mnt cache via dispatch
#### Description of Change As in title. Once-a-day seems to work fine but we're running into issues on occasion even in light of that and it'd be nice to do it on demand. #### Release Notes Notes: none
null
c6e201c96598e169300c86ad59940abdad91f4ec
null
low
[ { "filename": ".github/workflows/clean-src-cache.yml", "patch": "@@ -7,6 +7,7 @@ name: Clean Source Cache\n on:\n schedule:\n - cron: \"0 0 * * *\"\n+ workflow_dispatch:\n \n permissions: {}\n ", "additions": 1, "deletions": 0 } ]
nodejs/node
62,421
build: use `CARGO` environment variable if set
When enabling support for Temporal, check for the `CARGO` environment variable to locate the `cargo` binary (defaulting to `cargo` if not set) and use this to build `deps/crates`. This will allow using Cargo on systems where the Cargo binary name is suffixed with the version, e.g. `cargo-1.82` on Ubuntu 24.04. <!...
5913aa9adc1af1ea7032c91c9183f996590bed90
7b8934d2e4896bf453c6bd5228484fbcaef82cd2
25
medium
[ { "filename": "configure.py", "patch": "@@ -1452,7 +1452,9 @@ def get_cargo_version(cargo):\n except OSError:\n error('''No acceptable cargo found!\n \n- Please make sure you have cargo installed on your system.''')\n+ Please make sure you have cargo installed on your system and/or\n+ ...
vercel/next.js
92,205
Fix pr-status.js: retry on API errors and report timed-out jobs
### What? Fixes two bugs in `scripts/pr-status.js` that caused the script to silently report zero failures when there were actual CI failures. ### Why? When running `node scripts/pr-status.js 92080`, the script reported "No failed jobs found" despite the PR having real failures. Two root causes: 1. **Transient API ...
null
e464ca398c5992c4ec9fb23192fc60ef7b1b5f94
null
low
[ { "filename": "scripts/pr-status.js", "patch": "@@ -216,15 +216,17 @@ function getRunMetadata(runId) {\n )\n }\n \n+const FAILED_CONCLUSIONS = new Set(['failure', 'timed_out', 'startup_failure'])\n+\n function getFailedJobs(runId) {\n // Fetch all jobs first, then filter for failures in JS.\n // We ca...
facebook/react
35,872
[compiler] Add fault tolerance plan document
Add detailed plan for making the React Compiler fault-tolerant by accumulating errors across all passes instead of stopping at the first error. This enables reporting multiple compilation errors at once. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [Revi...
null
0dbb43bc57d27a79ecf4c78508089a36bd08ef5d
null
low
[ { "filename": "compiler/fault-tolerance-overview.md", "patch": "@@ -0,0 +1,320 @@\n+## React Compiler Fault Tolerance\n+\n+Update React Compiler (@compiler/ directory) to always run all passes and return either the transformed code (if no error) or a list of one or more compilation errors. \n+\n+## Backgrou...
rust-lang/rust
154,752
Add comment to borrow-checker
As requested by @lcnr r? @lcnr
null
70b05beb84a6f54c9bf0f9524feccee1796b86e6
null
low
[ { "filename": "compiler/rustc_borrowck/src/type_check/mod.rs", "patch": "@@ -447,6 +447,8 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {\n let tcx = self.infcx.tcx;\n \n for proj in &user_ty.projs {\n+ // Necessary for non-trivial patterns whose user-type annotation is an opaque type,\...
ollama/ollama
14,787
middleware: enable local tool model for web search
This PR * Removed the cloud-model-only guard for web search in `middleware/anthropic.go`, allowing local models with tool support to execute web searches. * Updated the test to verify local models can complete the full web search flow instead of receiving a blocked error.
4eab60c1e2e25aed9df102de40e9c6f0b1200bdb
8f45236d09332949aa91774dc9eb46caf2abbbc1
20
medium
[ { "filename": "middleware/anthropic.go", "patch": "@@ -240,15 +240,6 @@ func (w *WebSearchAnthropicWriter) runWebSearchLoop(ctx context.Context, initial\n \n \tvar serverContent []anthropic.ContentBlock\n \n-\tif !isCloudModelName(w.req.Model) {\n-\t\tlogutil.TraceContext(ctx, \"anthropic middleware: web_se...
electron/electron
50,630
test: add tests for `navigationHistory.goToIndex()`
Backport of #50607 See that PR for details. Notes: none.
null
0c0967794931f84d8875df517ce75b085e2d755a
null
low
[ { "filename": "spec/api-web-contents-spec.ts", "patch": "@@ -802,6 +802,65 @@ describe('webContents module', () => {\n });\n });\n \n+ describe('navigationHistory.goToIndex(index) API', () => {\n+ beforeEach(async () => {\n+ await w.loadURL(urlPage1);\n+ await w.loadURL(urlPa...
huggingface/transformers
45,065
Remove unused TensorFlow env var
# What does this PR do? Removes TensorFlow's `"TF_CPP_MIN_LOG_LEVEL"` env var. This is no longer needed since TF/Jax are gone. This `utils/print_env.py` script is being used in CI running tests to print, req useful env vars. ## Code Agent Policy The Transformers repo is currently being overwhelmed by a large ...
null
9a9997fd73c5eb29fb3677d3c489f5d3cd0765f6
null
low
[ { "filename": "utils/print_env.py", "patch": "@@ -17,15 +17,12 @@\n \n # this script dumps information about the environment\n \n-import os\n import sys\n \n import transformers\n from transformers import is_torch_hpu_available, is_torch_xpu_available\n \n \n-os.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"3\"\n-\...
nodejs/node
62,505
meta: expand memory leak DoS criteria to all DoS
We have dedicated requirements about memory leaks when triaging DoS. These applies in generall to all types of DoS, and many recent reports about DoS attack vectors fail to meet them, resulting in a lot of extra back-and-forth in triaging. Clarify in the threat model by expanding these requirements to all DoS. Drive...
null
12c2736546aa72ab95a891851de5b36aa21ed3fb
null
low
[ { "filename": "SECURITY.md", "patch": "@@ -152,28 +152,33 @@ does not trust is considered a vulnerability:\n the correct use of Node.js APIs.\n * The unavailability of the runtime, including the unbounded degradation of its\n performance.\n-* Memory leaks qualify as vulnerabilities when all of the follo...
vercel/next.js
92,228
Add telemetry for adapterPath config usage
<!-- CURSOR_AGENT_PR_BODY_BEGIN --> ## What? Adds telemetry tracking for when the `adapterPath` config option is used in Next.js. ## Why? As mentioned in the Slack discussion, telemetry for adapter usage was missing. This helps track adoption of the adapter feature. ## How? - Added `adapterPath` field to the `Even...
null
0aec1df2106066342bd8d88cd4074eea0416f322
null
low
[ { "filename": "packages/next/src/telemetry/events/version.ts", "patch": "@@ -40,6 +40,7 @@ type EventCliSessionStarted = {\n reactCompiler: boolean\n reactCompilerCompilationMode: string | null\n reactCompilerPanicThreshold: string | null\n+ adapterPath: boolean\n }\n \n export function eventCliSessi...
ollama/ollama
14,648
openai: split mixed thinking stream chunks via ToChunks
We can potentially mix thinking with content or tool calls. While there is no canonical way of doing this, the generally accepted way is to have them emitted as separate chunks.
null
97013a190c84a9385b8953e7fcfa4f5560d4c5f2
null
low
[ { "filename": "middleware/openai.go", "patch": "@@ -5,6 +5,7 @@ import (\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"io\"\n+\t\"log/slog\"\n \t\"math/rand\"\n \t\"net/http\"\n \t\"strings\"\n@@ -76,22 +77,29 @@ func (w *ChatWriter) writeResponse(data []byte) (int, error) {\n \n \t// chat chunk\n \tif w.stream {...
rust-lang/rust
154,764
Add tests for three ICEs that have already been fixed
Closes rust-lang/rust#113870. Closes rust-lang/rust#114056. Closes rust-lang/rust#118278.
null
7a68d3fa0b5921475b36002c1c5974a1741713db
null
low
[ { "filename": "tests/ui/const-generics/generic_const_exprs/escaping-late-bound-region-in-canonical-ice-113870.rs", "patch": "@@ -0,0 +1,24 @@\n+//! Regression test for https://github.com/rust-lang/rust/issues/113870\n+\n+#![feature(generic_const_exprs)]\n+#![allow(incomplete_features)]\n+\n+const fn allow<'...
ollama/ollama
14,764
mlx: only log load errors when MLX is needed
This suppresses irrelevant/noisy errors in the GGML runner.
10e51c51771ea8536715876ee6707928712be41e
c222735c02a3fda18cdbd05ccae2d5dc1a290b42
8
medium
[ { "filename": "x/mlxrunner/mlx/dynamic.go", "patch": "@@ -16,9 +16,14 @@ import (\n )\n \n var initError error\n+var initLoadError string\n \n // CheckInit returns any error that occurred during MLX dynamic library initialization.\n+// When initialization failed, detailed load errors are logged to help diag...
huggingface/transformers
44,983
fix: add identity reverse_op to dequantize ops for save_pretrained
## What does this PR do? Fixes `save_pretrained()` for models loaded with `dequantize=True`. `save_pretrained` calls `reverse_op` on all weight conversion operations from loading. Dequantize ops (`Mxfp4Dequantize`, `Fp8Dequantize`, `MetalDequantize`) don't have `reverse_op` implemented, so it raises `NotImplementedEr...
null
ecdf95c66c88e08f5e2aaadeb7a7c03739565aa8
null
low
[ { "filename": "src/transformers/core_model_loading.py", "patch": "@@ -101,6 +101,17 @@ def reverse_op(self) -> ConversionOps:\n raise NotImplementedError\n \n \n+class _IdentityOp(ConversionOps):\n+ \"\"\"Pass-through reverse op for dequantize operations.\n+\n+ Dequantized weights are already ...
electron/electron
50,607
test: add tests for `navigationHistory.goToIndex()`
#### Description of Change Add test coverage for `navigationHistory.goToIndex()`, which was added in #41752 #### Checklist - [x] PR description included - [x] I have built and tested this PR - [x] `npm test` passes - [x] tests are [changed or added](https://github.com/electron/electron/blob/main/docs/develo...
null
343d6e5f3febf0694f99720bac4947e960875a07
null
low
[ { "filename": "spec/api-web-contents-spec.ts", "patch": "@@ -802,6 +802,65 @@ describe('webContents module', () => {\n });\n });\n \n+ describe('navigationHistory.goToIndex(index) API', () => {\n+ beforeEach(async () => {\n+ await w.loadURL(urlPage1);\n+ await w.loadURL(urlPa...
vercel/next.js
91,688
remove the loop from StaticSortedFile::lookup
## Summary `StaticSortedFile::lookup` previously used a loop to traverse blocks, even though SST files always have exactly one index block (the last block). This unrolls the loop into a straight-line read of the index block followed by a direct dispatch to the key block, removing the loop overhead and the redundant em...
null
e9597e6cc10a5a831903c3bec3e7be140c5b7497
null
low
[ { "filename": "turbopack/crates/turbo-persistence/src/static_sorted_file.rs", "patch": "@@ -211,48 +211,49 @@ impl StaticSortedFile {\n key_block_cache: &BlockCache,\n value_block_cache: &BlockCache,\n ) -> Result<SstLookupResult> {\n- let mut current_block = self.meta.block_count...
nodejs/node
62,501
test_runner: add `getTestContext()` public API
Exposes `getTestContext()` function to access test context information from within tests and async operations. My use case was exposing a pino logger that writes to test diagnostics, but there can be many other usecases: ```mjs import { prettyFactory } from 'pino-pretty'; const pretty = prettyFactory({ colori...
null
c5a83ab77c2e79d2e48070a6b20237079c3ff973
null
low
[ { "filename": "doc/api/test.md", "patch": "@@ -3563,6 +3563,44 @@ Emitted when no more tests are queued for execution in watch mode.\n \n Emitted when one or more tests are restarted due to a file change in watch mode.\n \n+## `getTestContext()`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Returns: {TestC...
huggingface/transformers
45,049
Fix when RoPE params are in kwargs
# What does this PR do? Fixes https://github.com/huggingface/transformers/issues/45030 After the config validation, all validations are now run after config is initialized. So this config has been wrong from the beginning but we didn't complain I added a small patch and warning, we will support it in case ther...
44686173b26bb174f3c7eb6e59f08a338d1adf54
12b6b57cac0397db0afda56f3ab0101729bc5f0f
4
medium
[ { "filename": "src/transformers/configuration_utils.py", "patch": "@@ -263,6 +263,12 @@ def __post_init__(self, **kwargs):\n # BC for rotary embeddings. We will pop out legacy keys from kwargs and rename to new format\n if hasattr(self, \"rope_parameters\"):\n kwargs = self.conve...
ollama/ollama
14,777
MLX: harden for init failures
The CLI now links to the lazy-load MLX code, but that still happens in init functions. On internal MLX errors, the CLI exits before it has a chance to start. This change re-wires the MLX error handling so it doesn't exit by default. The MLX based runners currently expect exits on failure, so they re-initialize the d...
10e51c51771ea8536715876ee6707928712be41e
87d21c7fc053da5b0b37898af89c932e404692ea
7
medium
[ { "filename": "x/imagegen/cmd/engine/main.go", "patch": "@@ -79,6 +79,10 @@ func main() {\n \t\tlog.Fatalf(\"MLX initialization failed: %v\", mlx.GetMLXInitError())\n \t}\n \n+\t// Restore strict error handling now that we know MLX is working.\n+\t// During init(), a safe handler prevented exit(-1) on GPU e...
ollama/ollama
14,758
config: qwen3.5 recommendations
Add qwen3.5 to the TUI for recommendation
4eab60c1e2e25aed9df102de40e9c6f0b1200bdb
464186e9953f6247c4f66f0674b0259d21b550f8
15
medium
[ { "filename": "cmd/config/codex_test.go", "patch": "@@ -16,7 +16,7 @@ func TestCodexArgs(t *testing.T) {\n \t}{\n \t\t{\"with model\", \"llama3.2\", nil, []string{\"--oss\", \"-m\", \"llama3.2\"}},\n \t\t{\"empty model\", \"\", nil, []string{\"--oss\"}},\n-\t\t{\"with model and profile\", \"qwen3-coder\", [...
facebook/react
35,839
Fix context propagation through suspended Suspense boundaries
When a Suspense boundary suspends during initial mount, the primary children's fibers are discarded because there is no current tree to preserve them. If the suspended promise never resolves, the only way to retry is something external like a context change. However, lazy context propagation could not find the consumer...
null
ab18f33d46171ed1963ae1ac955c5110bb1eb199
null
low
[ { "filename": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -3991,9 +3991,23 @@ function attemptEarlyBailoutIfNoScheduledUpdate(\n // whether to retry the primary children, or to skip over it and\n // go straight to the fallback. Check the priority of the primary\n ...
huggingface/transformers
45,061
[`FA`] Fix BC support for a few versions + add deprecation cycle
As per title, see https://github.com/huggingface/transformers/pull/42435#issuecomment-4143234736
97b7727e1129bcaebe42ce57ce37fa1a48847a89
ca6acc78492f93bdd588f178fdcc22cfe678497e
16
medium
[ { "filename": "src/transformers/utils/__init__.py", "patch": "@@ -134,6 +134,7 @@\n is_flash_attn_3_available,\n is_flash_attn_4_available,\n is_flash_attn_greater_or_equal,\n+ is_flash_attn_greater_or_equal_2_10,\n is_flute_available,\n is_fouroversix_available,\n is_fp_quant_ava...
rust-lang/rust
153,821
constify `Step` trait and all of its `impl`ementations
constifying [Step](https://github.com/rust-lang/rust/issues/42168) trait and all of its implementations, with some friendly help from [const_cmp](https://github.com/rust-lang/rust/issues/143800)
4ca63285361b446fd2ab17bedf2d6a3bc81d5723
7e28c7438a7b0c79a09724ba799d32ed461beb72
17
medium
[ { "filename": "library/core/src/array/mod.rs", "patch": "@@ -405,7 +405,8 @@ where\n \n /// Implements comparison of arrays [lexicographically](Ord#lexicographical-comparison).\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n-impl<T: PartialOrd, const N: usize> PartialOrd for [T; N] {\n+#[rustc_const_u...
nodejs/node
53,189
stream: micro-optimize writable condition
78a326e2eb236874c45a7937d51e5d3ab3c91a3e
7d14d1fe068dfb34947eb4d328699680a1f5e75d
22
medium
[ { "filename": "lib/internal/streams/writable.js", "patch": "@@ -1005,8 +1005,8 @@ ObjectDefineProperties(Writable.prototype, {\n // where the writable side was disabled upon construction.\n // Compat. The user might manually disable writable side through\n // deprecated setter.\n- ret...
ollama/ollama
14,769
cloud_proxy: send ollama client version
This was previously included in the user agent, and we've made use of it in the past to hotpatch bugs server-side for particular Ollama versions.
61086083eb8c558bc14c61d6df630c3bf6e690b4
8c4d5d6c2f9aa849742333deb35e510e5e6fd665
2
medium
[ { "filename": "server/cloud_proxy.go", "patch": "@@ -20,13 +20,15 @@ import (\n \t\"github.com/ollama/ollama/auth\"\n \t\"github.com/ollama/ollama/envconfig\"\n \tinternalcloud \"github.com/ollama/ollama/internal/cloud\"\n+\t\"github.com/ollama/ollama/version\"\n )\n \n const (\n-\tdefaultCloudProxyBaseURL ...
facebook/react
35,810
[Flight] Add support for transporting `Error.cause`
## Summary Adds support for transporting `Error.cause` (e.g. `new Error(message, { cause })`. React supports arbitrary values in `.cause` since `.cause` doesn't need to be an `Error` instance (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause#description) ## How did ...
f247ebaf44317ac6648b62f99ceaed1e4fc4dc01
2ba3065527cbabc9778363e78a411653cd4cd215
2
medium
[ { "filename": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -8,6 +8,7 @@\n */\n \n import type {\n+ JSONValue,\n Thenable,\n ReactDebugInfo,\n ReactDebugInfoEntry,\n@@ -132,14 +133,6 @@ interface FlightStreamController {\n \n type UninitializedModel = string;\n \n-export type JSONVa...
vercel/next.js
91,589
Unflake router events deploy test
[Flakiness metrics](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.status%3A%22fail%22%20%40test.name%3A%22basePath%20should%20use%20urls%20with%20basepath%20in%20router%20events%20for%20hash%20changes%22&agg_m=count&agg_m_source=bas...
null
649d30263535f97cc35907dc25a0d133b37d0ca7
null
low
[ { "filename": "test/e2e/basepath/router-events.test.ts", "patch": "@@ -1,7 +1,7 @@\n import assert from 'assert'\n import webdriver from 'next-webdriver'\n import { nextTestSetup } from 'e2e-utils'\n-import { check, retry } from 'next-test-utils'\n+import { retry } from 'next-test-utils'\n \n describe('base...
vercel/next.js
91,558
Update vendored lodash to 4.17.23 to fix CVE-2025-13465
## Update vendored lodash to 4.17.23 to fix CVE-2025-13465 Updates the vendored lodash from 4.17.21 to 4.17.23 to resolve [CVE-2025-13465](https://github.com/advisories/GHSA-xxjr-mmjv-4gpg) (prototype pollution in `_.unset` and `_.omit`). Fixes #91156 ### What changed - Bumped `lodash` devDependency from `4.1...
c5c94dffbf084e66b172a9c6ff23d80c24973764
0cf61307c63aefc16fac286bdd0c3f9b01cc071f
1
medium
[ { "filename": "package.json", "patch": "@@ -242,7 +242,7 @@\n \"ky-universal\": \"0.6.0\",\n \"lerna\": \"9.0.3\",\n \"lint-staged\": \"15.2.2\",\n- \"lodash\": \"4.17.20\",\n+ \"lodash\": \"4.17.23\",\n \"lost\": \"8.3.1\",\n \"minimatch\": \"3.0.4\",\n \"moment\": \"^2.24.0\"...
facebook/react
35,776
[Server Components] Walk parsed JSON instead of using reviver for parsing RSC payload
## Summary Follow-up to https://github.com/vercel/next.js/pull/89823 with the actual changes to React. Replaces the `JSON.parse` reviver callback in `initializeModelChunk` with a two-step approach: plain `JSON.parse()` followed by a recursive `reviveModel()` post-process (same as in Flight Reply Server). This yie...
47d1ad1454759859c5a2b29616658e10a1ce049f
f247ebaf44317ac6648b62f99ceaed1e4fc4dc01
5
medium
[ { "filename": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -355,7 +355,6 @@ type Response = {\n _encodeFormAction: void | EncodeFormActionCallback,\n _nonce: ?string,\n _chunks: Map<number, SomeChunk<any>>,\n- _fromJSON: (key: string, value: JSONValue) => any,\n _stringDecoder: St...
ollama/ollama
14,753
server: add experimental web search and web fetch routes
Allow easy access to the web search and fetch APIs on the cloud to not require API keys. Manages no cloud behavior as well: ``` { "error": "ollama cloud is disabled: web search is unavailable" } ```
4eab60c1e2e25aed9df102de40e9c6f0b1200bdb
61086083eb8c558bc14c61d6df630c3bf6e690b4
12
medium
[ { "filename": "server/routes.go", "patch": "@@ -62,6 +62,8 @@ const signinURLStr = \"https://ollama.com/connect?name=%s&key=%s\"\n const (\n \tcloudErrRemoteInferenceUnavailable = \"remote model is unavailable\"\n \tcloudErrRemoteModelDetailsUnavailable = \"remote model details are unavailable\"\n+\tclou...
vercel/next.js
91,539
Turbopack: Use `debug = "line-tables-only"` for dev builds
This defaults to `true`: https://doc.rust-lang.org/cargo/reference/profiles.html#debug Nobody on the team uses a debugger often enough for this to be worth the time tradeoff: https://kobzol.github.io/rust/rustc/2025/05/20/disable-debuginfo-to-improve-rust-compile-times.html I'm gathering some rough numbers, and I'll ...
39e705ca9fcbf417ed4381737737d40c79fc13ef
75c51c65410bc0d4a852b28bab42943dbf765135
1
high
[ { "filename": "Cargo.toml", "patch": "@@ -32,6 +32,10 @@ unexpected_cfgs = { level = \"warn\", check-cfg = [\n 'cfg(codspeed)',\n ] }\n \n+[profile.dev]\n+# https://kobzol.github.io/rust/rustc/2025/05/20/disable-debuginfo-to-improve-rust-compile-times.html\n+debug = \"line-tables-only\"\n+\n # This crate ...
electron/electron
50,608
fix: remove menu update debug log
#### Description of Change Removes a diagnostic log: ``` representedObject is not a WeakPtrToElectronMenuModelAsNSObject ``` This log was introduced alongside a guard in macOS menu refresh. The guard is part of the system's expected behavior, preventing us from processing menu items we don't own. In other wo...
null
22ac2b13fb62aca4134fbe336902009152184d43
null
low
[ { "filename": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -478,7 +478,6 @@ - (void)applyStateToMenuItem:(NSMenuItem*)item {\n \n if (![represented\n isKindOfClass:[WeakPtrToElectronMenuModelAsNSObject class]]) {\n- NSLog(@\"representedObject is not a WeakPtrToElectronMe...
huggingface/transformers
45,004
fix(testing): Fix Parakeet, Evolla, Pi0, and Phi-3 test failures on main CI
### What does this PR do? The following failing tests were identified and fixed in this PR (grouped them together since they share related root causes OR the code changes were extremely minimal and didn't warrant separate PRs): → **Phi-3**: I made a similar fix for LongCat-Flash in another PR, but it's essentia...
09832b2ae515cfbd020327f5d3ba2dafe6edf83c
b0bba2d832f3cfd94b339a407f2b3e5b90ce3499
27
medium
[ { "filename": "tests/models/phi3/test_modeling_phi3.py", "patch": "@@ -139,11 +139,11 @@ def test_phi3_mini_4k_instruct_generation(self):\n ]\n inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors=\"pt\")\n \n- outputs = model.generate(inputs, ma...
ollama/ollama
14,754
ci: Fix windows build
Instead of relying on sh for wildcard, do it in Go for better windows compatibility.
10e51c51771ea8536715876ee6707928712be41e
62d1f01ab4d63c3042e942379e9ef4b77f5c3fba
1
medium
[ { "filename": "x/mlxrunner/mlx/generator/main.go", "patch": "@@ -97,8 +97,18 @@ func main() {\n \tqc := tree_sitter.NewQueryCursor()\n \tdefer qc.Close()\n \n-\tvar funs []Function\n+\tvar files []string\n \tfor _, arg := range flag.Args() {\n+\t\tmatches, err := filepath.Glob(arg)\n+\t\tif err != nil {\n+\...
rust-lang/rust
153,632
Fix Vec::const_make_global for 0 capacity and ZST's
fixes https://github.com/rust-lang/rust/issues/153158
null
8287d4deb273097d33bddb6a145f0818d603ef5f
null
low
[ { "filename": "library/alloc/src/vec/mod.rs", "patch": "@@ -898,9 +898,17 @@ impl<T> Vec<T> {\n where\n T: Freeze,\n {\n- unsafe { core::intrinsics::const_make_global(self.as_mut_ptr().cast()) };\n- let me = ManuallyDrop::new(self);\n- unsafe { slice::from_raw_parts(me.a...
ollama/ollama
14,747
mlx: get parameters from modelfile during model creation
4425c54eda899cfb3f17932165c6a43bab922fee
3e06bde6438f1ddf15cde7381e65a5b8564ef0a3
7
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -183,29 +183,9 @@ func CreateHandler(cmd *cobra.Command, args []string) error {\n \t\t\treturn fmt.Errorf(\"failed to parse Modelfile: %w\", err)\n \t\t}\n \n-\t\t// Extract FROM path and configuration\n-\t\tvar modelDir string\n-\t\tmfConfig := &xcreateclient.Modelf...
nodejs/node
62,395
module: doc-deprecate `module.register()`
This PR doc-deprecates `module.register()` in favor of `module.registerHooks()`. In discussion with @joyeecheung we were thinking of landing this now so it can go out in 25 and 26, and then a runtime deprecation can go out in 26. cc @nodejs/loaders @nodejs/releasers The `module.registerHooks` API is nearing stab...
adac0774843839cce25d526942b448c28aa53777
e9b5214d72eadfc66fd205396f4a6c76fed4f399
24
medium
[ { "filename": "doc/api/deprecations.md", "patch": "@@ -4523,6 +4523,20 @@ Type: Runtime\n Passing a non-extractable [`CryptoKey`][] to [`KeyObject.from()`][] is\n deprecated and will throw an error in a future version.\n \n+### DEP0205: `module.register()`\n+\n+<!-- YAML\n+changes:\n+ - version: REPLACEME\...
facebook/react
35,817
[DevTools] Fix alignment of breadcrumbs separator
## Summary The separator vertical alignment felt slightly off. Now we're aligning separators and items by their baseline which looks more pleasent. ## How did you test this change? Before: <img width="546" height="68" alt="CleanShot 2026-02-18 at 10 08 59@2x" src="https://github.com/user-attachments/assets/...
1c66ac740c650083f008805ed605e8826832dd4c
3a2bee26d23a21cfb04313372a0c0ca46101b785
29
medium
[ { "filename": "packages/react-devtools-shared/src/devtools/views/Components/OwnersStack.css", "patch": "@@ -34,6 +34,7 @@\n \n .OwnerStackFlatListContainer {\n display: inline-flex;\n+ align-items: baseline;\n }\n \n .OwnerStackFlatListSeparator {", "additions": 1, "deletions": 0 }, { "fi...
electron/electron
50,613
fix: remove menu update debug log
Backport of #50608 See that PR for details. Notes: Removed "representedObject is not a WeakPtrToElectronMenuModelAsNSObject" logging when interacting with macOS menus.
null
fd56128f469e345eb1d388d0a191992e7d364b78
null
low
[ { "filename": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -478,7 +478,6 @@ - (void)applyStateToMenuItem:(NSMenuItem*)item {\n \n if (![represented\n isKindOfClass:[WeakPtrToElectronMenuModelAsNSObject class]]) {\n- NSLog(@\"representedObject is not a WeakPtrToElectronMe...
vercel/next.js
91,603
Normalize encoded dynamic placeholders in app routes
## Summary - normalize encoded dynamic placeholders like `%5Bproject%5D` before parsing app route segments - add a fallback params regression test covering encoded placeholder inputs - assert vary-param segment prefetch responses do not contain encoded root param placeholders ## Testing - pnpm testheadless packages/ne...
null
3ddfcace6636081e56bc64e0283b08e6cf5dae4a
null
low
[ { "filename": "packages/next/src/server/request/fallback-params.test.ts", "patch": "@@ -190,6 +190,24 @@ describe('getFallbackRouteParams', () => {\n expect(result!.has('projectSlug')).toBe(true)\n expect(result!.has('teamSlug')).toBe(false)\n })\n+\n+ it('should treat encoded placeholder...
huggingface/transformers
45,058
Allow advanced users to override `model_type` in `AutoConfig.from_pretrained`
Some checkpoints, such as https://huggingface.co/omni-research/Tarsier2-Recap-7b, have the wrong `model_type` in their `config.json`. This PR allows advanced users (vLLM) to pass `model_type` into `AutoConfig.from_pretrained` via `kwargs` to override what's in the `config.json`.
null
44686173b26bb174f3c7eb6e59f08a338d1adf54
null
low
[ { "filename": "src/transformers/configuration_utils.py", "patch": "@@ -760,6 +760,15 @@ def _get_config_dict(\n if \"model_type\" not in config_dict and is_timm_config_dict(config_dict):\n config_dict[\"model_type\"] = \"timm_wrapper\"\n \n+ # Some checkpoints may contain the wron...
rust-lang/rust
154,739
ci: update upload-artifact action to v7
Closes https://github.com/rust-lang/rust/issues/154738
null
c2d0094e658b7e2373fd906031c0e0c84debd8ce
null
low
[ { "filename": ".github/workflows/ci.yml", "patch": "@@ -254,7 +254,7 @@ jobs:\n df -h\n \n - name: upload artifacts to github\n- uses: actions/upload-artifact@v4\n+ uses: actions/upload-artifact@v7\n with:\n # name is set in previous step\n name: ${{...
ollama/ollama
14,741
app: fix reset to defaults disabling auto-update
- The "Reset to defaults" button in Settings was not explicitly setting AutoUpdateEnabled, causing it to default to false - Added AutoUpdateEnabled: true to the default settings object so auto-update remains enabled after reset
null
6be2de8214c21414b523b9f95271c06c5a6a7a8a
null
low
[ { "filename": "app/ui/app/src/components/Settings.tsx", "patch": "@@ -214,6 +214,7 @@ export default function Settings() {\n Agent: false,\n Tools: false,\n ContextLength: 0,\n+ AutoUpdateEnabled: true,\n });\n updateSettingsMutation.mutate(defaultSettings);\n ...
nodejs/node
62,324
deps: update icu to 78.3
This is an[ automated update](https://github.com/nodejs/node/actions/runs/23257091672/job/67615018642) of icu to 78.3.
null
7547e795ef700e1808702fc2851a0dcc3395a065
null
low
[ { "filename": "deps/icu-small/source/common/unicode/utfiterator.h", "patch": "@@ -557,9 +557,11 @@ class UTFImpl<\n public:\n // Handle ill-formed UTF-8\n U_FORCE_INLINE static CP32 sub() {\n- switch (behavior) {\n- case UTF_BEHAVIOR_NEGATIVE: return U_SENTINEL;\n- case ...
huggingface/transformers
44,588
Fix llama4 bnb mode
Fixes Llama4 model loading under BitsAndBytes (BNB) quantization mode. Router quantized incorrectly causes shape mismatch: Llama4Router inherits from nn.Linear, so BNB quantizes its weight into a packed format. However, super().forward() calls torch.nn.Linear.forward → F.linear, which hits BNB's __torch_function__ h...
null
ce4a791c5277840c4c1d74eed03431b674869da5
null
low
[ { "filename": "src/transformers/integrations/bitsandbytes.py", "patch": "@@ -181,7 +181,7 @@ def replace_with_bnb_linear(\n continue\n new_module = None\n with torch.device(\"meta\"):\n- if isinstance(module, (nn.Linear, Conv1D)):\n+ if isinstance(module, Co...
facebook/react
34,621
[react-dom] Add support for `onFullscreenChange` and `onFullscreenError` events
## Summary This adds support for the [`fullscreenchange`](https://developer.mozilla.org/en-US/docs/Web/API/Element/fullscreenchange_event) and [`fullscreenerror`](https://developer.mozilla.org/en-US/docs/Web/API/Element/fullscreenerror_event) events. These events are currently supported in Chrome and Firefox(see ...
null
4842fbea02c48fa5cfcb28eb6ceaec12f6f41a45
null
low
[ { "filename": "packages/react-dom-bindings/src/events/DOMEventNames.js", "patch": "@@ -51,6 +51,7 @@ export type DOMEventName =\n | 'focusin'\n | 'focusout'\n | 'fullscreenchange'\n+ | 'fullscreenerror'\n | 'gotpointercapture'\n | 'hashchange'\n | 'input'", "additions": 1, "deletions": ...
electron/electron
39,538
build: update NMV to 118
#### Description of Change Bumps Electron's NMV to 118 - needed before forking the 27-x-y branch #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] PR description included and stakeholders cc'd - [x] `npm test` passes - [x] tests are [changed or added](http...
null
fce9ed65d6e5f5524ee23accaa8d233d06078f00
null
low
[ { "filename": "build/args/all.gn", "patch": "@@ -2,7 +2,7 @@ is_electron_build = true\n root_extra_deps = [ \"//electron\" ]\n \n # Registry of NMVs --> https://github.com/nodejs/node/blob/main/doc/abi_version_registry.json\n-node_module_version = 116\n+node_module_version = 118\n \n v8_promise_internal_fie...
ollama/ollama
14,685
cloud_proxy: handle stream disconnects gracefully
Previously we were printing out bad errors for expected cases like clients disconnecting. Now we only debug log when that happens (which still might help in cases where we're figuring out why an integration isn't working). For other errors, we print out a proper warning now
4eab60c1e2e25aed9df102de40e9c6f0b1200bdb
afb4c62fbf6839319dbe93c1bbb9eb7fc9a67c3e
5
medium
[ { "filename": "server/cloud_proxy.go", "patch": "@@ -4,6 +4,7 @@ import (\n \t\"bytes\"\n \t\"context\"\n \t\"encoding/json\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -204,7 +205,25 @@ func proxyCloudRequestWithPath(c *gin.Context, body []byte, path string, disable\n \tc.Status(resp.Status...
facebook/react
35,780
[Native] Add RCTSelectableText as a recognized Text component
## Summary Add "RCTSelectableText" to the list of component names recognized as being inside a text element, alongside "RCTText". React Native's new text stack, tries to optimize and allows differentiating between a custom TextView, with lower level control, that can reuse the work performed during Fabric/Yoga la...
78f5c504b732aec0eb12514bc2cf3f27a8143dd2
61db53c179a80a40beec3cc220da05bfdbb02efd
10
medium
[ { "filename": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -278,6 +278,7 @@ export function getChildHostContext(\n const isInAParentText =\n type === 'AndroidTextInput' || // Android\n type === 'RCTMultilineTextInputView' || // iOS\n+ type === 'RCTSelecta...
vercel/next.js
91,615
Backport: Fix(pages-router): restore Content-Length and ETag for /_next/data/ JSON responses (#90304)
Backports #90304
null
f88cee9604f0ec8ab869a2f94ced984194277b9e
null
low
[ { "filename": "packages/next/src/server/route-modules/pages/pages-handler.ts", "patch": "@@ -502,16 +502,13 @@ export const getHandler = ({\n return {\n value: {\n kind: CachedRouteKind.PAGES,\n- html: new RenderResult(\n- Buffer.from...
rust-lang/rust
154,577
Update `mir-opt` 64-bit panic-abort tests for `Alignment` rename
These seem to have been missed when the PR originally merged. cc https://github.com/rust-lang/rust/pull/154004, @GrigorenkoPV <!-- homu-ignore:start --> <!-- If this PR is related to an unstable feature or an otherwise tracked effort, please link to the relevant tracking issue here. If you don't know of a rela...
null
44faca9d94a324ae6a7e7c4133ea2a79ad3ad72e
null
low
[ { "filename": "tests/mir-opt/dont_reset_cast_kind_without_updating_operand.test.GVN.64bit.panic-abort.diff", "patch": "@@ -51,7 +51,7 @@\n StorageLive(_12);\n StorageLive(_13);\n - _13 = boxed::box_new_uninit(const <() as std::mem::SizedTypeProperties>::LAYOUT) -> [return: bb2, u...
ollama/ollama
14,517
qwen3next: add compatibility with imported GGUF models
Fixes https://github.com/ollama/ollama/issues/14503
7f9efd53dfa6dd87ac423695f5ca8ffff5a6222c
8da09b1e7e7394a818bc0f36d4244a927a91c126
13
medium
[ { "filename": "model/models/qwen3next/deltanet.go", "patch": "@@ -41,8 +41,8 @@ type GatedDeltaNet struct {\n \tSSMBeta *nn.Linear `gguf:\"ssm_beta\"` // -> beta (qwen35)\n \tSSMAlpha *nn.Linear `gguf:\"ssm_alpha\"` // -> alpha (qwen35)\n \tSSMConv1D *convKernel `gguf:\"ssm_conv1d\"`\n-\tSSMD...
nodejs/node
62,456
doc: clarify that features cannot be both experimental and deprecated
As discussed in the TSC meeting. The rationale is that either an experimental feature can be called experimental only if breaking changes (incl removal) would not break the ecosystem; if removing an experimental feature must go through a deprecation cycle, it is de facto no-longer experimental. <!-- Before submitti...
null
f92c61fae23743a07f313dead3263af2dafd925e
null
low
[ { "filename": "doc/contributing/collaborator-guide.md", "patch": "@@ -387,6 +387,12 @@ undergo deprecation. The exceptions to this rule are:\n * Changes to errors thrown by dependencies of Node.js, such as V8.\n * One-time exceptions granted by the TSC.\n \n+Experimental and undocumented APIs are not consid...
huggingface/transformers
45,048
Fix failing `SmolLM3IntegrationTest`
# What does this PR do? Fixes failing [`SmolLM3IntegrationTest:test_model_3b_long_prompt`](https://github.com/huggingface/transformers/actions/runs/23629638266/job/68826332952#step:14:216). `SmolLM3` has [`do_sample=True` by default](https://huggingface.co/HuggingFaceTB/SmolLM3-3B/blob/main/generation_config.json) ...
null
cc4ef19bb88ce7c49607a98fc8214b5c8bdb5342
null
low
[ { "filename": "tests/models/smollm3/test_modeling_smollm3.py", "patch": "@@ -100,14 +100,14 @@ def test_model_3b_logits(self):\n \n @slow\n def test_model_3b_generation(self):\n- EXPECTED_TEXT_COMPLETION = \"\"\"Gravity is the force that pulls objects toward the center of the Earth. It is a f...
electron/electron
50,614
fix: remove menu update debug log
Backport of #50608 See that PR for details. Notes: Removed "representedObject is not a WeakPtrToElectronMenuModelAsNSObject" logging when interacting with macOS menus.
null
e1e3ecee7509df5c7c7b72d1e3182e2dac506542
null
low
[ { "filename": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -478,7 +478,6 @@ - (void)applyStateToMenuItem:(NSMenuItem*)item {\n \n if (![represented\n isKindOfClass:[WeakPtrToElectronMenuModelAsNSObject class]]) {\n- NSLog(@\"representedObject is not a WeakPtrToElectronMe...
vercel/next.js
90,945
Update tokio from 1.43.0 to 1.47.3
## Summary Update the workspace `tokio` dependency from 1.43.0 to ~1.47.3 (pinned to the 1.47.x LTS minor line). The tokio 1.43.x LTS line expires **March 2026**. This moves to the 1.47.x LTS line (supported until September 2026). The tilde version specifier (`~1.47.3`) ensures we stay on the 1.47.x minor version and...
75c51c65410bc0d4a852b28bab42943dbf765135
d230d5841ca3b5c54fec5282cabe84e74458ba86
14
medium
[ { "filename": "Cargo.lock", "patch": "@@ -1309,7 +1309,7 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c\"\n dependencies = [\n \"lazy_static\",\n- \"windows-sys 0.59.0\",\n+ \"windows-sys 0.48.0\",\n ]\n ...
ollama/ollama
14,682
mlx: int4 groupsize 64
Change affine 4bit integers to use groupsize 64
e9f6ea232fd8858f0f4b1999db380a663b62bbd9
e790dc435b148933da3b98b423397bf022e38104
14
medium
[ { "filename": "x/create/client/quantize.go", "patch": "@@ -21,7 +21,7 @@ var quantizeParams = map[string]struct {\n \tbits int\n \tmode string\n }{\n-\t\"int4\": {32, 4, \"affine\"},\n+\t\"int4\": {64, 4, \"affine\"},\n \t\"nvfp4\": {16, 4, \"nvfp4\"},\n \t\"int8\": {64, 8, \"affine\"},\n \t\"m...
facebook/react
35,795
[Flight] Skip `transferReferencedDebugInfo` during debug info resolution
When the Flight Client resolves chunk references during model parsing, it calls `transferReferencedDebugInfo` to propagate debug info entries from referenced chunks to the parent chunk. Debug info on chunks is later moved to their resolved values, where it is used by React DevTools to show performance tracks and what a...
272441a9ade6bf84de11ba73039eb4c80668fa6a
47d1ad1454759859c5a2b29616658e10a1ce049f
19
medium
[ { "filename": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -943,6 +943,7 @@ type InitializationHandler = {\n };\n let initializingHandler: null | InitializationHandler = null;\n let initializingChunk: null | BlockedChunk<any> = null;\n+let isInitializingDebugInfo: boolean = false;\n \n fun...
nodejs/node
62,174
typings: rationalise TypedArray types
Adding a constructor helper type allows for some simplification, as well as a fix or two.
null
5e417551e2dbfff0664c4783df16cc32fd8625e5
null
low
[ { "filename": "typings/globals.d.ts", "patch": "@@ -87,6 +87,20 @@ declare global {\n | BigUint64Array\n | BigInt64Array;\n \n+ type TypedArrayConstructor =\n+ | typeof Uint8Array\n+ | typeof Uint8ClampedArray\n+ | typeof Uint16Array\n+ | typeof Uint32Array\n+ | typeof Int8Array\n+ ...
rust-lang/rust
154,691
core: Update the feature gate on `TryFrom<integer> for bool`
This implementation was added recently in f12288ec2632 ("TryFrom<integer> for bool") but used an old feature gate and stabilization version. Update to reflect when these were actually added.
null
e1cd0ad4908847095a00ebfe0b8248174957a9ca
null
low
[ { "filename": "library/core/src/convert/num.rs", "patch": "@@ -330,7 +330,7 @@ macro_rules! impl_try_from_both_bounded {\n /// Implement `TryFrom<integer>` for `bool`\n macro_rules! impl_try_from_integer_for_bool {\n ($($int:ty)+) => {$(\n- #[stable(feature = \"try_from\", since = \"1.34.0\")]\n+...
huggingface/transformers
44,644
fix tests/quantization/fp_quant_integration/test_fp_quant.py::FPQuant…
…MXFP4PseudoquantTest::test_quantized_model fail in xpu ## Who can review? - quantization: @SunMarc - Intel XPU: @IlyasMoutawwakil
null
9cd278715c5154597a44110d6e0c114a7e90d6f5
null
low
[ { "filename": "src/transformers/integrations/fp_quant.py", "patch": "@@ -50,7 +50,8 @@ def convert(\n \n # Let pre-forward handle the quantization and set None where necessary\n # This operation will quantize the weights internally\n- with torch.cuda.device(value.device):\n+ to...
facebook/react
35,775
[DevTools] Check suspense child node presence in parentSuspense.children before removing
Currently, this silently removes the last child in the list, which doesn't contain the `id`.
705055d7ac3da03927758b22d8aea4b2e5913961
03ca38e6e7b84cf20438c1d333636b3d662ca726
2
high
[ { "filename": "packages/react-devtools-shared/src/devtools/store.js", "patch": "@@ -1873,6 +1873,13 @@ export default class Store extends EventEmitter<{\n }\n \n const index = parentSuspense.children.indexOf(id);\n+ if (index === -1) {\n+ this._throwAn...
electron/electron
50,604
fix: invoke print callback directly when no print job exists
Backport of #50431 See that PR for details. Notes: Fixed an issue where the `webContents.print()` callback may not fire correctly in some cases.
null
75d8a239a004022d0363b1e09dc60aba6575c8cc
null
low
[ { "filename": "patches/chromium/printing.patch", "patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/brow...
vercel/next.js
91,616
Add .claude/skills symlink
## Summary - Add `.claude/skills` symlink pointing to `.agents/skills` for skill discovery
null
78937ee52a582b1bebcb3b0b3f130b1472b2cd2d
null
low
[ { "filename": ".claude/skills", "patch": "@@ -0,0 +1 @@\n+../.agents/skills\n\\ No newline at end of file", "additions": 1, "deletions": 0 } ]
ollama/ollama
14,653
build: smarter docker parallelism
Our Dockerfile leverages parallel stages for more efficient builds. However, our old parallel settings were naive and lead to under/over utilization depending on the capabilities of your build system. This change switches to using Ninja for all our docker cmake builds to leverage its smarter parallel logic. We tel...
null
288077c3a3b69d717e7bf1af576d28885657826a
null
low
[ { "filename": "Dockerfile", "patch": "@@ -1,28 +1,18 @@\n # vim: filetype=dockerfile\n \n ARG FLAVOR=${TARGETARCH}\n-ARG PARALLEL=8\n \n ARG ROCMVERSION=6.3.3\n ARG JETPACK5VERSION=r35.4.1\n ARG JETPACK6VERSION=r36.4.0\n ARG CMAKEVERSION=3.31.2\n+ARG NINJAVERSION=1.12.1\n ARG VULKANVERSION=1.4.321.1\n \n FR...
ollama/ollama
14,681
create: fix localhost handling
4eab60c1e2e25aed9df102de40e9c6f0b1200bdb
4425c54eda899cfb3f17932165c6a43bab922fee
2
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -132,6 +132,17 @@ func getModelfileName(cmd *cobra.Command) (string, error) {\n \treturn absName, nil\n }\n \n+// isLocalhost returns true if the configured Ollama host is a loopback or unspecified address.\n+func isLocalhost() bool {\n+\thost := envconfig.Host()\n+\...
nodejs/node
62,492
doc: fix 'transfered' typo in quic.md
Fixed a typo: `transfered` → `transferred` in `doc/api/quic.md` (session.datagramWrite). ``` - that view will be transfered to the underlying stream. + that view will be transferred to the underlying stream. ```
cf2b05cab867568f344ed58829f656162685454c
60f19bc0894eb20f9e525c27b561ef322039382a
29
medium
[ { "filename": "doc/api/quic.md", "patch": "@@ -519,7 +519,7 @@ added: v23.8.0\n \n Sends an unreliable datagram to the remote peer, returning the datagram ID.\n If the datagram payload is specified as an `ArrayBufferView`, then ownership of\n-that view will be transfered to the underlying stream.\n+that vie...
vercel/next.js
91,178
[turbopack] Simplify snapshotting logic
## Summary - **Use `modified` flags instead of `restored` flags** to decide which task data categories to encode during snapshots. Previously, `process` used `restored` flags (encoding any category that had been loaded into memory), while `process_snapshot` used `modified` flags. The `restored` check was overly conser...
4de2201764a31ecb45f02c1024bfb145496b1520
98e1133f26ee85d2de4d05f027f67eb18c15c2b0
18
medium
[ { "filename": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1111,107 +1111,81 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n let task_cache_stats: Mutex<FxHashMap<_, TaskCacheStats>> =\n Mutex::new(FxHashMap::default());\n \n- // Helper to enco...
rust-lang/rust
154,736
Add a regression test for the duplicated `crate` keyword in path suggestions
The issue has (long) been fixed, but needs a test. Closes rust-lang/rust#115858.
null
85c072edf4ac3dc166bc6b94456f3397a7937a3c
null
low
[ { "filename": "tests/ui/resolve/path-suggestion-duplicated-crate-keyword.rs", "patch": "@@ -0,0 +1,20 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/115858>.\n+//!\n+//! The compiler used to suggest `crate::crate::unix::linux::system::Y`\n+//! (duplicating the `crate` keyword) instea...
facebook/react
35,769
[DevTools] Dedicated empty state for roots that aren't suspended by anything
## Summary Stacked on https://github.com/facebook/react/pull/35768 For roots without any suspenders, the inspected element pane is completely empty. For older versions of React without Suspense, older versions of React with less sources for Suspense, or simple UIs that don't have any suspenders this can look like...
null
6066c782fe06b65e98a410741d994f620321fe11
null
low
[ { "filename": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js", "patch": "@@ -36,6 +36,7 @@ import {\n UNKNOWN_SUSPENDERS_REASON_OLD_VERSION,\n UNKNOWN_SUSPENDERS_REASON_THROWN_PROMISE,\n } from '../../../constants';\n+import {ElementTypeRoot} from 'react-dev...
electron/electron
50,431
fix: invoke print callback directly when no print job exists
#### Description of Change Fix an issue i found digging around in https://github.com/electron/electron/pull/50430 `ShowInvalidPrinterSettingsError()` called `TerminatePrintJob(true)`, but when no `print_job_` had been created yet (e.g. settings validation failed before a job could start), `TerminatePrintJob` bail...
null
1e0846749ba6d59ac48802718c48082e8b0bac00
null
low
[ { "filename": "patches/chromium/printing.patch", "patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/brow...
huggingface/transformers
44,645
fix Image.open failure in case "tests/models/prompt_depth_anything/te…
- Intel XPU: @IlyasMoutawwakil ``` ======================================================================== FAILURES ======================================================================== _________________________________________________ PromptDepthAnythingModelIntegrationTest.test_inference __________________...
null
0efcf1b069a87d7093783edcc4caf874f4edb5a6
null
low
[ { "filename": "tests/models/llava_next/test_modeling_llava_next.py", "patch": "@@ -130,7 +130,7 @@ def test_flash_attention_2_padding_matches_padding_free_with_position_ids(self):\n class LlavaNextForConditionalGenerationIntegrationTest(unittest.TestCase):\n def setUp(self):\n self.processor = A...
ollama/ollama
14,656
parsers: repair unclosed arg_value tags in GLM tool calls
GLM models sometimes omits </arg_value> closing tags in tool call XML, causing xml.Unmarshal to fail with "element <arg_value> closed by </tool_call>". This is a known issue across the GLM family. Sanitize the input to fix closing arg_key values so encoding/xml can handle it.
cc90a035a0cc3ae9bd0c1dc95d42b620e8dcb0e2
1af850e6e3668ece1c953bb27e38e8827393adff
28
medium
[ { "filename": "model/parsers/glm46.go", "patch": "@@ -345,6 +345,47 @@ func escapeGLM46Content(s string) string {\n \treturn result.String()\n }\n \n+// repairUnclosedArgValues inserts missing </arg_value> closing tags.\n+// GLM models sometimes omit the closing tag, producing XML like:\n+//\n+//\t<arg_valu...
facebook/react
35,768
[DevTools] Enable Suspense tab by default
## Summary We only showed it conditionally during initial testing. To help discovery on initial release, we're enabling it everywhere. Conditionally showing was also annoying since it requires a waterfall on initial load that leads to shifting of DevTools tabs. ## How did you test this change? - [x] Shows ...
2a879cdc95228b1b3b4cdc81cfc04599716b5562
705055d7ac3da03927758b22d8aea4b2e5913961
19
medium
[ { "filename": "packages/react-devtools-extensions/src/main/index.js", "patch": "@@ -167,10 +167,6 @@ function createBridgeAndStore() {\n supportsClickToInspect: true,\n });\n \n- store.addListener('enableSuspenseTab', () => {\n- createSuspensePanel();\n- });\n-\n store.addListener('settingsUpda...
nodejs/node
62,485
crypto: update root-certificates to 3.121
This is an automated update of root-certificates to 3.121.
null
7e3c24480457bbe0883505f67535177548fe1b8e
null
low
[ { "filename": "src/node_root_certs.h", "patch": "@@ -3469,7 +3469,7 @@\n \"ak5KGoJr3M/TvEqzPNcum9v4KGm8ay3sMaE641c=\\n\"\n \"-----END CERTIFICATE-----\",\n \n-/* OISTE Server Root RSA G1 */\n+/* OISTE Server Root RSA G1 */\n \"-----BEGIN CERTIFICATE-----\\n\"\n \"MIIFgzCCA2ugAwIBAgIQVaXZZ5Qoxu0M+ifdWwFNGDA...
electron/electron
50,373
ci: update actions to node24
#### Description of Change I noticed the following message in https://github.com/electron/electron/actions/runs/23278735986: ``` Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684, actions...
7d72eb809e55bb66390c912cf7b7f2df1bf0dd0b
639d3b99b7558c1676910900c33f4799553289ea
23
medium
[ { "filename": ".github/actions/build-electron/action.yml", "patch": "@@ -274,18 +274,18 @@ runs:\n run: ./src/electron/script/actions/move-artifacts.sh\n - name: Upload Generated Artifacts ${{ inputs.step-suffix }}\n if: always() && !cancelled()\n- uses: actions/upload-artifact@65462800...
vercel/next.js
92,220
Generate a CLI warning if using Rosetta 2 on Apple Silicon
This PR is AI generated. Test plan (following https://github.com/vercel/next.js/pull/81950): - Build a preview deployment: https://github.com/vercel/next.js/actions/runs/23858712091/job/69559813673 - Enable Rosetta - Download a standalone x64 macos binary from https://nodejs.org/en/download ``` export PATH=...
null
93dc872d0d6df3552abef6a7b598d79a9566eea2
null
low
[ { "filename": "packages/next/src/bin/next.ts", "patch": "@@ -2,6 +2,7 @@\n \n import '../server/require-hook'\n \n+import os from 'os'\n import {\n Argument,\n Command,\n@@ -89,6 +90,16 @@ class NextRootCommand extends Command {\n ;(process.env as any).NODE_ENV = process.env.NODE_ENV || defaultEnv...
ollama/ollama
8,352
Add LangChain for .NET to libraries list
This is definitely not important, but for discoverability purposes, it would be nice to include the .NET LangChain library.
6982e9cc96bb2d1e05e58c8bff1d7c9eded032a9
a30f347201b8812ff0437aae63a7e5125ff897f8
2
high
[ { "filename": "README.md", "patch": "@@ -441,6 +441,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LangChainGo](https://github.com/tmc/langchaingo/) with [example](https://github.com/tmc/langchaingo/tree/main/examples/ollama-completion-example)\n - [LangChain4j](https://github.com/l...
rust-lang/rust
154,696
rustdoc_missing_doc_code_examples: lint on macro_rules macros
<!-- homu-ignore:start --> <!-- If this PR is related to an unstable feature or an otherwise tracked effort, please link to the relevant tracking issue here. If you don't know of a related tracking issue or there are none, feel free to ignore this. This PR will get automatically assigned to a reviewer. In case y...
null
7a740135c2d1fe265f1db50df418ecb6393fef57
null
low
[ { "filename": "src/librustdoc/clean/types.rs", "patch": "@@ -453,6 +453,13 @@ impl Item {\n self.stability.is_some_and(|x| x.is_unstable())\n }\n \n+ pub(crate) fn is_exported_macro(&self) -> bool {\n+ match self.kind {\n+ ItemKind::MacroItem(..) => find_attr!(&self.attrs.ot...
ollama/ollama
8,242
README: add neollama to terminal section of communiy integrations
51af455f624598deee3960d3e9b1837225a97b0b
023e4bca144da199e6a6dc11d04c9e23623c9482
1
high
[ { "filename": "README.md", "patch": "@@ -376,6 +376,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [oterm](https://github.com/ggozad/oterm)\n - [Ellama Emacs client](https://github.com/s-kostyaev/ellama)\n - [Emacs client](https://github.com/zweifisch/ollama)\n+- [neollama](https://g...
huggingface/transformers
45,019
Fix GraniteConfig type hints to accept int for multiplier fields
## What does this PR do? Fixes #44877 Loading `ibm-granite/granite-4.0-1b-speech` fails with `StrictDataclassFieldValidationError` because its config.json stores `embedding_multiplier` and `logits_scaling` as integers (e.g. `12`, `8`), but `GraniteConfig` declares them as `float`. The fix updates the type hints for ...
null
05514c4bb641ba1537d17048fd93f50f45d5f19d
null
low
[ { "filename": "src/transformers/models/granite/configuration_granite.py", "patch": "@@ -80,10 +80,10 @@ class GraniteConfig(PreTrainedConfig):\n attention_bias: bool = False\n attention_dropout: float | int = 0.0\n mlp_bias: bool = False\n- embedding_multiplier: float = 1.0\n- logits_scali...
nodejs/node
62,474
crypto: add support for Ed25519 context parameter
Extracted from #62345
f3633ef4c8e4e3fcc27b293993d238e9fd3cfc46
9df9b66c187efb1d7c56ffe627f05f987228586d
17
medium
[ { "filename": "deps/ncrypto/ncrypto.cc", "patch": "@@ -4363,6 +4363,27 @@ std::optional<EVP_PKEY_CTX*> EVPMDCtxPointer::signInitWithContext(\n #ifdef OSSL_SIGNATURE_PARAM_CONTEXT_STRING\n EVP_PKEY_CTX* ctx = nullptr;\n \n+#ifdef OSSL_SIGNATURE_PARAM_INSTANCE\n+ // Ed25519 requires the INSTANCE param to s...
vercel/next.js
92,210
Fix DashMap read-write self-deadlock in task_cache causing hangs
### What? Fixes a deadlock in the Turbopack backend's `task_cache` DashMap that causes `next` to hang during incremental builds with persistent caching. ### Why? In `get_or_create_persistent_task` and `get_or_create_transient_task`, `self.task_cache.get(&task_type)` returns a `dashmap::Ref` that holds a **read...
fe99f0d63fbd7564df3a247f39740b2e11d12ab9
9e1509307e336bc422bc6d1c1cc0a32ce00d9523
15
medium
[ { "filename": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs", "patch": "@@ -1532,8 +1532,9 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n // Create a single ExecuteContext for both lookup and connect_child\n let mut ctx = self.execute_context(turbo_tasks);\n // F...
ollama/ollama
8,198
feat(readme): add Perplexica
2cde4b8817f75764f2301788247a8fe5b5609b39
36aea6154a810b05f97bf9da05c695f76bcea528
8
medium
[ { "filename": "README.md", "patch": "@@ -361,6 +361,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Abbey](https://github.com/US-Artificial-Intelligence/abbey) (A configurable AI interface server with notebooks, document storage, and YouTube support)\n - [Minima](https://github.com/d...
electron/electron
50,605
fix: prevent borders and smearing in transparent frameless/client frame windows on Linux
Backport of #50541 See that PR for details. Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples --> Fixed a regression on Li...
b0055e05003f953eda2b50e856f46dd854ffa61f
e03cb79aa545929c8289ee0a05b72c554481e197
22
medium
[ { "filename": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -239,7 +239,9 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Re...
facebook/react
35,763
[fiber] bugfix - don't show <Offscreen> in error message.
## Overview While building the RSC sandboxes I notice error messages like: > An error occurred in the `<Offscreen>` component This is an internal component so it should show either: > An error occurred in the `<Suspense>` component. > An error occurred in the `<Activity>` component. It should only ...
null
892c68605c46af0558cdd546782f23ad120ad0d4
null
low
[ { "filename": "packages/react-reconciler/src/__tests__/ReactIncrementalErrorLogging-test.js", "patch": "@@ -213,6 +213,67 @@ describe('ReactIncrementalErrorLogging', () => {\n }).toThrow('logCapturedError error');\n });\n \n+ it('does not report internal Offscreen component for errors thrown during r...
rust-lang/rust
154,213
tidy-alphabetical: fix line number in error message
<!-- homu-ignore:start --> <!-- If this PR is related to an unstable feature or an otherwise tracked effort, please link to the relevant tracking issue here. If you don't know of a related tracking issue or there are none, feel free to ignore this. This PR will get automatically assigned to a reviewer. In case y...
null
2454f84e5373253edc6839e99f54c07e455469ae
null
low
[ { "filename": "src/tools/tidy/src/alphabetical.rs", "patch": "@@ -215,7 +215,11 @@ fn check_lines<'a>(path: &Path, content: &'a str, tidy_ctx: &TidyCtx, check: &mu\n // oh nyooo :(\n if sorted != section {\n if !tidy_ctx.is_bless_enabled() {\n- ...
ollama/ollama
7,756
Update README.md
Gollama Library
6cdf27d154e7df12d6b39cc059364a37f78679a2
0ef17ede89d01126dead58c81aafa4c63be233e3
7
medium
[ { "filename": "README.md", "patch": "@@ -416,6 +416,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [PromptingTools.jl](https://github.com/svilupp/PromptingTools.jl) with an [example](https://svilupp.github.io/PromptingTools.jl/dev/examples/working_with_ollama)\n - [LlamaScript](https...
vercel/next.js
91,664
Reapply "ci: add node-stream test coverage workflow (#89861)"
Re-apply #89861. Somehow the tests passed in the PR but failed after merging. Will dig into it. Edit: Dug into it, there was a missing env var. Fixed and ready to merge now. PR doesn't add the Node.js streams code path. Implementation starts in #90500
f7de136c60d0567c62e2bd8b456172170cc778c9
4582b5fa93dd65b6f9ed1dff7e66bdb93ddd653c
9
medium
[ { "filename": ".github/workflows/build_and_test.yml", "patch": "@@ -812,7 +812,6 @@ jobs:\n \n uses: ./.github/workflows/build_reusable.yml\n with:\n- # Keep Next.js related env variables in sync with additionalEnv in next-deploy.ts\n afterBuild: |\n export __NEXT_CACHE_COMPONENTS...
ollama/ollama
7,667
Support Multiple LoRa Adapters, Closes #7627
Hi, so I've updated the Llama server by allowing it to handle multiple LoRa adapters. Previously, the server supported only one LoRa adapter, limiting users who needed to apply multiple adapters for advanced fine-tuning. Changes Made: - Command-Line Parsing: - Updated to accept multiple `--lora` flags. - In...
71e6a0d0d181e3be45f3e47a677d088479d73c76
e3936d4fb37cc0cd3a7cd9ffb58f357c5f417fff
2
medium
[ { "filename": "llama/runner/runner.go", "patch": "@@ -833,10 +833,21 @@ func (s *Server) health(w http.ResponseWriter, r *http.Request) {\n \t}\n }\n \n+type multiLPath []string\n+\n+func (m *multiLPath) Set(value string) error {\n+\t*m = append(*m, value)\n+\treturn nil\n+}\n+\n+func (m *multiLPath) String...
huggingface/transformers
44,985
fix: preserve rotary_pct across save/load cycle in GPTNeoX configs
## Summary Fixes #44913 When creating a `GPTNeoXConfig` (or `GPTNeoXJapaneseConfig`) with a non-default `rotary_pct`, the value is lost after a `save_pretrained` / `from_pretrained` round-trip. This happens because `convert_rope_params_to_dict` unconditionally overwrites `partial_rotary_factor` with `kwargs.pop("rotar...
null
7b00e3ba398d355d5f277a4896743b16f21049eb
null
low
[ { "filename": "src/transformers/models/gpt_neox/configuration_gpt_neox.py", "patch": "@@ -95,7 +95,7 @@ def convert_rope_params_to_dict(self, **kwargs):\n # Standardize and validate the correctness of rotary position embeddings parameters\n # Model uses non-standard naming for rope params, o...
nodejs/node
62,414
deps: update ada to 3.4.4
This is an automated update of ada to 3.4.4.
null
7a14757d3b9bfd983e434e84fec1fbf674c4976c
null
low
[ { "filename": "deps/ada/ada.cpp", "patch": "@@ -1,4 +1,4 @@\n-/* auto-generated on 2026-02-23 21:29:24 -0500. Do not edit! */\n+/* auto-generated on 2026-03-23 17:52:13 -0400. Do not edit! */\n /* begin file src/ada.cpp */\n #include \"ada.h\"\n /* begin file src/checkers.cpp */\n@@ -10725,7 +10725,7 @@ con...
electron/electron
50,541
fix: prevent borders and smearing in transparent frameless/client frame windows on Linux
#### Description of Change Electron 41.x added CSD to frameless windows, which introduced a regression where transparent frameless windows would have 1px borders. Fixing this issue also addressed another problem with transparency on Linux (going back years for client frames) where transparent windows would smear ...
null
97773bf50c9c09c791ea407b3757e767921a572c
null
low
[ { "filename": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -239,7 +239,9 @@ void ElectronDesktopWindowTreeHostLinux::UpdateFrameHints() {\n if (ui::OzonePlatform::GetInstance()->IsWindowCompositingSupported()) {\n // Set the opaque region.\n std::vector<gfx::Re...
facebook/react
35,637
Notify FragmentInstance of added/removed text
Follow up to https://github.com/facebook/react/pull/35630 We don't currently have any operations that depend on the updating of text nodes added or removed after Fragment mount. But for the sake of completeness and extending the ability to any other host configs, this change calls `commitNewChildToFragmentInstance` ...
3aaab92a265ebeb43b15e7c30c2f1dfb9fcd5961
78f5c504b732aec0eb12514bc2cf3f27a8143dd2
22
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -3544,40 +3544,48 @@ export function updateFragmentInstanceFiber(\n }\n \n export function commitNewChildToFragmentInstance(\n- childInstance: InstanceWithFragmentHandles,\n+ childInstance: InstanceWithFragmentHand...
facebook/react
35,760
[DevTools] Display `React.optimisticKey` in key positions
## Summary Current display was inconsistent (omitted when inspecting while stringified as `Symbol(react.optimistic_key)` in the tree). This displays it as `React.optimisticKey` mirroring the export. ## How did you test this change? - [x] Added test
57b79b0388b755096216b2b5308113e54eac3be8
e49335e961a77a45be32ad6c9c1877cbe2fe91f4
1
medium
[ { "filename": "packages/react-devtools-shared/src/__tests__/optimisticKeyDevToolsIntegration.js", "patch": "@@ -0,0 +1,131 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of thi...