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 |
|---|---|---|---|---|---|---|---|---|
electron/electron | 50,286 | fix: add ASAR support to additional copy methods | Backport of #50226
See that PR for details.
Notes: Added additional ASAR support to additional `fs` copy methods.
| null | cd8838275678dcc161643057ba51700ca8f6ceeb | null | low | [
{
"filename": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -1232,6 +1232,8 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n // has filesystem caching.\n overrideAPI(fs, 'copyFile');\n overrideAPISync(fs, 'copyFileSync');\n+ overrideAPI(fs, 'cp');\n+ overrideAPISync(fs, 'cpSync');\n \... |
facebook/react | 34,949 | Switch to `export =` to fix eslint-plugin-react-hooks types | <!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory.
Before submitting a pull request, please make sure the following is done:
1. Fork ... | null | 6b344c7c5359d0113389ef92d0a6a4d5cbb76677 | null | low | [
{
"filename": "packages/eslint-plugin-react-hooks/npm/index.d.ts",
"patch": "@@ -5,4 +5,6 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-export {default} from './cjs/eslint-plugin-react-hooks';\n+import reactHooks from './cjs/eslint-plugin-react-hooks';\n+\n+export = reactHooks;"... |
ollama/ollama | 13,160 | kvcache: Run tests both with and without PermutedV | The causal cache can store data differently depending on what is best for the backend. We should run tests both ways. | 53985b3c4d94f22517e4090696a5b8ecd06caedb | cb485b20194e0fb28709b6b83ffdc3726282e9a7 | 4 | medium | [
{
"filename": "kvcache/causal_test.go",
"patch": "@@ -1,6 +1,7 @@\n package kvcache\n \n import (\n+\t\"fmt\"\n \t\"math\"\n \t\"slices\"\n \t\"testing\"\n@@ -20,217 +21,184 @@ type testCase struct {\n \texpectedMask []float32\n }\n \n-func TestStore(t *testing.T) {\n-\tbackend := &testBackend{}\n-\tcache ... |
ollama/ollama | 13,144 | nomic-embed: nomic-embed-text defaulted to ollama runner | This PR makes all models with nomic bert architecture run on the Ollama engine | 604e43b28d12677c96675ba368eee20a2bed2c24 | b2af50960f6c9340a89a87732a482cb5ee6c8277 | 2 | high | [
{
"filename": "fs/ggml/ggml.go",
"patch": "@@ -251,6 +251,7 @@ func (kv KV) OllamaEngineRequired() bool {\n \t\t\"qwen3vl\", \"qwen3vlmoe\",\n \t\t\"deepseekocr\",\n \t\t\"deepseek2\",\n+\t\t\"nomic-bert\",\n \t}, kv.Architecture())\n }\n ",
"additions": 1,
"deletions": 0
}
] |
rust-lang/rust | 154,359 | Add regression test for #154189 | <!-- 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 | cbe9a4bd4254f63b5cf0942d20f1552799d53f8c | null | low | [
{
"filename": "tests/ui/coherence/generalize-associated-type-alias.rs",
"patch": "@@ -0,0 +1,22 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/154189.\n+#![feature(unboxed_closures)]\n+\n+trait ToUnit<'a> {\n+ type Unit;\n+}\n+\n+impl ToUnit<'_> for *const u32 {\n+ type Unit = ()... |
nodejs/node | 62,074 | tools: fix example in release proposal linter | `changelog-maker` [writes 10 character length short form SHA's](https://github.com/nodejs/changelog-maker/blob/44e442d3cc503cc94485e07d30d451761bb6ea3c/commit-to-output.js#L82). Explicitly set the `git log format` in the example to match.
<!--
Before submitting a pull request, please read:
- the CONTRIBUTING gui... | null | 7c4dc34c28a4ff95058c945c9db2c98fe73a9919 | null | low | [
{
"filename": "tools/actions/lint-release-proposal-commit-list.mjs",
"patch": "@@ -6,6 +6,7 @@\n // Example:\n // $ git log upstream/vXX.x...upstream/vX.X.X-proposal \\\n // --reverse --format='{\"prURL\":\"%(trailers:key=PR-URL,valueonly,separator=)\",\"title\":\"%s\",\"smallSha\":\"%h\"}' \\\n+// ... |
huggingface/transformers | 43,510 | Fix and re-enable extra_state tests | This PR fixes and re-enables the skipped `extra_state` tests, since we use this functionality when embedding NVIDIA TransformerEngine layers in PreTrainedModels.
Thanks!
@ArthurZucker for review | 47092352cf2c951b9d7c80433eed05bd4901bfb1 | b8d6b845d18d57868e17ac6576799886ebe53171 | 16 | medium | [
{
"filename": "src/transformers/core_model_loading.py",
"patch": "@@ -898,6 +898,11 @@ def set_param_for_module(\n module_path, _, param_name = target_name.rpartition(\".\")\n module_obj = model.get_submodule(module_path) if module_path else model\n \n+ if param_name == torch.nn.modules.module._E... |
ollama/ollama | 13,151 | models: enable deepseek2 (deepseek v3.1 w/ MLA) on the new engine | 92981ae3f2ce3c4e02d8a21f46874f167949feda | 604e43b28d12677c96675ba368eee20a2bed2c24 | 7 | medium | [
{
"filename": "fs/ggml/ggml.go",
"patch": "@@ -250,6 +250,7 @@ func (kv KV) OllamaEngineRequired() bool {\n \t\t\"qwen3\", \"qwen3moe\",\n \t\t\"qwen3vl\", \"qwen3vlmoe\",\n \t\t\"deepseekocr\",\n+\t\t\"deepseek2\",\n \t}, kv.Architecture())\n }\n ",
"additions": 1,
"deletions": 0
},
{
"file... | |
vercel/next.js | 90,792 | Turbopack: Fix some eventually consistent reads at the top level in dev-server and snapshot tests | This fixes
```
UPDATE=1 cargo test -p turbopack-tests
```
when a snapshot test output is modified or deleted.
We must get the `Effects` inside of an operation, as that involves reading `Vc`s, but then we should apply them outside of the operation (to guarantee that they only run once). The Next.js code follows a... | null | 73049d6f9015007557f89724b07e781a4784af2d | null | low | [
{
"filename": "turbopack/crates/turbo-tasks/src/effect.rs",
"patch": "@@ -16,12 +16,9 @@ use tokio::task_local;\n use tracing::Instrument;\n \n use crate::{\n- self as turbo_tasks, CollectiblesSource, NonLocalValue, ReadRef, ResolvedVc, TryJoinIterExt,\n- debug::ValueDebugFormat,\n- emit,\n+ sel... |
facebook/react | 34,927 | [DevTools] Title color tweak | <img width="521" height="365" alt="Screenshot 2025-10-20 at 11 53 50 AM" src="https://github.com/user-attachments/assets/1a073c09-d440-4498-b2b3-c0dcb2272c96" />
| f6a4882859e6e894a39e9216d01005212855689e | 031595d720955723a0dab67068abc3db759cbc69 | 8 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.css",
"patch": "@@ -41,17 +41,18 @@\n \n .SuspenseRectsTitle {\n pointer-events: none;\n- color: var(--color-text);\n+ color: color-mix(in srgb, var(--color-suspense) 50%, var(--color-text));\n overflow: hidden;... |
ollama/ollama | 13,141 | kvcache: Use SetRows to store cache data | We currently copy data into the KV cache in contiguous buffers using ggml_cpy(). ggml_set_rows() was introduced to allow scatter operation so that contiguous buffers are no longer required. The direct primary benefit of this is that we no longer need to perform defragmentation.
However, GGML recently removed an opti... | b6e02cbbd280114ffcdffd5f7d4d26aee281d3d6 | 53985b3c4d94f22517e4090696a5b8ecd06caedb | 1 | medium | [
{
"filename": "kvcache/causal.go",
"patch": "@@ -3,7 +3,6 @@ package kvcache\n import (\n \t\"errors\"\n \t\"fmt\"\n-\t\"log/slog\"\n \t\"math\"\n \t\"slices\"\n \n@@ -40,18 +39,18 @@ type Causal struct {\n \n \t// ** current forward pass **\n \n-\t// the active layer for Get and Put\n-\tcurLayer int\n-\n-\... |
vercel/next.js | 90,839 | Turbopack: Annotate ReadVcFuture as must_use instead of annotating functions that return it | It's a little less error-prone if it's in one place (on the type) than in many (on the functions). I also added it to `ReadRawVcFuture`.
https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute
- **Are these equivalent?** Yes.
- **The** **`Future`** **trait already has this annotation, w... | 73049d6f9015007557f89724b07e781a4784af2d | 9d0fbf139d741e0b3e6f388e5de0fadbdddd9fd4 | 1 | medium | [
{
"filename": "turbopack/crates/turbo-tasks/src/raw_vc.rs",
"patch": "@@ -316,6 +316,7 @@ impl<F: Future> Future for SuppressTopLevelTaskCheckFuture<F> {\n }\n }\n \n+#[must_use]\n pub struct ReadRawVcFuture {\n current: RawVc,\n read_output_options: ReadOutputOptions,",
"additions": 1,
... |
electron/electron | 50,284 | fix: add ASAR support to additional copy methods | Backport of #50226
See that PR for details.
Notes: Added additional ASAR support to additional `fs` copy methods.
| null | 976a7bece504db4583a4c66f279eccd49d97c623 | null | low | [
{
"filename": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -1232,6 +1232,8 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n // has filesystem caching.\n overrideAPI(fs, 'copyFile');\n overrideAPISync(fs, 'copyFileSync');\n+ overrideAPI(fs, 'cp');\n+ overrideAPISync(fs, 'cpSync');\n \... |
facebook/react | 34,925 | [DevTools] Text layout fixes for stack traces with badges | The badge wasn't vertically centerred and the gap didn't match the gap in the Owner Stack. The added space after `@` also had no effect with badges. The spacing was due to hardcoded 2px padding not an actual space.
Before:
<img width="482" height="252" alt="CleanShot 2025-10-20 at 19 21 44@2x" src="https://github.c... | 1440f4f42d59a7de4559dac972b62d9be771d1d9 | 1d3664665b4e52bd1daee775e1e95feb563799d9 | 5 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.css",
"patch": "@@ -3,8 +3,9 @@\n }\n \n .CallSite, .BuiltInCallSite {\n- display: block;\n+ display: flex;\n padding-left: 1rem;\n+ white-space-collapse: preserve;\n }\n \n .IgnoredCallSite, .BuiltInCallSite {\n... |
ollama/ollama | 13,071 | nomic-embed-text model implementation | This PR introduces the nomic-embed-text model implementation for v1.5
| 92981ae3f2ce3c4e02d8a21f46874f167949feda | 8de30b568ab6e1be4ae4ac454e564e774e8a4e1f | 3 | medium | [
{
"filename": "model/models/bert/embed.go",
"patch": "@@ -156,6 +156,7 @@ func New(c fs.Config) (model.Model, error) {\n \t\t\t\t\t)),\n \t\t\t\t},\n \t\t\t},\n+\t\t\ttrue,\n \t\t)\n \tdefault:\n \t\treturn nil, model.ErrUnsupportedTokenizer",
"additions": 1,
"deletions": 0
},
{
"filename": ... |
rust-lang/rust | 153,068 | Require avxvnni for avx10.2 | AVX10.2 supports masked (and 512-bit) versions of some intrinsics available in AVXVNNI, AVXVNNIINT8 and AVXVNNIINT16 (e.g. AVX10.2 introduces `_mm{,256,512}_{mask{z}}_dpbuud_epi32` corresponding to `_mm{,256}_dpbuud_epi32` from AVXVNNIINT8). But Intel (being Intel), didn't (at least not in SDM) enforce that AVX10.2 (or... | null | f85b70f2ebd5f8cf7f86bcfc67452188a2e54b43 | null | low | [
{
"filename": "compiler/rustc_target/src/target_features.rs",
"patch": "@@ -392,7 +392,11 @@ static X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[\n \"avx512vpopcntdq\",\n ],\n ),\n- (\"avx10.2\", Unstable(sym::avx10_target_feature), &[\"avx10.1\"]),\n+ (\n+ \"... |
nodejs/node | 62,040 | stream: fix TransformStream race on cancel with pending write | Fixes: https://github.com/nodejs/node/issues/62036
- Fix a race condition in `TransformStream` where a late `writer.write()` racing with `reader.cancel()` could throw an internal `TypeError: controller[kState].transformAlgorithm is not a function`
- The race occurs when `cancel`/`abort`/`close` clears the controlle... | null | 16472884aa39450b12ade247a733b1640e7fcb9a | null | low | [
{
"filename": "lib/internal/webstreams/transformstream.js",
"patch": "@@ -72,7 +72,6 @@ const {\n const assert = require('internal/assert');\n \n const kSkipThrow = Symbol('kSkipThrow');\n-\n const getNonWritablePropertyDescriptor = (value) => {\n return {\n __proto__: null,\n@@ -524,7 +523,12 @@ func... |
facebook/react | 11 | Fix react-tools module | I messed this up pretty badly and didn't include react _at all_.
Test Plan: npm pack && npm install <packed.tgz>, then require('react-tools')`
Fixes #10
| 12e1bb1daa256fc27eeb957b841a43751be828ab | 326840bbdc14bdfcad9aa18f8c12c976a8f90037 | 12 | medium | [
{
"filename": "main.js",
"patch": "@@ -1,6 +1,6 @@\n 'use strict';\n \n-var React = require('./build/React');\n+var React = require('./build/react');\n var visitors = require('./vendor/fbtransform/visitors').transformVisitors;\n var transform = require('./vendor/fbtransform/lib/transform').transform;\n ",
... |
huggingface/transformers | 44,544 | Fix ansi codes in loading reports when not connected to terminal | # What does this PR do?
As per the title. Fixes https://github.com/huggingface/transformers/issues/44336 | null | 24ba4c843bc89fac6c1f229d01b204302db1143d | null | low | [
{
"filename": "src/transformers/utils/loading_report.py",
"patch": "@@ -118,8 +118,8 @@ def _make_table(rows, headers):\n }\n \n \n-def _color(s, color):\n- \"\"\"Return color-formatted input `s` if `sys.stdout` is interactive, e.g. connected to a terminal.\"\"\"\n+def _style(s, color):\n+ \"\"\"Retur... |
facebook/react | 34,921 | Lower case "rsc stream" debug info | This is an aesthetic thing. Most simple I/O entries are things like "script", "stylesheet", "fetch" etc. which are all a single word and lower case. The "RSC stream" name sticks out and draws unnecessary attention to itself where as it's really the least interesting to look at.
I don't love the name because I'm not ... | b485f7cf64118fc8729181f46fe5e2edd47bea43 | 21272a680f07cb69873eb3668e7baaebfcf05606 | 3 | medium | [
{
"filename": "packages/internal-test-utils/debugInfo.js",
"patch": "@@ -64,7 +64,7 @@ function normalizeIOInfo(config: DebugInfoConfig, ioInfo) {\n if (promise) {\n promise.then(); // init\n if (promise.status === 'fulfilled') {\n- if (ioInfo.name === 'RSC stream') {\n+ if (ioInfo.name ... |
vercel/next.js | 90,943 | Prefix pr-status replies with :robot: emoji | ### What?
Prefixes replies posted by `scripts/pr-status.js` with the `:robot:` (🤖) emoji.
### Why?
When the pr-status script replies to PR review threads, there's no visual indicator that the reply was generated by AI rather than a human. Adding the robot emoji makes it immediately clear.
### How?
One-line change... | null | 2544467b80f0fd1914c6630f11c9e64285b6b657 | null | low | [
{
"filename": "scripts/pr-status.js",
"patch": "@@ -372,6 +372,7 @@ function getPRComments(prNumber) {\n // ============================================================================\n \n function replyToThread(threadId, body) {\n+ body = ':robot: ' + body\n const mutation = `\n mutation($threadId:... |
nodejs/node | 62,100 | doc: fix markdown for `expectFailure` values | Currently, about half the test API doc is broken (text outside of codeblocks below here is blank).
<img width="917" height="259" alt="2026-03-04_11-35 test api doc broken link" src="https://github.com/user-attachments/assets/3018f976-399a-4e00-b6fc-be2737053733" />
| 3b9fe896c3342619c976cd9d58e71d7bb1dcdf0e | 23ba2054f3a356d600f7ff8041cbe57c5cd4c1a0 | 7 | medium | [
{
"filename": "doc/api/test.md",
"patch": "@@ -287,11 +287,7 @@ it('should do the thing', { expectFailure: 'feature not implemented' }, () => {\n });\n ```\n \n-If the value of `expectFailure` is a\n-[<RegExp>](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) |\n-[<Fu... |
electron/electron | 50,252 | build: remove redundant bits of ncrypto node patch | #### Description of Change
As in title. No longer necessary.
#### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to [x]. -->
- [x] PR description included
- [x] I have built and tested this PR
- [x] `npm test` passes(https://github.com/electron/electron/blob/main/docs/develop... | null | b9cbcde600437eb5e6b882a78b0ec365c5c70892 | null | low | [
{
"filename": "patches/node/fix_handle_boringssl_and_openssl_incompatibilities.patch",
"patch": "@@ -17,7 +17,7 @@ Upstreams:\n - https://github.com/nodejs/node/pull/39136\n \n diff --git a/deps/ncrypto/ncrypto.cc b/deps/ncrypto/ncrypto.cc\n-index 461819ce0fa732048e4365c40a86ef55d984c35f..fa55c980a9c4f37372... |
huggingface/transformers | 44,500 | Follow-up typing checking fixes | # What does this PR do?
- Do proper type check in case jax is installed.
- Make sure older torch versions don't raise typing issues
| 6f8bc991d33c34bd75a05e79df8b8955eeea7d49 | 976d8cc98865e28d9d826447528441290d90df46 | 7 | medium | [
{
"filename": "src/transformers/generation/continuous_batching/requests.py",
"patch": "@@ -46,13 +46,13 @@ def get_device_and_memory_breakdown() -> tuple[torch.device, int, int, int]:\n torch.xpu.empty_cache()\n torch.xpu.synchronize()\n total_memory = torch.xpu.get_device_properties... |
ollama/ollama | 13,138 | win: exit instead of abort | Calling abort on windows may trigger the C++ runtime to attempt a debugger attach, which causes the crashed runners to hang instead of exit, leading to a timeout instead of a fast failure during discovery.
Fixes #12264
Ref: https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/abort?view=msvc-170
| null | 485da9fd358eb17ba0a659a554f44be6c72efd2e | null | low | [
{
"filename": "llama/patches/0036-win-exit-instead-of-abort.patch",
"patch": "@@ -0,0 +1,28 @@\n+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001\n+From: Daniel Hiltgen <daniel@ollama.com>\n+Date: Tue, 18 Nov 2025 09:58:23 -0800\n+Subject: [PATCH] win: exit instead of abort\n+\n+---\n+... |
rust-lang/rust | 154,386 | Migrate UI tests | In this pull request, I am migrating the following files and adding a comment at the top, including a link to the issue they were regression tests for:
- `tests/ui/issues/issue-4735.rs` ➝ `tests/ui/drop/drop-noncopyable-raw-pointer.rs`
- `tests/ui/issues/issue-17734.rs` ➝ `tests/ui/codegen/box-str-drop-glue.rs`
r?... | null | c8d729b72ae7186b5754a8f6336964e165e1eaf7 | null | low | [
{
"filename": "tests/ui/codegen/box-str-drop-glue.rs",
"patch": "@@ -1,3 +1,4 @@\n+//! regression test for <https://github.com/rust-lang/rust/issues/17734>\n //@ run-pass\n // Test that generating drop glue for Box<str> doesn't ICE\n ",
"additions": 1,
"deletions": 0
},
{
"filename": "tests/... |
facebook/react | 34,904 | [compiler] Fix false positive for useMemo reassigning context vars | Within a function expression local variables may use StoreContext for local context variables, so the reassignment check here was firing too often. We should only report an error for variables that are declared outside the function, ie part of its `context`.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [S... | 1324e1bb1f867e8b2108ca52a1d4e2d4ef56d2d9 | 2bcbf254f168ddec567156f802d19315e64e4aa8 | 21 | medium | [
{
"filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateUseMemo.ts",
"patch": "@@ -184,25 +184,28 @@ function validateNoContextVariableAssignment(\n fn: HIRFunction,\n errors: CompilerError,\n ): void {\n+ const context = new Set(fn.context.map(place => place.identifier.id))... |
electron/electron | 50,281 | build: remove redundant bits of ncrypto node patch | Backport of #50252
See that PR for details.
Notes: none
| null | e6925bef1f13b7f2739d45398ce87b4506018443 | null | low | [
{
"filename": "patches/node/fix_handle_boringssl_and_openssl_incompatibilities.patch",
"patch": "@@ -17,7 +17,7 @@ Upstreams:\n - https://github.com/nodejs/node/pull/39136\n \n diff --git a/deps/ncrypto/ncrypto.cc b/deps/ncrypto/ncrypto.cc\n-index 461819ce0fa732048e4365c40a86ef55d984c35f..fa55c980a9c4f37372... |
ollama/ollama | 13,091 | fix(tokenizer): add special tokens to empty inputs | this change allows special tokens to be added to empty input sequences. specifically, this addresses the case where an image is provided to a model without a template.
previously, the runner preprocessing will regexp split the input into an empty part with an extracted image tag and the rest of the input. since the... | null | 440a3823a66330650b6bfac8378babdb88b4d036 | null | low | [
{
"filename": "model/bytepairencoding.go",
"patch": "@@ -237,7 +237,7 @@ func (bpe BytePairEncoding) Encode(s string, addSpecial bool) ([]int32, error) {\n \t\t}\n \t}\n \n-\tif addSpecial && len(ids) > 0 {\n+\tif addSpecial {\n \t\tids = bpe.vocab.addSpecials(ids)\n \t}\n ",
"additions": 1,
"deleti... |
huggingface/transformers | 44,536 | Supplement skip logic for XPU in the CPU-only tp tests | Per the title. Supplement skip logic for XPU in the CPU-only tp tests.
Hi @IlyasMoutawwakil, please help review, thanks! | null | de0c82d2d8d169ad6926e901136060939af17dfc | null | low | [
{
"filename": "tests/test_tensor_parallel_mixin.py",
"patch": "@@ -387,8 +387,8 @@ def _skip_if_not_supported(self):\n if not is_torch_greater_or_equal(\"2.9\"):\n self.skipTest(\"Tensor parallel tests require torch >= 2.9\")\n \n- if torch.cuda.is_available():\n- self.... |
nodejs/node | 61,003 | deps: brotli: cherry-pick e230f474b87 fix LoongArch64 architecture build failed | issue:#60835
LoongArch64 CI is in a failed state (https://ci.nodejs.org/job/node-test-commit-loongarch64/nodes=clfs23-64/852)
After upgrading Brotli to 1.2.0, the LoongArch64 architecture compilation fails with the error "invalid argument of ‘model’ attribute".
```
../deps/brotli/c/common/constants.h:196:23: err... | null | 180c71771414dd26d5be93682f16e47a1d168d23 | null | low | [
{
"filename": "deps/brotli/c/common/platform.h",
"patch": "@@ -213,6 +213,10 @@ To apply compiler hint, enclose the branching condition into macros, like this:\n #define BROTLI_TARGET_MIPS64\n #endif\n \n+#if defined(__ia64__) || defined(_M_IA64)\n+#define BROTLI_TARGET_IA64\n+#endif\n+\n #if defined(BROTLI... |
huggingface/transformers | 44,542 | Fix backend dependency | # What does this PR do?
As per the title | cb17d70d826be788f9fd7a9bc19aa7e7bbd56bf0 | 6a9b2c0c635ffa6d544d5034ea777e2e72c88013 | 9 | medium | [
{
"filename": "src/transformers/models/higgs_audio_v2_tokenizer/modeling_higgs_audio_v2_tokenizer.py",
"patch": "@@ -36,6 +36,7 @@\n from .configuration_higgs_audio_v2_tokenizer import HiggsAudioV2TokenizerConfig\n \n \n+@requires(backends=(\"torchaudio\",))\n @auto_docstring\n class HiggsAudioV2TokenizerPr... |
vercel/next.js | 90,890 | [ci]: continue-on-error for more gh auth status checks | This seems to be failing for our deploy test workflow ([x-ref](https://github.com/vercel/next.js/actions/runs/22685809647/job/65778800145)).
Updating to `continue-on-error` similar to https://github.com/vercel/next.js/pull/89098 because this check doesn't seem reliable.
If it fixes, will just remove in both spot... | null | 9ff3b7c4248bc79c3c2f97645036506610750a93 | null | low | [
{
"filename": ".github/workflows/test_e2e_deploy_release.yml",
"patch": "@@ -261,6 +261,9 @@ jobs:\n steps:\n - name: Check token\n run: gh auth status\n+ # This sometimes fails for unknown reasons.\n+ # Ignoring failures for now to check if a failure actually blocks subseque... |
facebook/react | 34,913 | [DevTools] fix: dont ship source maps for css in prod builds | This has been causing some issues with the submission review on Firefox store: we use OS-level paths in these source maps, which makes the build artifact different from the one that's been submitted.
Also saves ~100Kb for main.js artifact. | null | 02c80f0d8702cb894f6ef9748e7b18ffdd388a55 | null | low | [
{
"filename": "packages/react-devtools-extensions/src/main/cloneStyleTags.js",
"patch": "@@ -1,5 +1,14 @@\n-function cloneStyleTags() {\n- const linkTags = [];\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENS... |
huggingface/transformers | 44,538 | Add a new job in `build_pr_documentation.yml` (will be the new required job) | # What does this PR do?
Follow-up of #44532: we need to change the required status check to the new added job `doc_build_status_check` added in this PR, otherwise the merge queue won't get the required (passing) status and will eventually remove the PRs from the queue. | ec66c7fa70bf0194147382ec5e6d5b3ea90f9c3f | 701628527ae1ef37473f05f5d94fac7f457a3f8f | 1 | high | [
{
"filename": ".github/workflows/build_pr_documentation.yml",
"patch": "@@ -19,8 +19,21 @@ jobs:\n languages: en\n \n # Satisfy required check in merge queue without actually building docs\n- build-merge-queue:\n+ skip_merge_queue:\n if: github.event_name == 'merge_group'\n runs-on: ubuntu... |
rust-lang/rust | 154,351 | Overhaul `Erasable` impls | This PR removes many unused `Erasable` impls, converts many of the hand-written impls to macro-generated impls, and sorts the macro's inputs. This cuts over 200 lines of code and fixes three FIXME comments.
r? @petrochenkov | null | 8dfc5edc3813f9ec6d8cf77b572551fcab91adf2 | null | low | [
{
"filename": "compiler/rustc_middle/src/query/erase.rs",
"patch": "@@ -10,13 +10,12 @@ use std::intrinsics::transmute_unchecked;\n use std::mem::MaybeUninit;\n \n use rustc_ast::tokenstream::TokenStream;\n+use rustc_data_structures::steal::Steal;\n use rustc_span::{ErrorGuaranteed, Spanned};\n \n-use crate... |
ollama/ollama | 13,063 | Add deepseek v3.1 | TODO: working with split tensors | 333203d871339414d266a75e2134e87022ff110f | 584e2d646fb4d2f1643b4da81a096d01114f5b2b | 16 | medium | [
{
"filename": "ml/backend.go",
"patch": "@@ -230,7 +230,7 @@ type Tensor interface {\n // kqv := value.Mulmat(ctx, kq)\n // return kqv.Permute(ctx, 0, 2, 1, 3).Contiguous(ctx)\n type ScaledDotProductAttention interface {\n-\tScaledDotProductAttention(ctx Context, key, value, mask, sinks Tensor, scale float6... |
facebook/react | 33,987 | [DevTools] Feature detect sources panel | I broke Firefox DevTools extension in #33968.
It turns out the Firefox has a placeholder object for the sources panel which is empty. We need to detect the actual event handler. | edac0dded99d56e7d66a88da83e874761e3e937a | 3082604bdc03cfd8cee35e54dbb10caef956937e | 3 | high | [
{
"filename": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -111,7 +111,7 @@ function createBridge() {\n chrome.devtools.panels.elements.onSelectionChanged.removeListener(\n onBrowserElementSelectionChanged,\n );\n- if (sourcesPanel) {\n+ if (sourcesPanel && source... |
vercel/next.js | 90,664 | Show labeled steps for `instant()` test helper in the Playwright UI | Stacked on #90613
When `@playwright/test` is available, the `instant()` helper now wraps its cookie-based lock acquire and release in `test.step()` calls. This surfaces "Acquire Instant Lock" and "Release Instant Lock" as distinct, labeled entries in the Playwright UI action list instead of anonymous `browserContext... | 32d8a9bfd590cbe48a339da504fc5c9d25c676b1 | 97787efb45716808e4a9d0035efe7225c5f79fdd | 4 | medium | [
{
"filename": "packages/next-playwright/package.json",
"patch": "@@ -17,6 +17,14 @@\n \"dev\": \"tsc -d -w -p tsconfig.json\",\n \"typescript\": \"tsec --noEmit -p tsconfig.json\"\n },\n+ \"peerDependencies\": {\n+ \"@playwright/test\": \">=1.0.0\"\n+ },\n+ \"peerDependenciesMeta\": {\n+ ... |
electron/electron | 50,285 | fix: add ASAR support to additional copy methods | Backport of #50226
See that PR for details.
Notes: Added additional ASAR support to additional `fs` copy methods.
| null | 6a5e9fe677ddb46b55256e5f277299cbf028803d | null | low | [
{
"filename": "lib/node/asar-fs-wrapper.ts",
"patch": "@@ -1232,6 +1232,8 @@ export const wrapFsWithAsar = (fs: Record<string, any>) => {\n // has filesystem caching.\n overrideAPI(fs, 'copyFile');\n overrideAPISync(fs, 'copyFileSync');\n+ overrideAPI(fs, 'cp');\n+ overrideAPISync(fs, 'cpSync');\n \... |
nodejs/node | 62,013 | tools: bump minimatch from 3.1.3 to 3.1.5 in /tools/clang-format | Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.1.3 to 3.1.5.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/isaacs/minimatch/commit/7bba97888a27a6162983056bcce2a6e28f668712"><code>7bba978</code></a> 3.1.5</li>
<li><a href="https://github.com/isaacs/minimatch/commit/bd25942... | d310cd27c61091851ba0e23ef1abf9b6fbe2b820 | 330e3ee67e84e0d4845ff29898f22908a6a6b727 | 29 | medium | [
{
"filename": "tools/clang-format/package-lock.json",
"patch": "@@ -118,9 +118,9 @@\n }\n },\n \"node_modules/minimatch\": {\n- \"version\": \"3.1.3\",\n- \"resolved\": \"https://registry.npmjs.org/minimatch/-/minimatch-3.1.3.tgz\",\n- \"integrity\": \"sha512-M2GCs7Vk83NxkUyQV1b... |
ollama/ollama | 13,120 | app/cmd: restrict ollama:// URL scheme to supported paths | This PR refactors the `ollama://` URL scheme handler to explicitly support only the URL patterns that are actually used in practice. This makes the code simpler and more maintainable.
Updated `parseURLScheme()` to support the two external URL patterns currently in use:
- `ollama://` - Opens the application
- `olla... | null | 1fd4cb87b202ddacbc45c2a14284acfafc552101 | null | low | [
{
"filename": "app/cmd/app/app.go",
"patch": "@@ -434,37 +434,30 @@ func openInBrowser(url string) {\n \t}\n }\n \n-// parseURLScheme parses an ollama:// URL and returns whether it's a connect URL and the UI path\n-func parseURLScheme(urlSchemeRequest string) (isConnect bool, uiPath string, err error) {\n+/... |
facebook/react | 34,922 | [DevTools] BuiltInCallSite should have padding-left | We don't normally show this but when we do, it should have the same padding as other callsites.
<img width="313" height="241" alt="Screenshot 2025-10-19 at 10 46 22 PM" src="https://github.com/user-attachments/assets/7f72149e-d748-4b71-8291-889038d676e7" />
| null | 1440f4f42d59a7de4559dac972b62d9be771d1d9 | null | low | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/StackTraceView.css",
"patch": "@@ -2,7 +2,7 @@\n padding: 0.25rem;\n }\n \n-.CallSite {\n+.CallSite, .BuiltInCallSite {\n display: block;\n padding-left: 1rem;\n }",
"additions": 1,
"deletions": 1
}
] |
electron/electron | 50,280 | build: remove redundant bits of ncrypto node patch | Backport of #50252
See that PR for details.
Notes: none
| null | 139e238d0797a497c886e07f57e704b52c29ba52 | null | low | [
{
"filename": "patches/node/fix_handle_boringssl_and_openssl_incompatibilities.patch",
"patch": "@@ -17,7 +17,7 @@ Upstreams:\n - https://github.com/nodejs/node/pull/39136\n \n diff --git a/deps/ncrypto/ncrypto.cc b/deps/ncrypto/ncrypto.cc\n-index 461819ce0fa732048e4365c40a86ef55d984c35f..fa55c980a9c4f37372... |
rust-lang/rust | 154,288 | Fix typo in doc comment for `char::to_titlecase` | @rustbot label A-docs
<!-- 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 t... | null | bd919a0ee7127a846483ba53c005f1ae44171a61 | null | low | [
{
"filename": "library/core/src/char/methods.rs",
"patch": "@@ -1212,7 +1212,7 @@ impl char {\n /// returned by [`Self::to_uppercase`]. Prefer this method when seeking to capitalize\n /// Only The First Letter of a word, but use [`Self::to_uppercase`] for ALL CAPS.\n ///\n- /// If this `char`... |
huggingface/transformers | 44,532 | Update `build_pr_documentation` workflow for `merge_group` event | # What does this PR do?
So we can use `Require Merge Queue` functionoality | null | ec66c7fa70bf0194147382ec5e6d5b3ea90f9c3f | null | low | [
{
"filename": ".github/workflows/build_pr_documentation.yml",
"patch": "@@ -2,16 +2,25 @@ name: Build PR Documentation\n \n on:\n pull_request:\n+ merge_group:\n \n concurrency:\n group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}\n cancel-in-progress: true\n \n jobs:\n build:\n+... |
nodejs/node | 61,990 | lib: fix source map url parse in dynamic imports | Fixes https://github.com/nodejs/node/issues/61988 | null | afc30b71a8f032ae02307d609d1e9a975a96748a | null | low | [
{
"filename": "lib/internal/source_map/source_map_cache.js",
"patch": "@@ -247,7 +247,10 @@ function dataFromUrl(sourceURL, sourceMappingURL) {\n }\n }\n \n- const mapURL = new URL(sourceMappingURL, sourceURL).href;\n+ const mapURL = URLParse(sourceMappingURL, sourceURL);\n+ if (mapURL === null) {\... |
facebook/react | 34,916 | [DevTools] Don't attach filtered IO to grandparent Suspense | Fixes "We are cleaning up async info that was not on the parent Suspense boundary." when filtering some Suspense instances e.g.
```
<Activity name="a">
<div>
<Activity name="b">
<Suspense>
{promise}
```
filtering everything below `<Activity name="b">` would add the `promise` to the suspended... | 40c7a7f6cac62bd6721328524cc787475ce026eb | b485f7cf64118fc8729181f46fe5e2edd47bea43 | 5 | medium | [
{
"filename": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -2862,7 +2862,10 @@ export function attach(\n let parentInstance = reconcilingParent;\n while (\n parentInstance.kind === FILTERED_FIBER_INSTANCE &&\n- parentInstance.parent !== null\n+ parentI... |
huggingface/transformers | 44,502 | Fix type checker | # What does this PR do?
As per the title. Introduced in https://github.com/huggingface/transformers/pull/44381, not sure why the CI passed | a1101f3aab7c0230873d8a5763f07164f633750a | 6f8bc991d33c34bd75a05e79df8b8955eeea7d49 | 1 | high | [
{
"filename": "src/transformers/utils/import_utils.py",
"patch": "@@ -505,7 +505,7 @@ def is_torch_bf16_gpu_available() -> bool:\n if is_torch_musa_available():\n return torch.musa.is_bf16_supported() if hasattr(torch, \"musa\") else False\n if is_torch_mlu_available():\n- return torc... |
vercel/next.js | 90,819 | Unify Node and Edge externals list | Unify the list of Node/Edge iexternals.
Turns out `readline/promises` and `stream/consumers` was missing in some places.
Closes https://github.com/vercel/next.js/issues/90765 | 18b946304b7a730ad724b50f5abdbf70ceb9db18 | a41e4d57020e1195b66cfe20cef59c469f9660ec | 16 | medium | [
{
"filename": "Cargo.lock",
"patch": "@@ -4600,6 +4600,7 @@ dependencies = [\n \"indexmap 2.13.0\",\n \"indoc\",\n \"modularize_imports\",\n+ \"next-taskless\",\n \"once_cell\",\n \"pathdiff\",\n \"preset_env_base\",",
"additions": 1,
"deletions": 0
},
{
"filename": "crates/next-core/s... |
huggingface/transformers | 44,381 | Add MLU bf16 support to is_torch_bf16_gpu_available | ### What does this PR do?
This PR adds MLU support to `is_torch_bf16_gpu_available()` by checking
`torch.mlu.is_bf16_supported()` when an MLU device is available.
### Why is this needed?
MLU devices support bf16 training, but they are currently not considered
in the bf16 capability check. As a result, enabli... | 821e3fbdfd117951089ab994e6626fb5ceb331ff | a1101f3aab7c0230873d8a5763f07164f633750a | 2 | high | [
{
"filename": "src/transformers/utils/import_utils.py",
"patch": "@@ -504,6 +504,8 @@ def is_torch_bf16_gpu_available() -> bool:\n return torch.backends.mps.is_macos_or_newer(14, 0)\n if is_torch_musa_available():\n return torch.musa.is_bf16_supported() if hasattr(torch, \"musa\") else F... |
ollama/ollama | 10,292 | discover: Support cgroups cores and memory limitations | This pull request can be performance improvement for inference using CPUs in a container like Kubernetes Pods.
Kubernetes and Docker have CPU and memory limitation features using cgroups. But Ollama cannot be fetch CPU and memory information from it. So Ollama start too many threads in a limited environment and encoun... | null | 4aba2e8b727795320f049a28c23bbd9882b272c0 | null | low | [
{
"filename": "discover/cpu_linux.go",
"patch": "@@ -2,6 +2,7 @@ package discover\n \n import (\n \t\"bufio\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n \t\"log/slog\"\n@@ -10,12 +11,21 @@ import (\n \t\"reflect\"\n \t\"regexp\"\n \t\"sort\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/for... |
electron/electron | 50,279 | build: remove redundant bits of ncrypto node patch | Backport of #50252
See that PR for details.
Notes: none
| null | 90b3a2341db07c7cdb27063f25221da74c583486 | null | low | [
{
"filename": "patches/node/fix_handle_boringssl_and_openssl_incompatibilities.patch",
"patch": "@@ -17,7 +17,7 @@ Upstreams:\n - https://github.com/nodejs/node/pull/39136\n \n diff --git a/deps/ncrypto/ncrypto.cc b/deps/ncrypto/ncrypto.cc\n-index 461819ce0fa732048e4365c40a86ef55d984c35f..fa55c980a9c4f37372... |
rust-lang/rust | 151,148 | Add functions to `GrowableBitSet` | Only really need `insert_range` for clippy, but may as well add the others. Using `Range` instead of `RangeBounds` since an end bound is needed for this to make sense and there aren't any traits to enforce that. | null | 997493114f8a8d996e528e95ab1336b902c295d3 | null | low | [
{
"filename": "compiler/rustc_index/src/bit_set.rs",
"patch": "@@ -1323,13 +1323,29 @@ impl<T: Idx> GrowableBitSet<T> {\n self.bit_set.insert(elem)\n }\n \n+ #[inline]\n+ pub fn insert_range(&mut self, elems: Range<T>) {\n+ self.ensure(elems.end.index());\n+ self.bit_set.inse... |
nodejs/node | 62,064 | meta: bump step-security/harden-runner from 2.14.2 to 2.15.0 | Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.14.2 to 2.15.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/step-security/harden-runner/releases">step-security/harden-runner's releases</a>.</em></p>
<blockquote>
<h2>v2.15.0</h2>
<... | null | a78cca6deb507c0151f5a91c424b31d03ba7c904 | null | low | [
{
"filename": ".github/workflows/scorecard.yml",
"patch": "@@ -35,7 +35,7 @@ jobs:\n \n steps:\n - name: Harden Runner\n- uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2\n+ uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215... |
facebook/react | 34,911 | [Flight] Ignore bound-anonymous-fn resources as they're not considered I/O | When you create a snapshot from an AsyncLocalStorage in Node.js, that creates a new bound AsyncResource which everything runs inside of.
https://github.com/nodejs/node/blob/3437e1c4bd529e51d96ea581b6435bbeb77ef524/lib/internal/async_local_storage/async_hooks.js#L61-L67
This resource is itself tracked by our async... | null | 58bdc0bb967098f14562cd76af0668f2056459a0 | null | low | [
{
"filename": "packages/react-server/src/ReactFlightServerConfigDebugNode.js",
"patch": "@@ -142,10 +142,28 @@ export function initAsyncDebugInfo(): void {\n }: UnresolvedPromiseNode);\n }\n } else if (\n- type !== 'Microtask' &&\n- type !== 'TickObject' &&\n-... |
ollama/ollama | 12,871 | bring back sysfs based VRAM information for AMD | Users are reporting invalid VRAM data on linux which may originate from the switch to relying on ROCm APIs. This brings back the old sysfs DRM based VRAM detection approach, implemented in the VRAM lookup patch.
While developing this, I noticed our Dockerfile build was causing a re-install of CUDA every time I touc... | 6286d9a3a549c600896a4a7029983a09a8488b56 | 2f36d769aa2db6e7bb41a0dbd079f9ce7a9bdc40 | 22 | medium | [
{
"filename": "Dockerfile",
"patch": "@@ -39,14 +39,14 @@ ENV CC=clang CXX=clang++\n FROM base-${TARGETARCH} AS base\n ARG CMAKEVERSION\n RUN curl -fsSL https://github.com/Kitware/CMake/releases/download/v${CMAKEVERSION}/cmake-${CMAKEVERSION}-linux-$(uname -m).tar.gz | tar xz -C /usr/local --strip-component... |
vercel/next.js | 90,858 | Update Rspack development test manifest | This auto-generated PR updates the development integration test manifest used when testing Rspack. | 1f45f98a269258c4ff4cb94abe9440bc92798820 | 8bdfe0d6324985e78f07b8de53ebc11f7e7d52c5 | 27 | medium | [
{
"filename": "test/rspack-dev-tests-manifest.json",
"patch": "@@ -7945,6 +7945,16 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/e2e/app-dir/otel-parent-span-propagation/otel-parent-span-propagation.test.ts\": {\n+ \"passed\": [\n+ \"otel-parent-span-propagation should set... |
electron/electron | 50,241 | fix: prefer browser runtime over node in DevTools HostRuntime detection | #### Description of Change
Closes https://github.com/electron/electron/issues/50220
Upstream DevTools' HostRuntime checks `IS_NODE` before `IS_BROWSER` when selecting the platform runtime. In Electron, `process` is available in renderer processes, so `IS_NODE` evaluates to `true` in the DevTools context. This cau... | null | cf84efbbb9e88389f5ac4a86f5f1766ae2bc779a | null | low | [
{
"filename": "patches/devtools_frontend/.patches",
"patch": "@@ -1 +1,2 @@\n chore_expose_ui_to_allow_electron_to_set_dock_side.patch\n+fix_prefer_browser_runtime_over_node_in_hostruntime_detection.patch",
"additions": 1,
"deletions": 0
},
{
"filename": "patches/devtools_frontend/fix_prefer... |
huggingface/transformers | 34,712 | add xpu path for awq | Enable XPU path in AutoAWQ
| null | 52ea4aa589324bae43dfb1b6db70335da7b68654 | null | low | [
{
"filename": "docs/source/en/quantization/overview.md",
"patch": "@@ -45,19 +45,19 @@ In short, supporting a wide range of quantization methods allows you to pick the\n \n Use the table below to help you decide which quantization method to use.\n \n-| Quantization method | On the fly quanti... |
rust-lang/rust | 154,358 | install-template.sh: Optimize by using Bourne shell builtins. | This replaces forking separate processes and using "cut" with Bourne shell builtin operations for "remove largest suffix pattern" and "remove smallest prefix pattern" operations.
This is the follow-up of https://github.com/rust-lang/rust/pull/145809 | null | 796d52f3e4da45e1f62139c8183b5a729328e9ce | null | low | [
{
"filename": "src/tools/rust-installer/install-template.sh",
"patch": "@@ -433,8 +433,8 @@ uninstall_components() {\n local _directive\n while read _directive; do\n \n- local _command=`echo $_directive | cut -f1 -d:`\n- local _file=`echo $_directive | cut -f2 -... |
ollama/ollama | 13,123 | ci: fix missing vulkan binaries in linux bundles | Fixes #13104 | 8224cd9063f29fe1bd775d386988aac8e6fd2ea6 | 399eacf48677a96a809f6960b35d04a60dcba97a | 20 | medium | [
{
"filename": ".github/workflows/release.yaml",
"patch": "@@ -366,6 +366,7 @@ jobs:\n bin/ollama) echo $COMPONENT >>ollama-${{ matrix.os }}-${{ matrix.arch }}.tar.in ;;\n lib/ollama/*.so*) echo $COMPONENT >>ollama-${{ matrix.os }}-${{ matrix.arch }}.tar.in... |
facebook/react | 34,907 | [DevTools] Infer name from stack if it's the generic "lazy" name | Stacked on #34906.
Infer name from stack if it's the generic "lazy" name. It might be wrapped in an abstraction. E.g. `next/dynamic`.
Also use the function name as a description of a resolved function value.
<img width="310" height="166" alt="Screenshot 2025-10-18 at 10 42 05 AM" src="https://github.com/user-a... | null | bf11d2fb2f01174974b7e1fa5b1c01d34936724b | null | low | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/useInferredName.js",
"patch": "@@ -16,7 +16,7 @@ export default function useInferredName(\n const fetchFileWithCaching = useContext(FetchFileWithCachingContext);\n const name = asyncInfo.awaited.name;\n let inferNameFromStack = null;\n- ... |
nodejs/node | 62,033 | build: do not depend on V8 deps on `--without-bundled-v8` builds | The test-shared on ARM macOS goes from having to compile 328 things down to 213 – that should speed up a bit more the `test-shared.yml` workflow, and reduce the load on the shared binary cache a bit more (which should help with https://github.com/nodejs/node/issues/61436).
AFAICT it's not possible to build Node.js `... | null | 48c208fe663c2531318553fd4295eb7909803e69 | null | low | [
{
"filename": "node.gyp",
"patch": "@@ -895,7 +895,6 @@\n '<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h\n ],\n 'dependencies': [\n- 'tools/v8_gypfiles/abseil.gyp:abseil',\n 'node_js2c#host',\n ],\n \n@@ -956,6 +955,9 @@\n 'src/node_snapshot_stub.cc',\... |
huggingface/transformers | 43,936 | Fix failed unit tests for moonshine_streaming model | @ydshieh , pls help review, thx! | 421c7f6248e28d24d84ee000252a1e71fbc24917 | 4f91111b8ef37bd227f33c7facb92c41aa77604d | 17 | medium | [
{
"filename": "src/transformers/models/moonshine_streaming/modeling_moonshine_streaming.py",
"patch": "@@ -822,7 +822,7 @@ def forward(\n position_embeddings = self.pos_emb(\n torch.arange(encoder_hidden_states.shape[1], device=encoder_hidden_states.device)\n )\n- encoder_... |
vercel/next.js | 90,857 | Update Rspack production test manifest | This auto-generated PR updates the production integration test manifest used when testing Rspack. | null | 5ef7b937244a00f810b5f1ef24b57897cdc9d239 | null | low | [
{
"filename": "test/rspack-build-tests-manifest.json",
"patch": "@@ -5411,6 +5411,16 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/e2e/app-dir/otel-parent-span-propagation/otel-parent-span-propagation.test.ts\": {\n+ \"passed\": [\n+ \"otel-parent-span-propagation should s... |
huggingface/transformers | 44,399 | Fix position_ids typo in Qwen3_5TextModel forward pass | ## Summary
Fixes #44384
In `Qwen3_5TextModel.forward`, after splitting `position_ids` into `text_position_ids` (index 0, for text) and `position_ids` (indices 1:, for temporal/height/width), the decoder layer call incorrectly passed `position_ids` instead of `text_position_ids`.
This caused shape mismatches in Flash... | 421c7f6248e28d24d84ee000252a1e71fbc24917 | cc7ab9be508ce6ed3637bba9e50367b29b742dc6 | 1 | medium | [
{
"filename": "src/transformers/models/qwen3_5/modeling_qwen3_5.py",
"patch": "@@ -1354,7 +1354,7 @@ def forward(\n hidden_states,\n position_embeddings=position_embeddings,\n attention_mask=layer_mask,\n- position_ids=position_ids,\n+ ... |
electron/electron | 50,274 | fix: prefer browser runtime over node in DevTools HostRuntime detection | Backport of #50241
See that PR for details.
Notes: Fix an issue where some DevTools functionality didn't work as expected. | null | 270c9e7ce9ed7b710f3736739ff5a17e2117fbce | null | low | [
{
"filename": "patches/devtools_frontend/.patches",
"patch": "@@ -1 +1,2 @@\n chore_expose_ui_to_allow_electron_to_set_dock_side.patch\n+fix_prefer_browser_runtime_over_node_in_hostruntime_detection.patch",
"additions": 1,
"deletions": 0
},
{
"filename": "patches/devtools_frontend/fix_prefer... |
rust-lang/rust | 154,233 | Move ui/issues tests to relevant subdirectories | <!-- 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 | 4b9e6557dd1ebd028be7d25b5881de2c151d5ebe | null | low | [
{
"filename": "tests/ui/variants/variant-result-noresult-used-as-type.rs",
"patch": "@@ -1,5 +1,6 @@\n //@ edition:2015\n //@ ignore-sgx std::os::fortanix_sgx::usercalls::raw::Result changes compiler suggestions\n+// https://github.com/rust-lang/rust/issues/17546\n \n use foo::MyEnum::Result;\n use foo::NoR... |
ollama/ollama | 13,079 | app/ui: fix to point ollama client to ui backend in dev mode | In development mode, the Ollama client was using window.location.origin (http://localhost:5173 since frontend is running on 5173), causing it to call APIs on the Vite dev server instead of the UI backend proxy server. This resulted in 404 errors for some API calls (/tags, /show).
This PR fix to configure the Ollama ... | null | 231cc878cba3f5d080bc96faf8ecbded31b0b4e2 | null | low | [
{
"filename": "app/ui/app/src/api.ts",
"patch": "@@ -15,6 +15,7 @@ import {\n import { parseJsonlFromResponse } from \"./util/jsonl-parsing\";\n import { ollamaClient as ollama } from \"./lib/ollama-client\";\n import type { ModelResponse } from \"ollama/browser\";\n+import { API_BASE } from \"./lib/config\... |
facebook/react | 34,906 | Resolve the .default export of a React.lazy as the canonical value | For debug purposes this is the value that the `React.lazy` resolves to. It also lets us look at that value for descriptions like its name. | null | ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4 | null | low | [
{
"filename": "packages/react/src/ReactLazy.js",
"patch": "@@ -20,6 +20,8 @@ import {enableAsyncDebugInfo} from 'shared/ReactFeatureFlags';\n \n import {REACT_LAZY_TYPE} from 'shared/ReactSymbols';\n \n+import noop from 'shared/noop';\n+\n const Uninitialized = -1;\n const Pending = 0;\n const Resolved = 1;... |
nodejs/node | 61,959 | doc,module: add missing doc for syncHooks.deregister() | <!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md
- the commit message formatting guidelines at
https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-requests.md#commit-message-guidelines
For code changes:
1. Inc... | 6964b539806e3b2103dd6b65572287b8a615f5d3 | d0798d12ed5c98bdde33ee42ec8d074de10cf1e2 | 29 | medium | [
{
"filename": "doc/api/module.md",
"patch": "@@ -235,9 +235,14 @@ changes:\n * `options` {Object}\n * `load` {Function|undefined} See [load hook][]. **Default:** `undefined`.\n * `resolve` {Function|undefined} See [resolve hook][]. **Default:** `undefined`.\n+* Returns: {Object} An object with the follo... |
huggingface/transformers | 44,421 | Update parent module attributes when sharding with TP | # What does this PR do?
When we shard weights according to a TP plan, we do not update the corresponding parent module attributes.
For instance if we shard the weight of a `torch.nn.Linear`, we should also update its `in_features` or `out_features` attributes.
For example, PEFT, relying on these attributes to in... | 130f1644873e2bbd4b234b68e71c65e85ed86825 | 47092352cf2c951b9d7c80433eed05bd4901bfb1 | 12 | medium | [
{
"filename": "src/transformers/core_model_loading.py",
"patch": "@@ -921,6 +921,8 @@ def set_param_for_module(\n # super important otherwise _init_weight will re-init the param\n param_value._is_hf_initialized = True\n setattr(module_obj, param_name, param_value)\n+ ... |
ollama/ollama | 13,096 | Fix a typo in `runner.go` | Sorry for the low-effort PR, but someone complained about this while browsing the logs. | 72ff5b9d8c7a07df46f7a7db68a42562ddab2994 | 5d31242fbfc09302e611df8c2202cb8d2c72037a | 2 | high | [
{
"filename": "discover/runner.go",
"patch": "@@ -94,7 +94,7 @@ func GPUDevices(ctx context.Context, runners []ml.FilteredRunnerDiscovery) []ml.\n \t\t\tvar dirs []string\n \t\t\tif dir != \"\" {\n \t\t\t\tif requested != \"\" && filepath.Base(dir) != requested {\n-\t\t\t\t\tslog.Debug(\"skipping available ... |
vercel/next.js | 90,395 | partial fallbacks: add adapter flag | Plumbs the new `partialFallback` through `onBuildComplete`, which is consumed by `adapter-vercel` to signal that a prerender is a partial fallback (PR forthcoming, once this lands, so it's available on the types). For more information on what a partial fallback is, see the downstack PR.
| 70a2e8d934887ca1ca6e4bf3d1aeae205476b5fd | 1c9577e3de3346554a73b26bf751c0e525d34567 | 18 | medium | [
{
"filename": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -234,6 +234,11 @@ export interface AdapterOutput {\n * renderingMode signals PPR or not for a prerender\n */\n renderingMode?: RenderingMode\n+ /**\n+ * partialFallback signals this prerender serve... |
ollama/ollama | 10,683 | Fix typos | Fix typos | d5649821aea25c3c02747ac1b19d8ac6e138817b | dd0ed0ef172cdc270ef062ac764a58780c5c8093 | 1 | medium | [
{
"filename": "CONTRIBUTING.md",
"patch": "@@ -16,7 +16,7 @@ See the [development documentation](./docs/development.md) for instructions on h\n \n * New features: new features (e.g. API fields, environment variables) add surface area to Ollama and make it harder to maintain in the long run as they cannot be... |
facebook/react | 34,885 | [DevTools] Don't highlight the root rect if no roots has unique suspenders | Stacked on #34881.
We don't paint suspense boundaries if there are no suspenders. This does the same with the root. The root is still selectable so you can confirm but there's no affordance drawing attention to click the root.
This could happen if you don't use the built-ins of React to load things like scripts a... | f970d5ff325b49d3e675c9e72025834ddc86879d | 423c44b88611afd9bf332fd1a91b5afdca8a48be | 1 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.css",
"patch": "@@ -1,22 +1,27 @@\n .SuspenseRectsContainer {\n padding: .25rem;\n- cursor: pointer;\n- outline-color: var(--color-transition);\n+ outline-color: transparent;\n outline-style: solid;\n outline... |
electron/electron | 50,275 | fix: prefer browser runtime over node in DevTools HostRuntime detection | Backport of #50241
See that PR for details.
Notes: Fix an issue where some DevTools functionality didn't work as expected. | null | a1550f5102ce4429f1fa2b66c4696b2c0f5965af | null | low | [
{
"filename": "patches/devtools_frontend/.patches",
"patch": "@@ -1 +1,2 @@\n chore_expose_ui_to_allow_electron_to_set_dock_side.patch\n+fix_prefer_browser_runtime_over_node_in_hostruntime_detection.patch",
"additions": 1,
"deletions": 0
},
{
"filename": "patches/devtools_frontend/fix_prefer... |
rust-lang/rust | 154,355 | delegation: add const type ICE test | This PR adds test for rust-lang/rust#154334 which was fixed by rust-lang/rust#154142. Fixes rust-lang/rust#154334. Part of rust-lang/rust#118212.
r? @petrochenkov | null | 4e443455b4933fd2f82e4e8d6fbad5dfbb91b1e9 | null | low | [
{
"filename": "tests/ui/delegation/generics/const-type-ice-154334.rs",
"patch": "@@ -0,0 +1,11 @@\n+//@ check-pass\n+//@ compile-flags: --crate-type=lib\n+\n+#![feature(min_generic_const_args)]\n+#![feature(fn_delegation)]\n+#![feature(adt_const_params)]\n+#![feature(unsized_const_params)]\n+trait Trait<'a,... |
facebook/react | 34,881 | [DevTools] Highlight the rect when the corresponding timeline bean is hovered | Stacked on #34880.
In #34861 I removed the highlight of the real view when hovering the timeline since it was disruptive to stepping through the visuals.
This makes it so that when we hover the timeline we highlight the rect with the subtle hover effect added in #34880.
We can now just use the one shared state... | ef88c588d51366d16c5323dba4bd197aeb85e4ea | f970d5ff325b49d3e675c9e72025834ddc86879d | 2 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseRects.css",
"patch": "@@ -8,8 +8,8 @@\n background-color: color-mix(in srgb, var(--color-transition) 5%, transparent);\n }\n \n-.SuspenseRectsContainer:hover:not(:has(.SuspenseRectsBoundary:hover))[data-highlighted='false... |
ollama/ollama | 11,877 | Add KDeps to Community Integrations | KDeps is an AI framework for building Dockerized full-stack applications with declarative PKL configuration, it uses Ollama for AI-powered APIs.
https://kdeps.com | 684a9a8c5a01acfe13ee4a55a7dc7aff69f6b17a | d5649821aea25c3c02747ac1b19d8ac6e138817b | 12 | medium | [
{
"filename": "README.md",
"patch": "@@ -427,6 +427,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Mayan EDMS](https://gitlab.com/mayan-edms/mayan-edms) (Open source document management system to organize, tag, search, and automate your files with powerful Ollama driven workflows.)\... |
huggingface/transformers | 44,480 | Add `diffusers` to CI docker file | # What does this PR do?
add `diffusers` to docker file for `VibeVoice` (added in PR #40546). | null | 27455d62e06508256489fbce3ef82bdbc4e6841d | null | low | [
{
"filename": "docker/transformers-all-latest-gpu/Dockerfile",
"patch": "@@ -111,6 +111,9 @@ RUN python3 -m pip install --no-cache-dir einops\n # For Some tests with `@require_liger_kernel`\n RUN python3 -m pip install --no-cache-dir liger-kernel\n \n+# For `VibeVoice` (added in PR #40546)\n+RUN python3 -m ... |
vercel/next.js | 90,769 | Turbopack: add anyhow::Context to turbo-persistence mmap, file open, and decompress operations | ### What?
Adds `anyhow::Context` (`.context()` / `.with_context()`) to error-prone operations in the `turbo-persistence` crate: file opens, memory mapping (`mmap`), and LZ4 decompression.
### Why?
`get` / `batch_get` sometimes fail with a bare "Cannot allocate memory" error, but the anyhow error chain has no context... | ea56922a398e4dc682c0a3aeddaeefa42c747f12 | 6f763ecfd48acc3593f8a10328aef9358fdb7c75 | 6 | medium | [
{
"filename": "turbopack/crates/turbo-persistence/src/compression.rs",
"patch": "@@ -21,7 +21,13 @@ pub fn decompress_into_arc(uncompressed_length: u32, block: &[u8]) -> Result<Arc\n let mut buffer = unsafe { buffer.assume_init() };\n // We just created this Arc so refcount is 1; get_mut always succ... |
nodejs/node | 62,049 | deps: update ada to 3.4.3 | This is an automated update of ada to 3.4.3. | null | 9cc7cee15ec43958eec57ef526f9ee5674724ef8 | null | low | [
{
"filename": "deps/ada/ada.cpp",
"patch": "@@ -1,4 +1,4 @@\n-/* auto-generated on 2026-01-30 13:29:04 -0500. Do not edit! */\n+/* auto-generated on 2026-02-23 21:29:24 -0500. Do not edit! */\n /* begin file src/ada.cpp */\n #include \"ada.h\"\n /* begin file src/checkers.cpp */\n@@ -14495,6 +14495,12 @@ bo... |
electron/electron | 50,276 | fix: prefer browser runtime over node in DevTools HostRuntime detection | Backport of #50241
See that PR for details.
Notes: Fix an issue where some DevTools functionality didn't work as expected. | null | c3e397ed2daa54d1759c0b2f0e22bced56283c98 | null | low | [
{
"filename": "patches/devtools_frontend/.patches",
"patch": "@@ -1 +1,2 @@\n chore_expose_ui_to_allow_electron_to_set_dock_side.patch\n+fix_prefer_browser_runtime_over_node_in_hostruntime_detection.patch",
"additions": 1,
"deletions": 0
},
{
"filename": "patches/devtools_frontend/fix_prefer... |
rust-lang/rust | 154,348 | re-enable enzyme/autodiff builds on dist-aarch64-apple | <!-- 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 | 908fae7efbda1cf54b91301c79100c0350e2005f | null | low | [
{
"filename": "src/ci/github-actions/jobs.yml",
"patch": "@@ -509,7 +509,7 @@ auto:\n - name: dist-aarch64-apple\n env:\n SCRIPT: >-\n- ./x.py dist bootstrap\n+ ./x.py dist bootstrap enzyme\n --include-default-paths\n --host=aarch64-apple-darwin\n --target=a... |
facebook/react | 34,894 | [DevTools] Repeat the "name" if there's no short description in groups | It looks weird when the row is blank when there's no short description for the entry in a group.
<img width="328" height="436" alt="Screenshot 2025-10-17 at 12 25 30 AM" src="https://github.com/user-attachments/assets/12f5c55f-a37f-4b6d-913e-f763cec6b211" />
| null | 724e7bfb40ad4f08b7f59f23db22e5fa7eda965a | null | low | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js",
"patch": "@@ -169,7 +169,7 @@ function SuspendedByRow({\n type={isOpen ? 'expanded' : 'collapsed'}\n />\n <span className={styles.CollapsableHeaderTitle}>\n- {skipN... |
ollama/ollama | 12,995 | server: Edit manifest documentation | Removes an unneeded sentence in the package documentation. Previously, the layer JSON fields were introduced twice. | null | 4cea757e7035911a7582587858117f4aed4af7bd | null | low | [
{
"filename": "server/internal/manifest/manifest.go",
"patch": "@@ -4,9 +4,7 @@\n // # Manifests\n //\n // A manifest is a JSON object that describes a model. The JSON object has a\n-// single field \"layers\" which is a list of layers that make up the model. Each\n-// layer has the following fields:\n-//\n... |
facebook/react | 34,880 | [DevTools] Tweak the rects design and create multi-environment color scheme | <img width="1011" height="811" alt="Screenshot 2025-10-16 at 2 20 46 PM" src="https://github.com/user-attachments/assets/6dea3962-d369-4823-b44f-2c62b566c8f1" />
The selection is now clearer with a wider outline which spans the bounding box if there are multi rects.
The color now gets darked changes on hover with... | 93f8593289538b0be7b0eefec85e9a6ca8f56738 | ef88c588d51366d16c5323dba4bd197aeb85e4ea | 10 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/constants.js",
"patch": "@@ -136,8 +136,6 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-timeline-text-dim-color': '#ccc',\n '--color-timeline-react-work-border': '#eeeeee',\n '--color-timebar-ba... |
vercel/next.js | 90,762 | [devtools] Bundle for same target as Next.js browser runtime | Brings us down to 700 kB (down from 800 kB). Seems like Rspack doesn't forward the `target` option to swc-loader so we have to do that manually.
Originally noticed because async-await got transpiled away.
Before:
<img width="1226" height="390" alt="CleanShot 2026-03-02 at 12 27 01@2x" src="https://github.com/use... | 75988e43318a42fb7c9b3f3381f0df70a89abbdc | 9b70236b5452727795e9ad96e049205c8ef5260d | 29 | medium | [
{
"filename": "packages/next/next-devtools.webpack-config.js",
"patch": "@@ -73,7 +73,11 @@ module.exports = ({ dev, ...rest }) => {\n test: /\\.(ts|tsx)$/,\n exclude: [/node_modules/],\n loader: 'builtin:swc-loader',\n+ /** @type {import('@rspack/core').SwcLoaderOptio... |
huggingface/transformers | 44,417 | Neuron kernels integration | # What does this PR do?
To be merged after #44302 and https://github.com/huggingface/kernels/pull/285. It adds the `neuron` device in checks for custom kernels, enabling to load kernels for Neuron devices. | null | 165a41a7523a1d3111962db5ca78eb5e692917c7 | null | low | [
{
"filename": "src/transformers/utils/kernel_config.py",
"patch": "@@ -57,8 +57,8 @@ def infer_device(model):\n def add_to_mapping(layer_name, device, repo_name, mode, compatible_mapping):\n from kernels import LayerRepository\n \n- if device not in [\"cuda\", \"rocm\", \"xpu\", \"npu\"]:\n- r... |
nodejs/node | 62,046 | doc: add title to index | A title on this page is needed for the new `web` generator to populate the navigation. | null | 6291ea76c2d647a56fd8ad096642ff27d8b4a8e4 | null | low | [
{
"filename": "doc/api/index.md",
"patch": "@@ -1,7 +1,4 @@\n-<!--\n- NB(chrisdickinson): if you move this file, be sure to update\n- tools/doc/html.mjs to point at the new location.\n--->\n+# Index\n \n <!--introduced_in=v0.10.0-->\n ",
"additions": 1,
"deletions": 4
}
] |
electron/electron | 50,260 | ci: fix unsupported major in release board automation | #### Description of Change
<!--
Thank you for your Pull Request. Please provide a description above and review
the requirements below.
Contributors guide: https://github.com/electron/electron/blob/main/CONTRIBUTING.md
-->
The changes in #50081 accidentally conflated two different concepts: the major that en... | 0d869c2007393a2c50aee13519a96e94d00a0a6d | 58cd1aba10d9bbd6de2012d97c3e5f64c19fa5a4 | 30 | medium | [
{
"filename": ".github/workflows/branch-created.yml",
"patch": "@@ -31,8 +31,8 @@ jobs:\n else\n echo \"Not a release branch: $BRANCH_NAME\"\n fi\n- - name: Determine Unsupported Major Version\n- id: determine-unsupported-major\n+ - name: Determine Next Unsup... |
rust-lang/rust | 154,230 | Moved and rename issue-50411 to tests/ui/mir/inliner-double-elaborate | <!-- 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 | 8ae423e5e8db47b8233ad657b8d84247f94de179 | null | low | [
{
"filename": "tests/ui/mir/inliner-double-elaborate.rs",
"patch": "@@ -1,4 +1,4 @@\n-// Regression test for #50411: the MIR inliner was causing problems\n+// Regression test for https://github.com/rust-lang/rust/issues/50411: the MIR inliner was causing problems\n // here because it would inline promoted c... |
ollama/ollama | 13,078 | Fix function name and improve test case readability | Made few typo fixes and also fixed the function name as well. | null | a751bc159c7abbea5c784c4ad8e041c52447a71f | null | low | [
{
"filename": "llama/llama_test.go",
"patch": "@@ -80,10 +80,10 @@ func TestIssue7978(t *testing.T) {\n \t}\n }\n \n-func TestSchemaToGrammer(t *testing.T) {\n+func TestSchemaToGrammar(t *testing.T) {\n \tcases := []struct {\n \t\tschema string\n-\t\tprefix []byte // nil is check as nil\n+\t\tprefix []byte ... |
huggingface/transformers | 44,468 | Replace placeholder tokens as specified in added_tokens_decoder | Replace placeholder tokens as specified in added_tokens_decoder
if we have added_tokens_decoder with specific token_ids, we need to overwrite them in spm model !
example: [UNUSED_TOKEN_146] -> <|im_start|>
see internlm2: https://huggingface.co/internlm/internlm2_5-7b-chat/blob/main/tokenizer_config.json | fd6bc380c8854a370fbc9f68a157895d84dce7d7 | e498b5bd273e638990cfc82d8c2177a9c5b67858 | 19 | medium | [
{
"filename": "src/transformers/tokenization_utils_tokenizers.py",
"patch": "@@ -217,6 +217,19 @@ def convert_to_native_format(cls, trust_remote_code=False, **kwargs):\n ):\n vocab = local_kwargs.pop(\"vocab\", None)\n merges = local_kwargs.pop(\"merge... |
electron/electron | 50,258 | build(deps-dev): bump folder-hash from 4.1.1 to 4.1.2 | Bumps [folder-hash](https://github.com/marc136/node-folder-hash) from 4.1.1 to 4.1.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/marc136/node-folder-hash/releases">folder-hash's releases</a>.</em></p>
<blockquote>
<h2>v4.1.2</h2>
<p><strong>Full Changelog</strong>: <a hre... | 3295d0d4b05bf338427e5f98374dda206b83651f | 26a3a8679a063623cf7e6bc1f5e07042fa953d7a | 5 | medium | [
{
"filename": "package.json",
"patch": "@@ -35,7 +35,7 @@\n \"eslint-plugin-node\": \"^11.1.0\",\n \"eslint-plugin-promise\": \"^6.6.0\",\n \"events\": \"^3.2.0\",\n- \"folder-hash\": \"^4.1.1\",\n+ \"folder-hash\": \"^4.1.2\",\n \"got\": \"^11.8.5\",\n \"husky\": \"^9.1.7\",\n ... |
facebook/react | 34,849 | [Flight] Fix detached `ArrayBuffer` error when streaming typed arrays | Using `renderToReadableStream` in Node.js with binary data from `fs.readFileSync` (or `Buffer.allocUnsafe`) could cause downstream consumers (like compression middleware) to fail with "Cannot perform Construct on a detached ArrayBuffer".
The issue occurs because Node.js uses an 8192-byte Buffer pool for small alloca... | null | dc485c7303f0d7d10fdbd2ccd4a020574e679840 | null | low | [
{
"filename": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMNode-test.js",
"patch": "@@ -10,11 +10,11 @@\n \n 'use strict';\n \n+import fs from 'fs';\n+import os from 'os';\n+import path from 'path';\n import {patchSetImmediate} from '../../../../scripts/jest/patchSetImmediate';\n \n-global... |
nodejs/node | 61,972 | doc: expand SECURITY.md with non-vulnerability examples | As discussed in the triage team, most of the reports we are receiving are using IA to fuzz your codebase, making this explicitly on SECURITY.md might avoid that amount of AI Sloop.
cc: @nodejs/security-triage | null | f8d5bad52f6df23dab94cdca5e33e491b00efbfe | null | low | [
{
"filename": "SECURITY.md",
"patch": "@@ -320,9 +320,17 @@ the community they pose.\n * Avoid exposing low-level or dangerous APIs directly to untrusted users.\n \n * Examples of scenarios that are **not** Node.js vulnerabilities:\n- * Allowing untrusted users to register SQLite user-defined functions t... |
rust-lang/rust | 154,364 | delegation: don't propagate synthetic params, remove lifetime hacks | Some small fixes after new delegation lowering was merged: remove lifetime hacks as now we get only early-bound lifetimes from generics, don't propagate synthetic generic params as now we know that they are synthetic. Fixes rust-lang/rust#143498. Part of rust-lang/rust#118212.
r? @petrochenkov | null | c13e9ec32bf8abf980a9c90f37489974d3d98954 | null | low | [
{
"filename": "compiler/rustc_ast_lowering/src/delegation/generics.rs",
"patch": "@@ -337,7 +337,6 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n // HACK: for now we generate predicates such that all lifetimes are early bound,\n // we can not not generate ear... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.