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
vercel/next.js
92,354
Handle edge runtime in places that import node:stream
## What? The codepath would cause checks to fail during deployment because it tries to import `node:stream` even when not used. This adds a specific path for edge runtime to avoid that.
ff7cd1bf2340ea56369c39d1aa74f1e273a7d233
b6017fac6a98a2337ce8c173ab72ad527e2b556a
19
medium
[ { "filename": "packages/next/errors.json", "patch": "@@ -1145,5 +1145,8 @@\n \"1144\": \"Prefetch inlining is enabled but no hints were found for route \\\"%s\\\". This is a bug in the Next.js build pipeline — prefetch-hints.json should contain an entry for every route that produces segment data.\",\n \...
nodejs/node
62,002
doc: include url.resolve() in DEP0169 application deprecation
Fixes: https://github.com/nodejs/node/issues/61816 Refs: https://github.com/nodejs/node/pull/61780 (supersedes) ## Situation [DEP0169: Insecure url.parse()](https://nodejs.org/docs/latest/api/deprecations.html#DEP0169) lists an Application deprecation (non-node_modules code only) for `url.parse()` that was appli...
27261b9391d755de208814dfae3f8f0923dc07b4
d198813a6bf5af727552b816d36de7e84dbfa2c8
19
medium
[ { "filename": "doc/api/deprecations.md", "patch": "@@ -2665,11 +2665,15 @@ future release.\n \n <!-- YAML\n changes:\n+ - version:\n+ - v24.0.0\n+ pr-url: https://github.com/nodejs/node/pull/55017\n+ description: DEP0169 covers also `url.format()` and `url.resolve()`.\n - version:\n - v1...
huggingface/transformers
45,261
empty
# What this PR does It's working, see https://github.com/huggingface/transformers/actions/runs/24025915210 (the failing job in this PR is because the workflow needs to be on `main` to be effective).
abc417a4b6cf05e474921449641f2ff0cc93d3dd
d3c7a19176496fc1ea246aa9df4f678f4fceb1cf
26
medium
[ { "filename": ".github/workflows/circleci-failure-summary-comment.yml", "patch": "@@ -95,20 +95,37 @@ jobs:\n \"https://circleci.com/api/v2/workflow/${workflow_id}/job\")\n \n # Step 5: Extract collection_job details\n- collection_job_number=$(echo \"$jobs\" | jq -r ...
vercel/next.js
92,292
next-core: deduplicate output assets and detect content conflicts on emit
### What? Adds deduplication and conflict detection to the asset emission stage in `crates/next-core/src/emit.rs`, and a new `IssueStage::Emit` variant in `turbopack-core`. Before emitting, assets are grouped by their output path. If multiple assets map to the same path: - If their content is identical, one is silen...
f65b10a54d9abb2ceb3890bcadc22e372f635f88
81d5e070f4a84b34bb0efe2524c200584fed3215
2
medium
[ { "filename": "crates/next-core/src/emit.rs", "patch": "@@ -1,9 +1,16 @@\n-use anyhow::Result;\n+use anyhow::{Ok, Result};\n+use futures::join;\n+use smallvec::{SmallVec, smallvec};\n use tracing::Instrument;\n-use turbo_tasks::{TryFlatJoinIterExt, ValueToStringRef, Vc};\n-use turbo_tasks_fs::{FileSystemPat...
ollama/ollama
15,022
model/parsers: Close think block if tool block starts in Qwen3.5
This change fixes https://github.com/ollama/ollama/issues/14745 when the model starts a `tool_call` block without closing the `think` block: ``` Thinking: I need to mock Valkey for tests. Let me check how the app initializes Valkey and update TESTING.md with this information. <tool_call> <function=bash> <paramet...
null
1cefa749aa7b0cd3e330a95f0b03e98dc0a914bd
null
low
[ { "filename": "model/parsers/qwen35.go", "patch": "@@ -21,6 +21,7 @@ const (\n const (\n \tqwen35ThinkingOpenTag = \"<think>\"\n \tqwen35ThinkingCloseTag = \"</think>\"\n+\tqwen35ToolCallOpenTag = \"<tool_call>\"\n )\n \n // Qwen35Parser handles qwen3.5 reasoning extraction and delegates post-thinking\n@@...
rust-lang/rust
154,292
Don't use disk-cache for query `def_kind`
<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/154292)* <!-- homu-ignore:end --> From what I can tell, the `def_kind` query has no local provider, and is always given its value via query feeding, usually from `TyCtxt::create_def`. If that's the ...
null
7e46c5f6fb87f8cf4353e058479cef15d1d952b4
null
low
[ { "filename": "compiler/rustc_middle/src/queries.rs", "patch": "@@ -1436,8 +1436,10 @@ rustc_queries! {\n \n query def_kind(def_id: DefId) -> DefKind {\n desc { \"looking up definition kind of `{}`\", tcx.def_path_str(def_id) }\n- cache_on_disk\n separate_provide_extern\n+ ...
electron/electron
50,726
ci: fetch clang-tidy package in fix-sync
Backport of #50704 See that PR for details. Notes: none
null
898e77a9ee80428f12d0819c0f565cef102ac3e4
null
low
[ { "filename": ".github/actions/fix-sync/action.yml", "patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python...
ollama/ollama
15,312
app: default app home view to new chat instead of launch
5ab10d347a729ae84b480f93a502173e81831615
4589fa2cf5afd15fb19aca96c15b5fbf885d11cf
11
medium
[ { "filename": "app/store/database.go", "patch": "@@ -82,7 +82,7 @@ func (db *database) init() error {\n \t\twebsearch_enabled BOOLEAN NOT NULL DEFAULT 0,\n \t\tselected_model TEXT NOT NULL DEFAULT '',\n \t\tsidebar_open BOOLEAN NOT NULL DEFAULT 0,\n-\t\tlast_home_view TEXT NOT NULL DEFAULT 'launch',\n+\t\tl...
facebook/react
35,616
Fix typos: occured->occurred, teh->the, accomodate->accommodate
Fixed spelling errors in comments and error messages: - Fixed 'occured' -> 'occurred' in ReactAsyncActions-test.js - Fixed 'teh' -> 'the' in ReactFiberConfigDOM.js - Fixed 'occured' -> 'occurred' in ErrorBoundary.js - Fixed 'accomodate' -> 'accommodate' in InferMutationAliasingEffects.ts <!-- Thanks for submi...
null
80b1cab397764f83efb9828563a259c8052ded0c
null
low
[ { "filename": "packages/react-devtools-shared/src/devtools/views/ErrorBoundary/ErrorBoundary.js", "patch": "@@ -156,7 +156,7 @@ export default class ErrorBoundary extends Component<Props, State> {\n <CaughtErrorView\n callStack={callStack}\n componentStack={componentStack}\...
ollama/ollama
15,311
Revert "enable flash attention for gemma4 (#15296)"
This reverts commit c8e0878814b4d19200d65571d3d2d35b4b48fd3e. Fixes a performance regression - Perf run comparison: ``` │ /tmp/0.20.0.log │ /tmp/0.20.1-flash.log │ /tmp/0.20.1-no-flash.log │ │ token/sec │ token/se...
c8e0878814b4d19200d65571d3d2d35b4b48fd3e
4bc2728047b119984e5d36f290a09dcdb0a681eb
3
high
[ { "filename": "fs/ggml/ggml.go", "patch": "@@ -890,7 +890,6 @@ func (f GGML) FlashAttention() bool {\n \treturn slices.Contains([]string{\n \t\t\"bert\",\n \t\t\"gemma3\",\n-\t\t\"gemma4\",\n \t\t\"glm4moelite\",\n \t\t\"glmocr\",\n \t\t\"gptoss\", \"gpt-oss\",", "additions": 0, "deletions": 1 } ]
nodejs/node
61,712
deps: V8: cherry-pick 64b36b441179
Cherry-picks V8 commit [`64b36b441179`](https://github.com/v8/v8/commit/64b36b44117949fe03df33d077117e7bd6257669) (ASCII fast path optimization in `WriteUtf8V2`). This optimizes the `WriteUtf8V2` path for ASCII-only one-byte strings by using SIMD-accelerated validation (`simdutf::validate_ascii`) followed by a bulk `m...
null
6682787d687c1fdeeb69740abcb4a25bb6628b66
null
low
[ { "filename": "deps/v8/src/strings/unicode-inl.h", "patch": "@@ -206,6 +206,16 @@ bool Utf8::IsValidCharacter(uchar c) {\n c != kBadChar);\n }\n \n+template <>\n+bool Utf8::IsAsciiOneByteString<uint8_t>(const uint8_t* buffer, size_t size) {\n+ return simdutf::validate_ascii(reinterpret_cast<const...
ollama/ollama
15,306
model/parsers: rework gemma4 tool call handling
Replace the custom Gemma4 argument normalizer with a stricter reference-style conversion: preserve Gemma-quoted strings, quote bare keys, and then unmarshal the result as JSON. This keeps quoted scalars as strings, preserves typed unquoted values, and adds test coverage for malformed raw-quoted inputs that the refer...
036ed1b9b50558907789c66b407a6cd05d31cc20
49d5fd5a3e1a4b4ffc5c232621e98f2dd450fb99
4
medium
[ { "filename": "model/parsers/gemma4.go", "patch": "@@ -4,6 +4,7 @@ import (\n \t\"encoding/json\"\n \t\"errors\"\n \t\"log/slog\"\n+\t\"regexp\"\n \t\"strings\"\n \t\"unicode\"\n \n@@ -25,6 +26,11 @@ const (\n \tgemma4ToolCallCloseTag = \"<tool_call|>\"\n )\n \n+var (\n+\tgemma4QuotedStringRe = regexp.MustC...
nodejs/node
62,162
inspector: return errors when CDP protocol event emission fails
Previously, there was no feedback when functions that emit events such as `Network.webSocketCreated` failed. This change modifies the behavior so that feedback can be obtained when such failures occur. Since an event may be emitted to multiple sessions, instead of throwing an error directly, the errors are returned ...
d93935bf72a18ead8f35dc32f31746b96c4b970e
4f08c6478d6ecd073c03536b8a6c473232e16c37
1
medium
[ { "filename": "src/inspector/dom_storage_agent.cc", "patch": "@@ -17,18 +17,26 @@ using v8::Local;\n using v8::Object;\n using v8::Value;\n \n+static void ThrowEventError(v8::Isolate* isolate, const std::string& message) {\n+ isolate->ThrowException(v8::Exception::TypeError(\n+ v8::String::NewFromUtf8...
huggingface/transformers
42,428
logic to select tf32 API as per Pytorch version
What does this PR do? The ask is to use fp32_precision instead of allow_tf32 for Pytorch version >= 2.9.0 for CUDA as pointed out in this [doc](https://docs.pytorch.org/docs/main/notes/cuda.html#tensorfloat-32-tf32-on-ampere-and-later-devices) mentioned in the https://github.com/huggingface/transformers/issues/42371...
null
7f5c20945a97ed960eb85d96b93c89f33772fd20
null
low
[ { "filename": "conftest.py", "patch": "@@ -31,6 +31,7 @@\n patch_testing_methods_to_collect_info,\n patch_torch_compile_force_graph,\n )\n+from transformers.utils import enable_tf32\n \n \n NOT_DEVICE_TESTS = {\n@@ -137,11 +138,9 @@ def check_output(self, want, got, optionflags):\n doctest.DocTestPa...
ollama/ollama
15,305
ggml: fix ROCm build for cublasGemmBatchedEx reserve wrapper
Add missing cublasGemmAlgo_t to hipblasGemmAlgo_t type mapping and cast away const qualifiers that hipblasGemmBatchedEx doesn't accept.
bb0c58e13416574813361d27ddf4699bf24d3090
3cd2b03a5e81f39b132ccd95b8b250f158f97981
2
medium
[ { "filename": "llama/patches/0020-ggml-No-alloc-mode.patch", "patch": "@@ -229,7 +229,7 @@ diff --git a/ggml/src/ggml-cuda/common.cuh b/ggml/src/ggml-cuda/common.cuh\n index 9fcb2f9fd..e800ee8f6 100644\n --- a/ggml/src/ggml-cuda/common.cuh\n +++ b/ggml/src/ggml-cuda/common.cuh\n-@@ -37,6 +37,62 @@\n+@@ -37,...
rust-lang/rust
154,660
Avoid creating async return opaques for foreign async fns
Fixes https://github.com/rust-lang/rust/issues/146754 Previously, def collection created the desugared async return opaque for foreign `async fn` items, but AST lowering won't lower that opaque for foreign items. That left a `DefId` without a corresponding HIR owner, which later caused an ICE during analysis.
null
ce8a3e0a85c98020b199813305faf65e3922c86d
null
low
[ { "filename": "compiler/rustc_resolve/src/def_collector.rs", "patch": "@@ -209,12 +209,15 @@ impl<'a, 'ra, 'tcx> visit::Visitor<'a> for DefCollector<'a, 'ra, 'tcx> {\n fn visit_fn(&mut self, fn_kind: FnKind<'a>, _: &AttrVec, span: Span, _: NodeId) {\n match fn_kind {\n FnKind::Fn(\n-...
electron/electron
50,704
ci: fetch clang-tidy package in fix-sync
`fix-sync` re-downloads `llvm-build` on macOS/Windows with the base `clang` and `objdump` packages, but not `clang-tidy`. A local `gclient sync` does pull `clang-tidy` (Electron's DEPS sets `checkout_clang_tidy: True`), so CI's `llvm-build` tree ends up missing a file that a local checkout has. siso uploads the whole ...
null
903e65e0486ee1506c9f55dfbd62bf10c96d877d
null
low
[ { "filename": ".github/actions/fix-sync/action.yml", "patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python...
ollama/ollama
15,296
gemma4: enable flash attention
~~This patches additional code paths in the GGML CUDA backend for the memory prediction flow.~~ ~~Fixes #15249~~ Enable flash attention for gemma4
96b202d34b82d1755887bf4204e1f2e053720d4f
c8e0878814b4d19200d65571d3d2d35b4b48fd3e
5
medium
[ { "filename": "fs/ggml/ggml.go", "patch": "@@ -890,6 +890,7 @@ func (f GGML) FlashAttention() bool {\n \treturn slices.Contains([]string{\n \t\t\"bert\",\n \t\t\"gemma3\",\n+\t\t\"gemma4\",\n \t\t\"glm4moelite\",\n \t\t\"glmocr\",\n \t\t\"gptoss\", \"gpt-oss\",", "additions": 1, "deletions": 0 } ]
rust-lang/rust
154,777
`#[cfg]`: suggest alternative `target_` name when the value does not match
<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/154777)* <!-- homu-ignore:end --> <!-- 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...
65b88ea8ee499345aa8414f16d6cf018c6bdaed6
cbe9c4deea5060e71d524dfdf310cac052bd8ad3
8
medium
[ { "filename": "compiler/rustc_lint/src/early/diagnostics/check_cfg.rs", "patch": "@@ -316,9 +316,27 @@ pub(super) fn unexpected_cfg_value(\n let is_from_cargo = rustc_session::utils::was_invoked_from_cargo();\n let is_from_external_macro = name_span.in_external_macro(sess.source_map());\n \n- // ...
vercel/next.js
92,135
Restart the `next dev` server if `.next` is deleted
This PR is AI generated. If this directory is deleted while the dev server is running, we can't reasonably recover, so we should restart the process. Addresses https://vercel.slack.com/archives/C03KAR5DCKC/p1774757692640999
null
35f26a2fac583b84baee785d680e4acf0a217b34
null
low
[ { "filename": "packages/next/src/server/lib/start-server.ts", "patch": "@@ -524,32 +524,57 @@ export async function startServer(\n server.listen(port, hostname)\n })\n \n+ // Watch config files for changes and distDir ancestors for deletion.\n if (isDev) {\n- function watchConfigFiles(\n- d...
huggingface/transformers
45,252
Fix unexpected TF32 being enabled in testing
# What does this PR do? #43166 used `torch.set_float32_matmul_precision("high")` which causes (likely) TF32 being used > “high”, float32 matrix multiplications either use the TensorFloat32 datatype (10 mantissa bits explicitly stored) or treat each float32 number as the sum of two bfloat16 numbers (approximately ...
null
374d44d54adb1c5f52e68aff97d1675f56d657a8
null
low
[ { "filename": "tests/models/youtu/test_modeling_youtu.py", "patch": "@@ -33,7 +33,7 @@\n if is_torch_available():\n import torch\n \n- torch.set_float32_matmul_precision(\"high\")\n+ torch.set_float32_matmul_precision(\"highest\")\n \n from transformers import (\n Cache,\n@@ -99,7 +99,...
facebook/react
36,160
[Fiber] Fix context propagation into Suspense fallbacks
## Summary When a context value changes above a Suspense boundary that is showing its fallback, context consumers inside the fallback do not re-render — they display stale values. `propagateContextChanges`, upon encountering a suspended Suspense boundary, marks the boundary for retry but stops traversing into its chi...
null
9627b5a1caa64c1488643bffdf04495106fa3247
null
low
[ { "filename": "packages/react-reconciler/src/ReactFiberNewContext.js", "patch": "@@ -323,12 +323,23 @@ function propagateContextChanges<T>(\n renderLanes,\n workInProgress,\n );\n- if (!forcePropagateEntireTree) {\n- // During lazy propagation, we can defer propagating chan...
nodejs/node
61,674
async_hooks: add using scopes to AsyncLocalStorage
Adds support for `using scope = storage.withScope(data)` to do the equivalent of a `storage.run(data, fn)` with using syntax. This enables avoiding unnecessary closures. cc @nodejs/diagnostics
null
5b6091ce31068e1c86f863273cdd397ecb47e3b7
null
low
[ { "filename": "doc/api/async_context.md", "patch": "@@ -386,6 +386,110 @@ try {\n }\n ```\n \n+### `asyncLocalStorage.withScope(store)`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> Stability: 1 - Experimental\n+\n+* `store` {any}\n+* Returns: {RunScope}\n+\n+Creates a disposable scope that enters the give...
electron/electron
50,725
ci: fetch clang-tidy package in fix-sync
Backport of #50704 See that PR for details. Notes: none
null
0f4ae991d41e9466f1795b99c75931623a52b863
null
low
[ { "filename": ".github/actions/fix-sync/action.yml", "patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python...
facebook/react
35,701
Fix typos in comments
<!-- 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 ...
c0d218f0f3e02ed581f74096e56baa947213135d
f944b4c5352be02623d2d7415c0806350f875114
6
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -4062,7 +4062,7 @@ export function registerSuspenseInstanceRetry(\n instance.data !== SUSPENSE_PENDING_START_DATA ||\n // The boundary is still in pending status but the document has finished loading\n //...
ollama/ollama
15,301
ggml: skip cublasGemmBatchedEx during graph reservation
cublasGemmBatchedEx fails during graph capture when pool allocations return fake pointers. This is triggered when NUM_PARALLEL is greater than 1 for models like gemma4 that use batched matmuls. Skip it during reservation since the memory tracking is already handled by the pool allocations. Fixes #15249
null
bb0c58e13416574813361d27ddf4699bf24d3090
null
low
[ { "filename": "llama/patches/0020-ggml-No-alloc-mode.patch", "patch": "@@ -11,9 +11,9 @@ must be recreated with no-alloc set to false before loading data.\n ggml/include/ggml-backend.h | 1 +\n ggml/src/ggml-backend-impl.h | 16 +++\n ggml/src/ggml-backend.cpp | 75 ++++++++++-\n- ggml/src/...
vercel/next.js
91,693
turbopack: move "compact database" tracing span to backend layer
### What? Move the `"compact database"` tracing span from `turbo-persistence` (`db.rs`) to the backend layer (`turbo-tasks-backend/src/backend/mod.rs`), make it a root span, group it with the sibling `"persist"` span under a shared `"background snapshot"` root, and emit one span per compaction session rather than one ...
8e9f9514c494ef90fd6d453f4c95884aba287d15
47230b12d4b18c599a5955d925028383d0bad5bf
7
medium
[ { "filename": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -574,7 +574,7 @@ impl<S: ParallelScheduler, const FAMILIES: usize> TurboPersistence<S, FAMILIES>\n \n new_meta_files.sort_unstable_by_key(|(seq, _)| *seq);\n \n- let sync_span = tracing::info_span!(\"sync new files\")....
facebook/react
35,621
Fix typos: explicitlyu->explicitly, intialized->initialized
Fixed spelling errors: - Fixed 'explicitlyu' -> 'explicitly' in compiler/CLAUDE.md - Fixed 'intialized' -> 'initialized' in InferReactiveScopeVariables.ts (comment) - Fixed 'intialized' -> 'initialized' in InferMutationAliasingEffects.ts (error message) <!-- Thanks for submitting a pull request! We apprecia...
ba833da405d44260e94bd47c13eec90816bf44f1
2233b7d7281fea5beec815cf5af9593d2b80f68d
1
medium
[ { "filename": "compiler/CLAUDE.md", "patch": "@@ -76,7 +76,7 @@ yarn snap minimize --update <path>\n \n ## Version Control\n \n-This repository uses Sapling (`sl`) for version control. Sapling is similar to Mercurial: there is not staging area, but new/deleted files must be explicitlyu added/removed.\n+This...
ollama/ollama
15,254
model/parsers: fix gemma4 arg parsing when quoted strings contain "
Fixes: #15241
96b202d34b82d1755887bf4204e1f2e053720d4f
036ed1b9b50558907789c66b407a6cd05d31cc20
3
medium
[ { "filename": "model/parsers/gemma4.go", "patch": "@@ -345,27 +345,85 @@ func parseGemma4ToolCall(content string) (api.ToolCall, error) {\n \n // gemma4ArgsToJSON converts Gemma 4's custom argument format to valid JSON.\n func gemma4ArgsToJSON(s string) string {\n-\ts = strings.ReplaceAll(s, `<|\"|>`, `\"`)...
vercel/next.js
91,713
turbo-persistence: remove Unmergeable mmap advice
### What? Remove the `MADV_UNMERGEABLE` (Unmergeable) mmap advice from `turbo-persistence`'s `advise_mmap_for_persistence` helper in `mmap_helper.rs`. ### Why? The WSL (Windows Subsystem for Linux) kernel does not support `MADV_UNMERGEABLE` and returns an error when it is applied, causing turbo-persistence to fail o...
8e9f9514c494ef90fd6d453f4c95884aba287d15
df886d4a2d36b63717f8aa5eae1147811ad025f8
6
medium
[ { "filename": "turbopack/crates/turbo-persistence/src/mmap_helper.rs", "patch": "@@ -2,15 +2,11 @@\n ///\n /// - `DontFork`: prevents mmap regions from being copied into child processes on `fork()`, avoiding\n /// unnecessary memory duplication and potential SIGBUS.\n-/// - `Unmergeable`: opts pages out o...
nodejs/node
62,460
src: add contextify interceptor debug logs
Add debug logs to help investigate vm interceptor call order issues like https://github.com/nodejs/node/pull/61898#issuecomment-4142811603 The format of the V8 values are conditional by the presence of `NODE_DEBUG_NATIVE`. So these values are not always converted to c++ values by utilizing `per_process::Debug` de...
b411f904135bee50ddd1658719ede70db991579f
e7759896bc2d4ad5f91d184bf62f30c7302ba910
19
medium
[ { "filename": "src/debug_utils-inl.h", "patch": "@@ -62,6 +62,25 @@ struct ToStringHelper {\n static std::string Convert(const std::string& value) { return value; }\n static std::string_view Convert(std::string_view value) { return value; }\n static std::string Convert(bool value) { return value ? \"t...
rust-lang/rust
151,899
Constify fold, reduce and last for iterator
These functions only require the addition of `[const]` in appropriate places, so it feels like almost a trivial change. Most of the others require either consitifying additional traits, const closures, or both.
null
e6ea1ae6a36e1edff6f72be35eee4902e53b5d6b
null
low
[ { "filename": "library/core/src/iter/traits/iterator.rs", "patch": "@@ -7,6 +7,7 @@ use super::super::{\n use super::TrustedLen;\n use crate::array;\n use crate::cmp::{self, Ordering};\n+use crate::marker::Destruct;\n use crate::num::NonZero;\n use crate::ops::{ChangeOutputType, ControlFlow, FromResidual, R...
ollama/ollama
15,232
tokenizer: add byte fallback for SentencePiece BPE encoding
When BPE merging produces tokens not in the vocabulary, fall back to encoding each UTF-8 byte as <0xHH> byte tokens instead of silently dropping the character. Also teach Decode to convert <0xHH> tokens back to raw bytes. Fixes #15229, fixes #15231
cb0033598ec36c9d10eceef8a0ba4e02329c5b35
de9673ac3fb1c57fbf6e5e194f1f3dc5a8b48668
5
medium
[ { "filename": "model/models/gemma4/tokenizer_reference_test.go", "patch": "@@ -0,0 +1,341 @@\n+package gemma4\n+\n+// TestGemma4TokenizerMatchesReference verifies our BPE tokenizer matches\n+// the Rust tokenizers library (the reference implementation) for Gemma 4.\n+//\n+// The test loads vocabulary from a...
huggingface/transformers
45,248
Fix tf32 issue: set `torch.backends.cudnn.conv.fp32_precision` explicitly.
# What does this PR do? PR #42428 change the way to enable / disable torch's TF32 using torch new API. It turns out set > torch.backends.fp32_precision = False would still have > torch.backends.cudnn.conv.fp32_precision = "tf32" > torch.backends.cudnn.rnn.fp32_precision = "tf32" It's not clear if it's ...
null
794d65f401dd70408bd0b336ee54c209ed38eefc
null
low
[ { "filename": "conftest.py", "patch": "@@ -149,6 +149,22 @@ def check_output(self, want, got, optionflags):\n # The flag below controls whether to allow TF32 on cuDNN. This flag defaults to True.\n # We set it to `False` for CI. See https://github.com/pytorch/pytorch/issues/157274#issuecomment-30907...
electron/electron
50,724
ci: fetch clang-tidy package in fix-sync
Backport of #50704 See that PR for details. Notes: none
null
3cb947d1b9721c5ba1c410f68cac12e356893979
null
low
[ { "filename": ".github/actions/fix-sync/action.yml", "patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python...
facebook/react
35,623
Fix typo: accomodate -> accommodate
Fixed spelling error in comment: - Fixed 'accomodate' -> 'accommodate' in InferMutationAliasingEffects.ts <!-- 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 bel...
null
ba833da405d44260e94bd47c13eec90816bf44f1
null
low
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -1315,7 +1315,7 @@ class InferenceState {\n #values: Map<InstructionValue, AbstractValue>;\n /*\n * The set of values pointed to by each identifier. This is a set\n- * to accomo...
ollama/ollama
15,204
app: use the same client for inference and other requests
Previously we were accidentally using different clients/UAs depending on whether it was an inference call or a different call. This change makes them consistent, other than the timeout being different.
e7ccc129ea45cd9383d91f0c233f324a95ad0572
79865e6c5a2f8aa7bc8135eacffdcbe2fea953d9
16
medium
[ { "filename": "app/ui/ui.go", "patch": "@@ -342,8 +342,18 @@ func (t *userAgentTransport) RoundTrip(req *http.Request) (*http.Response, error\n \n // httpClient returns an HTTP client that automatically adds the User-Agent header\n func (s *Server) httpClient() *http.Client {\n+\treturn userAgentHTTPClient(...
nodejs/node
62,541
http: add req.signal to IncomingMessage
Fixes: https://github.com/nodejs/node/issues/62481 ## Summary Adds a lazy `signal` getter to `IncomingMessage` that returns an `AbortSignal` which aborts when the request is closed or aborted. This mirrors the Web Fetch API's `Request.signal` and Deno's `request.signal`. ## Motivation Currently, cancelli...
null
bf1aebcc37d97ed7073cf1e4aaf313568128aa0b
null
low
[ { "filename": "doc/api/http.md", "patch": "@@ -2989,6 +2989,51 @@ added: v0.5.9\n \n Calls `message.socket.setTimeout(msecs, callback)`.\n \n+### `message.signal`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Type: {AbortSignal}\n+\n+An {AbortSignal} that is aborted when the underlying socket closes or the...
rust-lang/rust
154,850
ast_validation: scalable vectors okay for rustdoc
Scalable vector types in `core_arch` are cfg'd for aarch64 and for rustdoc, which can successfully document these types given any `--target` (`core_arch` CI uses `i686-unknown-linux-gnu`) - this shouldn't trigger the "scalable vectors not supported on arch" error. This fixes the CI failure in rust-lang/stdarch#2071.
null
ec78f91bd430fb8cde232c777f18c868868df58b
null
low
[ { "filename": "compiler/rustc_ast_passes/src/ast_validation.rs", "patch": "@@ -1379,7 +1379,9 @@ impl<'a> Visitor<'a> for AstValidator<'a> {\n this.dcx()\n .emit_err(errors::ScalableVectorNotTupleStruct { span: item.span });\n ...
nodejs/node
62,561
deps: libuv: cherry-pick aabb7651de
Refs: https://github.com/nodejs/node/pull/62497#issuecomment-4169631366 <!-- 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/contribut...
1637db0eb22e8decd0916d299cadd24350df3a7b
12249ccadc4964c9497a07be94c1764d4717da64
1
high
[ { "filename": "deps/uv/src/win/tcp.c", "patch": "@@ -56,6 +56,8 @@ static int minimal_windows10_version1709(void) {\n OSVERSIONINFOW os_info;\n if (!pRtlGetVersion)\n return 0;\n+ os_info.dwOSVersionInfoSize = sizeof(os_info);\n+ os_info.szCSDVersion[0] = L'\\0';\n pRtlGetVersion(&os_info);\n ...
vercel/next.js
91,727
Turbopack: fix webpack loader runner layer
Otherwise you get a `Dependency tracking is disabled` / infinite loop when trying to use both turbopack.rules.loader and turbopackLoader at the same time
null
cbf12d18457cbe62cbb8f57f4e485110b6630e42
null
low
[ { "filename": "test/development/app-dir/turbopack-import-assertions-use/app/page.tsx", "patch": "@@ -8,14 +8,18 @@ import replacedValue from '../data-with-placeholder.js' with { turbopackLoader:\n import rawTextViaModuleType from '../data2.txt' with { turbopackLoader: '../node_modules/test-raw-loader/index....
ollama/ollama
15,221
convert: support new Gemma4 audio_tower tensor naming
2b949a11d9a0c5eeedf0a61fcc2fb702ab3bc800
7fdd90f597744980c8531b2760cbbe0acd7ba38f
5
medium
[ { "filename": "convert/convert_gemma4.go", "patch": "@@ -450,21 +450,31 @@ func (p *gemma4Model) Replacements() []string {\n \t\t\"model.audio_tower.subsample_conv_projection.conv_0.norm\", \"a.conv1d.0.norm\",\n \t\t\"model.audio_tower.subsample_conv_projection.conv_1.conv\", \"a.conv1d.1\",\n \t\t\"model....
huggingface/transformers
45,243
Nvidia CI with `torch 2.11`
# What does this PR do? Use torch 2.11 for our (daily) CI since it's released for 2 weeks already. For CircleCI, we need to fix something regarding `torchvision.io.read_video`. For daily CI, torch 2.11 doesn't cause issues (for those `torchvision.io.read_video`).
38593c2e83964079576eb646fe9b68cce16114dc
499ef1d7b8fcaf946be6503e01c717f238838d0e
29
medium
[ { "filename": "docker/transformers-all-latest-gpu/Dockerfile", "patch": "@@ -9,12 +9,12 @@ SHELL [\"sh\", \"-lc\"]\n # The following `ARG` are mainly used to specify the versions explicitly & directly in this docker file, and not meant\n # to be used as arguments for docker build (so far).\n \n-ARG PYTORCH=...
electron/electron
50,723
ci: fetch clang-tidy package in fix-sync
Backport of #50704 See that PR for details. Notes: none
null
be77994af2419f4faf3c2bf0e141d3b4aa23f2cf
null
low
[ { "filename": ".github/actions/fix-sync/action.yml", "patch": "@@ -27,6 +27,7 @@ runs:\n python3 src/tools/clang/scripts/update.py\n # Refs https://chromium-review.googlesource.com/c/chromium/src/+/6667681\n python3 src/tools/clang/scripts/update.py --package objdump\n+ python...
electron/electron
50,679
fix: propagate requesting frame through sync permission checks
## Description of Change `WebContentsPermissionHelper::CheckPermission` hardcoded `GetPrimaryMainFrame()` and used `web_contents_->GetLastCommittedURL()`, so the two synchronous checks routed through it — Web Serial and camera/microphone — always delivered the main frame's origin to `setPermissionCheckHandler`, along ...
14583d22e6a996cc72d0d7e68dfaad057912782a
30cf60a9356f48cb1740896ba63c7b3c0604e44b
4
medium
[ { "filename": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1767,7 +1767,8 @@ bool WebContents::CheckMediaAccessPermission(\n content::WebContents::FromRenderFrameHost(render_frame_host);\n auto* permission_helper =\n WebContentsPermissionHelper::FromWebContents(web_contents)...
facebook/react
35,439
Fix typos in the documentation
<!-- 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
c0c29e89066df60c8340d4e853d38b5843c165ab
null
low
[ { "filename": "compiler/docs/DESIGN_GOALS.md", "patch": "@@ -8,7 +8,7 @@ The idea of React Compiler is to allow developers to use React's familiar declar\n \n * Bound the amount of re-rendering that happens on updates to ensure that apps have predictably fast performance by default.\n * Keep startup time ne...
rust-lang/rust
154,849
Promote `char::is_case_ignorable` from perma-unstable to unstable
<!-- 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
6bf2ce0f38edacd9ab9e5865ec892a2b2feb06e9
null
low
[ { "filename": "library/alloc/src/lib.rs", "patch": "@@ -93,6 +93,7 @@\n #![feature(async_iterator)]\n #![feature(bstr)]\n #![feature(bstr_internals)]\n+#![feature(case_ignorable)]\n #![feature(cast_maybe_uninit)]\n #![feature(cell_get_cloned)]\n #![feature(char_internals)]", "additions": 1, "deletio...
nodejs/node
62,553
crypto: implement randomUUIDv7()
Adds `crypto.randomUUIDv7()` which generates RFC 9562 version 7 UUIDs. UUIDv7 encodes a millisecond-precision Unix timestamp in the most significant 48 bits, making these UUIDs time-sortable and suitable for use as database primary keys. Layout (128 bits): - 48 bits: unix_ts_ms (UTC milliseconds) - 4 bits: ve...
null
dec597354bd5e6cee40d71bd64e15bdb8de62cf6
null
low
[ { "filename": "doc/api/crypto.md", "patch": "@@ -5826,6 +5826,25 @@ added:\n Generates a random [RFC 4122][] version 4 UUID. The UUID is generated using a\n cryptographic pseudorandom number generator.\n \n+### `crypto.randomUUIDv7([options])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* `options` {Object...
vercel/next.js
91,699
[turbopack] Remove incorrect debug_assert in try_read_task_cell
### What? Removes the `debug_assert_not_in_top_level_task` call from `try_read_task_cell` in `turbopack/crates/turbo-tasks/src/manager.rs`. ### Why? The assertion was wrong. `debug_assert_not_in_top_level_task` panics with the message: > "Eventually consistent read cannot be performed from a top-level task." The r...
null
25646b928f900c12504b8a30ce5939207533aa54
null
low
[ { "filename": "turbopack/crates/turbo-tasks-backend/tests/top_level_task_consistency.rs", "patch": "@@ -36,13 +36,13 @@ async fn test_eventual_read_in_top_level_task_fails() {\n }\n \n #[tokio::test(flavor = \"multi_thread\", worker_threads = 2)]\n-#[should_panic]\n-async fn test_cell_read_in_top_level_task...
ollama/ollama
15,041
launch: replace deprecated OPENAI_BASE_URL with config.toml profile for codex
- Replace deprecated `OPENAI_BASE_URL` env variable with a [profiles.ollama] section in `~/.codex/config.toml` that sets `openai_base_url` - Launch codex with `--profile ollama` to use the profile - Fixes: `⚠ OPENAI_BASE_URL is deprecated. Set openai_base_url in config.toml instead` - Replaces `--oss` with an explic...
null
a8292dd85f234ef52f8b477dbbefbf9517f58ef5
null
low
[ { "filename": "cmd/launch/codex.go", "patch": "@@ -4,6 +4,7 @@ import (\n \t\"fmt\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"path/filepath\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/envconfig\"\n@@ -15,8 +16,10 @@ type Codex struct{}\n \n func (c *Codex) String() string { return \"Codex\" }\n \n+const code...
huggingface/transformers
45,241
Update tiny model creation script
# What does this PR do? After the series of fixes in other previous PRs, we can now update the tiny model creation script. This update makes the script running without any failure, just 10 warnings. There are many # TODO, some of them may just be quick remarks only. I decide to push and merge without removing the...
null
eb981ae8688d459f40f35b0e0c352b5ca3cb3613
null
low
[ { "filename": ".github/workflows/check_tiny_models.yml", "patch": "@@ -10,6 +10,7 @@ on:\n \r\n env:\r\n TOKEN: ${{ secrets.TRANSFORMERS_HUB_BOT_HF_TOKEN }}\r\n+ HF_TOKEN: ${{ secrets.HF_HUB_READ_TOKEN }}\r\n \r\n jobs:\r\n check_tiny_models:\r\n@@ -22,61 +23,35 @@ jobs:\n fetch-depth: 2\r\n ...
facebook/react
36,134
Fix useDeferredValue getting stuck
Fixes https://github.com/facebook/react/issues/35821 Written/debugged by Claude. ## Test Plan - Verify undoing the source fix fails the newly added test - Verify building a bundle with the fix solves https://github.com/gaearon/react-udv-bug/ repro
b4546cd0d4db2b913d8e7503bee86e1844073b2e
c0d218f0f3e02ed581f74096e56baa947213135d
5
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberWorkLoop.js", "patch": "@@ -5040,6 +5040,13 @@ function pingSuspendedRoot(\n // the special internal exception that we use to interrupt the stack for\n // selective hydration. That was temporarily reverted but we once we add\n //...
vercel/next.js
91,697
Add module count field to module graph tracing spans
### What? Adds a `modules` field to two tracing spans that cover module graph construction: - `"module graph for endpoint"` span (per-page graph, in `app.rs`) — records the total number of modules across all `SingleModuleGraph`s built for that endpoint. - `"whole app module graph"` span (new info-level span wrap...
6a8a31a7f42bb7d133aed5a6d854d069883aa57b
7d451fe01e7a42be4aa9dc12e13e2017c1f0483d
10
medium
[ { "filename": "crates/next-api/src/app.rs", "patch": "@@ -35,7 +35,7 @@ use next_core::{\n segment_config::{NextSegmentConfig, ParseSegmentMode},\n util::{NextRuntime, app_function_name, module_styles_rule_condition, styles_rule_condition},\n };\n-use tracing::Instrument;\n+use tracing::{Instrument,...
ollama/ollama
15,185
mlx: respect tokenizer add_bos_token setting in pipeline
Replace hardcoded Encode(prompt, true) with Encode(prompt, r.Tokenizer.AddBOS()) so the pipeline respects each model's tokenizer configuration. Models with add_bos_token=true (gemma3, llama): unchanged, tokenizer still prepends BOS. Models with bos_token=null (qwen3, qwen3.5): unchanged, the BOS guard (vocab.BOS...
4f5999fd3f82381b81d67f0471299bdc319fa30a
4d14b0ff92cc2116f91f33b2f85d78f7ef263f29
24
medium
[ { "filename": "x/mlxrunner/pipeline.go", "patch": "@@ -55,7 +55,7 @@ func (r *Runner) TextGenerationPipeline(request Request) error {\n \t\tslog.Info(\"peak memory\", \"size\", mlx.PrettyBytes(mlx.PeakMemory()))\n \t}()\n \n-\tinputs := r.Tokenizer.Encode(request.Prompt, true)\n+\tinputs := r.Tokenizer.Enco...
rust-lang/rust
154,717
Fix ICE in unsafe binder discriminant helpers
Forward discriminant-related helpers through `ty::UnsafeBinder` to the erased inner type, matching the existing layout behavior. Tracking issue: rust-lang/rust#130516 Closes rust-lang/rust#154424 <!-- homu-ignore:start --> <!-- If this PR is related to an unstable feature or an otherwise tracked effort, plea...
null
a89a5aa89b594ca2019ba81bc46bcf4fa7875fef
null
low
[ { "filename": "compiler/rustc_middle/src/ty/sty.rs", "patch": "@@ -1640,6 +1640,9 @@ impl<'tcx> Ty<'tcx> {\n TyKind::Coroutine(def_id, args) => {\n Some(args.as_coroutine().variant_range(*def_id, tcx))\n }\n+ TyKind::UnsafeBinder(bound_ty) => {\n+ ...
electron/electron
50,688
fix: defer Wrappable destruction in SecondWeakCallback to a posted task
## Description of Change V8's second-pass weak callbacks run inside a `DisallowJavascriptExecutionScope` — they may touch the V8 API but **must not invoke JavaScript**, directly or indirectly. Several Electron `gin_helper::Wrappable` subclasses (`WebContents` in particular) emit JS events from their destructors (`'wil...
null
3f8238b92c5f831025cf25718d4f5bb5faa4848d
null
low
[ { "filename": "shell/common/gin_helper/wrappable.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/gin_helper/wrappable.h\"\n \n+#include \"base/task/sequenced_task_runner.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/public/isolate_holder.h\"\n #include \"shell/common/gin_help...
ollama/ollama
15,113
launch: improve multi-select for already added models
We should only gate on the latest model being selected for now until the multi-select ux refactor
6214103e666e02d8fd5d4d13e757f9ffae38f5c3
7c8da5679eecac6bcb4f1bd216970552cb51a3cb
1
medium
[ { "filename": "cmd/launch/launch.go", "patch": "@@ -494,8 +494,10 @@ func (c *launcherClient) launchEditorIntegration(ctx context.Context, name strin\n \t\t\treturn err\n \t\t}\n \t\tmodels = selected\n-\t} else if err := c.ensureModelsReady(ctx, models); err != nil {\n-\t\treturn err\n+\t} else if len(mode...
huggingface/transformers
45,238
Update `get_test_info.py` (related to tiny model creation)
# What does this PR do? We have introduced `CausalLMModelTest` for some time, but haven't update `get_test_info.py` accordingly, which causes some issues, in particularly for tiny model creation, regarding the part of the attribute `all_model_classes`. See code change for more details, which is itself clear.
null
4b8fdf4f0d8e2226c8892d9ab57b9012eccbbbbc
null
low
[ { "filename": "utils/get_test_info.py", "patch": "@@ -15,6 +15,7 @@\n import importlib\n import os\n import sys\n+import unittest\n \n \n # This is required to make the module import works (when the python process is running from the root of the repo)\n@@ -87,11 +88,19 @@ def get_test_classes(test_file):\n ...
nodejs/node
62,566
doc: document TransformStream transformer.cancel option
Add documentation for the `cancel` option of the `TransformStream` transformer, which allows users to specify a callback that will be called when the stream is canceled. See: https://streams.spec.whatwg.org/#transformer-api Fixes: https://github.com/nodejs/node/issues/62540 <!-- Before submitting a pull reque...
null
a3108ff65c6f3e658e3dcfc50412b71f10789f7d
null
low
[ { "filename": "doc/api/webstreams.md", "patch": "@@ -1148,6 +1148,12 @@ await Promise.all([\n \n <!-- YAML\n added: v16.5.0\n+changes:\n+ - version:\n+ - v21.5.0\n+ - v20.14.0\n+ pr-url: https://github.com/nodejs/node/pull/50126\n+ description: Supports the `cancel` transformer callback.\n -->\...
vercel/next.js
91,695
Update Rspack development test manifest
This auto-generated PR updates the development integration test manifest used when testing Rspack.
null
450ed6f8fc9f9a98dbadb530f639187bfe09c002
null
low
[ { "filename": "test/rspack-dev-tests-manifest.json", "patch": "@@ -235,6 +235,10 @@\n \"Error overlay - RSC build errors should error when createFactory from react is used in server component\",\n \"Error overlay - RSC build errors should error when flushSync from react-dom is used in server com...
facebook/react
36,106
Turn on enableViewTransition for RN FB build
Its now enabled everywhere other than keeping it dynamic in www
1e3152365df2f7a23a5ad947e83f40914413be16
d594643e5e5b662f064c584018ab3773754c792d
7
medium
[ { "filename": "packages/shared/forks/ReactFeatureFlags.native-fb.js", "patch": "@@ -68,7 +68,7 @@ export const syncLaneExpirationMs = 250;\n export const transitionLaneExpirationMs = 5000;\n export const enableYieldingBeforePassive: boolean = false;\n export const enableThrottledScheduling: boolean = false;...
huggingface/transformers
45,224
remove unnecessary entries in some auto model mappings
# What does this PR do? Fix for tiny model
91b1ab1fdfa81a552644a92fbe3e8d88de40e167
09a3e0875cdd88674615ae1edd2d5f46a2bb65a8
11
medium
[ { "filename": "src/transformers/models/auto/modeling_auto.py", "patch": "@@ -1009,7 +1009,6 @@ class _BaseModelWithGenerate(PreTrainedModel, GenerationMixin):\n (\"perception_lm\", \"PerceptionLMForConditionalGeneration\"),\n (\"pi0\", \"PI0ForConditionalGeneration\"),\n (\"pix2struc...
rust-lang/rust
154,657
Fix pattern assignment suggestions for uninitialized bindings
Fixes rust-lang/rust#145564
null
0a46f824dd076e7ddd524f4c2204639c74badfc3
null
low
[ { "filename": "compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs", "patch": "@@ -914,32 +914,36 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n if show_assign_sugg {\n struct LetVisitor {\n decl_span: Span,\n- sugg_span: Option<Span>,\n...
electron/electron
40,098
fix: store portal restore token under the right source ID
#### Description of Change XDG Desktop Portal provides restore tokens to restore a previously selected PipeWire stream instead of prompting the user again. This restore token is single use only and it has to be replaced when the stream is completed/stopped. BaseCapturerPipewire maintains two source IDs: one is in...
null
3c31246343b3b4e9457d4672eebe46d64c673d0a
null
low
[ { "filename": "patches/webrtc/.patches", "patch": "@@ -1,3 +1,4 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch\n fix_check_pipewire_init_before_creating_generic_capturer.patch\n+pipewire_capturer_make_restore_tokens_re-usable_more_than...
ollama/ollama
15,127
cmd: set OpenCode default model in config
null
31f968fe1f0f774fe20ee0c64f749e90d54147fd
null
low
[ { "filename": "cmd/launch/opencode.go", "patch": "@@ -147,6 +147,7 @@ func (o *OpenCode) Edit(modelList []string) error {\n \tollama[\"models\"] = models\n \tprovider[\"ollama\"] = ollama\n \tconfig[\"provider\"] = provider\n+\tconfig[\"model\"] = \"ollama/\" + modelList[0]\n \n \tconfigData, err := json.Ma...
nodejs/node
62,534
http: pipeline leak
When a socket with pipelined requests is destroyed then some requests will leak. <!-- 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/...
null
4b3d82c71d2aa75f9c881cb765dded3e0eb7c3f4
null
low
[ { "filename": "lib/_http_outgoing.js", "patch": "@@ -328,14 +328,19 @@ OutgoingMessage.prototype.destroy = function destroy(error) {\n if (this[kSocket]) {\n this[kSocket].destroy(error);\n } else {\n- this.once('socket', function socketDestroyOnConnect(socket) {\n- socket.destroy(error);\n-...
vercel/next.js
91,733
[test] Unflake `use-node-streams-env-precedence` test
CI is slow sometimes ([x-ref](https://github.com/vercel/next.js/actions/runs/23353631446/job/67939293839)), so we're removing the low custom test timeout to allow more time to build the test fixture. We're also moving the test from `test/e2e` to `test/production` since it's only testing the build output, and doesn't...
null
432b3f96bbbb75358584fea9b2d3dc0271751efc
null
low
[ { "filename": "test/production/app-dir/use-node-streams-env-precedence/use-node-streams-env-precedence.test.ts", "patch": "@@ -1,23 +1,17 @@\n import { nextTestSetup } from 'e2e-utils'\n \n describe('use-node-streams env precedence', () => {\n- const { next, isNextDev, skipped } = nextTestSetup({\n+ const...
huggingface/transformers
45,225
fix: hf-doc-builder insallation was failing
# What does this PR do? The `dev` extra now indirectly pulls hf-doc-builder so the install step failed. We also need to update to current main for the latest features
null
df557a2facdb956235054170b23c5c4f2c2956cf
null
low
[ { "filename": "docker/transformers-doc-builder/Dockerfile", "patch": "@@ -4,7 +4,11 @@ LABEL maintainer=\"Hugging Face\"\n RUN apt update\n RUN git clone https://github.com/huggingface/transformers\n \n-RUN python3 -m pip install --no-cache-dir --upgrade pip && python3 -m pip install --no-cache-dir git+http...
facebook/react
35,999
[enableInfiniteRenderLoopDetection] Warn about potential infinite loop, instead of interrupting
The `enableInfiniteRenderLoopDetection` feature flag is currently disabled everywhere. When attempted to roll out this at Meta, we've observed multiple false-positives, where counter-based approach would interrupt the render that would've resolved at some later iteration. This change gates the scenarios that are onl...
null
b4546cd0d4db2b913d8e7503bee86e1844073b2e
null
low
[ { "filename": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -1792,8 +1792,8 @@ describe('ReactUpdates', () => {\n expect(subscribers.length).toBe(limit);\n });\n \n- it(\"does not infinite loop if there's a synchronous render phase update on another component\", async () => {\...
rust-lang/rust
154,561
Suggest similar keyword when visibility is not followed by an item
Fixes rust-lang/rust#153353. I would appreciate feedback on the following: - I inlined [`find_similar_kw`](https://github.com/rust-lang/rust/blob/cd14b73b4a41542d921f59e362a5b5005fa4f2ef/compiler/rustc_parse/src/parser/diagnostics.rs#L218-L224) instead of changing its visibility to `pub(super)`. I am happy to switc...
null
77a5cb0194bbe911d8862dbece4ee6bb397a869d
null
low
[ { "filename": "compiler/rustc_parse/src/parser/item.rs", "patch": "@@ -192,7 +192,22 @@ impl<'a> Parser<'a> {\n \n // At this point, we have failed to parse an item.\n if !matches!(vis.kind, VisibilityKind::Inherited) {\n- this.dcx().emit_err(errors::VisibilityNotFollo...
huggingface/transformers
45,188
fix `test_register_result_handler`
# What does this PR do ? This PR fixes the `test_register_result_handler`. Not sure how it passed in the past when i added it but since CB returns `generated_tokens` from the same list to avoid copy, len(results[i].generated_tokens) for i =0,1,2 will always be the same after the got all the results. I reworked a bi...
138f75768b7fd3487fa7329c8a5e319bfa6e74c3
66b6e9fa6a239f6b294ea75450c360eae3106bad
1
high
[ { "filename": "tests/generation/test_continuous_batching.py", "patch": "@@ -849,27 +849,24 @@ def test_register_result_handler(self) -> None:\n inputs = get_generation_inputs(user_messages, tokenizer, for_continuous_batching=True)[0]\n \n async def collect_results():\n- results = ...
ollama/ollama
15,133
model: add qwen3-next compatibility for legacy ssm_in projections
Fixes #14587
null
b7bda92d520ad99d394f38a82bd81cf52a4111e9
null
low
[ { "filename": "model/models/qwen3next/deltanet.go", "patch": "@@ -34,9 +34,9 @@ type Masks struct {\n // GatedDeltaNet implements linear attention with SSM convolution and recurrent state.\n // It implements the Operator interface directly.\n type GatedDeltaNet struct {\n-\t// Optimized path: pre-split QKV ...
huggingface/transformers
45,210
Fix pypi release
# What does this PR do? Commits that got in the release branch to allow pushing
c38b2fb78eaedd4261a0e446f7976345cd1c7f1b
e958b5647768949c4880d5b2570a6e73396b47ac
1
medium
[ { "filename": ".github/workflows/release.yml", "patch": "@@ -30,6 +30,9 @@ jobs:\n - run: pip install -e .[torch]\n - run: python -c \"from transformers import pipeline; classifier = pipeline('text-classification'); assert classifier('What a nice release')[0]['score'] > 0\"\n \n+ - run: pip...
electron/electron
50,694
fix: defer Wrappable destruction in SecondWeakCallback to a posted task
Backport of #50688 See that PR for details. Notes: Fixed an intermittent `Invoke in DisallowJavascriptExecutionScope` crash on application quit when a `WebContents` (or other JS-emitting native object) is garbage-collected during shutdown.
null
e1bb3e71657fb5b5a3ec3549330ff6522bcea0e8
null
low
[ { "filename": "shell/common/gin_helper/wrappable.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/gin_helper/wrappable.h\"\n \n+#include \"base/task/sequenced_task_runner.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/public/isolate_holder.h\"\n #include \"shell/common/gin_help...
nodejs/node
61,322
[v25.x] deps: V8: backport 209d2db9e24a
This PR fixes JIT compilation error and disassembling error when enabling the RISC-V C extension in V8. This is only need in v25.x, the v8 version on the main branch already contains the fix. Original commit message: [riscv] Fix compilation error and disassembling error when enabling the RISC-V C extension...
null
e326df79c9811f072a15268d5b4dfb5d357ffabd
null
low
[ { "filename": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.15',\n+ 'v8_embedder_string': '-node.16',\n \n ##### V8 defaults for Node.js ###...
vercel/next.js
91,694
Update Rspack production test manifest
This auto-generated PR updates the production integration test manifest used when testing Rspack.
46377eacf55a99c6c3a6b8c68c326ac71788d30c
1ee9d70ec8473ea8a0fef4cd2779fc74df067ec2
29
medium
[ { "filename": "test/rspack-build-tests-manifest.json", "patch": "@@ -604,10 +604,11 @@\n },\n \"test/e2e/app-dir/app-client-cache/client-cache.parallel-routes.test.ts\": {\n \"passed\": [\n- \"app dir client cache with parallel routes prefetch={true} should prefetch the full page\",\n+ \"a...
facebook/react
35,636
Update CSS shorthand property list
## Summary This list was created in #14181 on Nov 10, 2018. CSS has changed a lot since then. This pull request updates the list, obtained via following code (a browser environment is required to load the test file): ```html <textarea></textarea> <script> function ok() {} </script> <script src="https://...
null
3f0b9e61c467cd6e09cac6fb69f6e8f68cd3c5d7
null
low
[ { "filename": "packages/react-dom-bindings/src/client/CSSShorthandProperty.js", "patch": "@@ -5,8 +5,8 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-// List derived from Gecko source code:\n-// https://github.com/mozilla/gecko-dev/blob/4e638efc71/layout/style/test/property_datab...
huggingface/transformers
45,164
Fix TypeError: 'NoneType' object is not iterable in GenerationMixin.generate
# What does this PR do? Fix TypeError: 'NoneType' object is not iterable in `GenerationMixin.generate` - Fix for None layer_types <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure ...
2dba8e0495974930af02274d75bd182d22cc1686
b10552e99dc4974b30126995baea455df43f8476
17
medium
[ { "filename": "src/transformers/generation/utils.py", "patch": "@@ -1852,7 +1852,7 @@ def _prepare_cache_for_generation(\n # linear attention models always need to pass the config, otherwise it will use an Attention cache for the LinearAttention layers\n is_linear_attention = any(\n ...
facebook/react
36,055
[Flight Reply] Early bailout if backing entry for Blob deserialization is not a Blob
Additional security hardening to bail out early for malformed Server Action payloads. The `$B` (Blob) case in `parseModelString` returned whatever `FormData.get()` returned without validating its type. Since `FormData.get()` returns either a string or a File/Blob, an attacker could store a large string in a FormData...
5e9eedb57843dc161defdf93ed457ab7d982e324
12ba7d81297abac61012a36f20d4a9d22b9210d9
3
medium
[ { "filename": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMReply-test.js", "patch": "@@ -744,4 +744,17 @@ describe('ReactFlightDOMReply', () => {\n // has closed but that's a bug in both ReactFlightReplyServer and ReactFlightClient.\n // It just halts in this case.\n });\n+\n+ i...
huggingface/transformers
44,095
Fix loading logic issue
# What does this PR do? As per the title. The check that was added in https://github.com/huggingface/transformers/pull/43768 is wrong, as a missing weight would NOT be reinitialized in some cases! As for the pointers check, it is actually not needed at all since when modules (modules, not parameters) are shared (...
35c5d2a0c674039af407a3cfa14fdae2e2f59f91
a64996e33be9d2a32b199a5e944403ecbca9fb18
5
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -2322,17 +2322,24 @@ def _init_weights(self, module):\n init.copy_(module.inv_freq, buffer_value)\n init.copy_(module.original_inv_freq, buffer_value)\n \n- def _initialize_weights(self, module):\n+ def _initializ...
nodejs/node
62,354
deps: V8: cherry-pick b25cd62c7ba2
Backport V8 upstream commit b25cd62c7ba2 using `git node v8 backport`. refs: https://github.com/nodejs/node/pull/61601 https://github.com/nodejs/node/pull/62349 original commit: https://github.com/v8/v8/commit/b25cd62c7ba2 @anonrig fyi @aduh95 @Renegade334
0d7e4b1d4b0220b68bc2c5c2b973deff1664824b
8ea96e653212c87d32665a263aa29744e41e64a2
19
medium
[ { "filename": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.16',\n+ 'v8_embedder_string': '-node.17',\n \n ##### V8 defaults for Node.js ###...
rust-lang/rust
154,841
add regression test for Redundant memory strores with mut parameters …
<!-- 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 ca...
null
b96adb36f91c0f341e3bf31dccee734caeed63c1
null
low
[ { "filename": "tests/assembly-llvm/riscv-redundant-memory-stores.rs", "patch": "@@ -0,0 +1,33 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/149762>:\n+\n+//@ assembly-output: emit-asm\n+//@ compile-flags: -Copt-level=3 --target riscv64gc-unknown-linux-gnu\n+//@ needs-llvm-components...
electron/electron
50,695
fix: defer Wrappable destruction in SecondWeakCallback to a posted task
Backport of #50688 See that PR for details. Notes: Fixed an intermittent `Invoke in DisallowJavascriptExecutionScope` crash on application quit when a `WebContents` (or other JS-emitting native object) is garbage-collected during shutdown.
null
2067d3a414011200af07e4820fb9062befebfc9c
null
low
[ { "filename": "shell/common/gin_helper/wrappable.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/gin_helper/wrappable.h\"\n \n+#include \"base/task/sequenced_task_runner.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/public/isolate_holder.h\"\n #include \"shell/common/gin_help...
ollama/ollama
15,104
server: preserve raw manifest bytes during pull
pullModelManifest unmarshals the registry response into a Go struct then re-marshals with json.Marshal before writing to disk. When the registry's JSON formatting or field ordering differs from Go's output, the local SHA256 won't match the registry's Ollama-Content-Digest header, causing false "out of date" warnings. ...
null
3824e380a82d3368855cc1c5b9d128cc2849c4f6
null
low
[ { "filename": "server/images.go", "patch": "@@ -578,7 +578,7 @@ func PullModel(ctx context.Context, name string, regOpts *registryOptions, fn fu\n \n \tfn(api.ProgressResponse{Status: \"pulling manifest\"})\n \n-\tmf, err := pullModelManifest(ctx, n, regOpts)\n+\tmf, manifestData, err := pullModelManifest(c...
ollama/ollama
15,105
anthropic: fix empty inputs in content blocks
When we switched to `api.ToolCallFunctionArguments`, `omitempty` stopped doing what we were relying on it for before. This would cause non-tool content blocks to have an `"input": {}` field, which doesn't match our old behavior.
ac83ac20c444656f0f7d5bbad5b62da389395439
c9b2dcfc52e6fe172ea1169f94f1f6839a822c09
2
medium
[ { "filename": "anthropic/anthropic.go", "patch": "@@ -123,7 +123,7 @@ type ContentBlock struct {\n \t// For tool_use and server_tool_use blocks\n \tID string `json:\"id,omitempty\"`\n \tName string `json:\"name,omitempty\"`\n-\tInput api.ToolCallFunctionArgu...
vercel/next.js
92,317
Improve existing dev server error message to suggest using it
<!-- CURSOR_AGENT_PR_BODY_BEGIN --> ### What? Improves the error message shown when a user tries to start `next dev` while another dev server is already running in the same directory. ### Why? Previously, the error message only suggested killing the existing process (`Run kill <pid> to stop it.`). This wasn't the be...
null
cb0d88f6e3e340216d478e0ba0c201ec23f7c15c
null
low
[ { "filename": "packages/next/src/build/lockfile.ts", "patch": "@@ -202,12 +202,17 @@ export class Lockfile {\n )\n }\n console.error()\n+ console.error(\n+ `You can access the existing server at ${cyan(serverInfo.appUrl)},`\n+ )\n // Use...
ollama/ollama
15,102
launch: skip context length warning for MLX models and show model name
We currently just check server context length to do warnings. With the MLX change we should skip that since max context length gets allocated automatically.
366625a831a25a0d17894f111f764400b0e0a274
b00bd1dfd4e9c8cf012eb8a1d2e406565f00d13e
6
medium
[ { "filename": "cmd/launch/launch_test.go", "patch": "@@ -1506,6 +1506,7 @@ func TestConfirmLowContextLength(t *testing.T) {\n \t\tstatusBody string\n \t\tstatusCode int\n \t\tshowParams string // Parameters field returned by /api/show\n+\t\tshowBody string // full JSON body for /api/show (over...
nodejs/node
61,785
doc: remove obsolete Boxstarter automated install
Fixes: https://github.com/nodejs/node/issues/61690 ## Current situation The [BUILDING > Option 3: Automated install with Boxstarter](https://github.com/nodejs/node/blob/main/BUILDING.md#option-3-automated-install-with-boxstarter) document section includes instructions with an associated script to automatically in...
fbb9b4254135f8e67d34d74a0ac980733f33a0e9
05b8953cee0ca3d596717719f92e9142af5de10d
14
medium
[ { "filename": ".github/workflows/build-tarball.yml", "patch": "@@ -18,7 +18,6 @@ on:\n - tsconfig.json\n - test/internet/**\n - tools/actions/**\n- - tools/bootstrap/**\n - tools/dep_updaters/**\n - tools/doc/**\n - tools/eslint-rules/**\n@@ -48,7 +47,6 @@ on:\n ...
facebook/react
36,010
Fix focus set for delegated and already focused elements
I found two focus bugs when working on documentation for Fragment Refs. 1) If an element delegates focus handling, it will return false from setFocusIfFocusable even though a focus event has occured on a different element. The fix for this is a document level event listener rather than only listening on the current ...
9c0323e2cf9be543d6eaa44419598af56922603f
c80a07509582daadf275f36ffe7a88c3b12e9db4
17
medium
[ { "filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -4520,18 +4520,30 @@ export function setFocusIfFocusable(\n //\n // We could compare the node to document.activeElement after focus,\n // but this would not handle the case where application code managed focus ...
rust-lang/rust
153,615
fixed generics of crate node ICE
when `note_and_explain_type_err` is called during dyn-compatibility checking, the `body_owner_def_id` can be `CRATE_DEF_ID` because `ObligationCause::dummy()` uses it as a placeholder when there is no real body owner. calling `generics_of `on `CRATE_DEF_ID `caused an ICE because the crate root is a module and modules d...
null
2aa5ef1c5f61dedd59feda36b2ef5da305b1e6fc
null
low
[ { "filename": "compiler/rustc_trait_selection/src/error_reporting/infer/mod.rs", "patch": "@@ -55,7 +55,7 @@ use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};\n use rustc_errors::{Applicability, Diag, DiagStyledString, IntoDiagArg, StringPart, pluralize};\n use rustc_hir as hir;\n use rustc_hir::def:...
electron/electron
50,693
fix: defer Wrappable destruction in SecondWeakCallback to a posted task
Backport of #50688 See that PR for details. Notes: Fixed an intermittent `Invoke in DisallowJavascriptExecutionScope` crash on application quit when a `WebContents` (or other JS-emitting native object) is garbage-collected during shutdown.
null
c9c5f27841001bbfef42b6e85b6bfe2cd5e09d73
null
low
[ { "filename": "shell/common/gin_helper/wrappable.cc", "patch": "@@ -4,6 +4,7 @@\n \n #include \"shell/common/gin_helper/wrappable.h\"\n \n+#include \"base/task/sequenced_task_runner.h\"\n #include \"gin/object_template_builder.h\"\n #include \"gin/public/isolate_holder.h\"\n #include \"shell/common/gin_help...
huggingface/transformers
44,277
Use doc-builder runnable example for GLM-ASR
# What does this PR do? This patch makes the GLM-ASR doc example runnable by using `runnables` - see https://github.com/huggingface/doc-builder/blob/main/docs/runnable-code-blocks.md
null
a118714602774818c3a003b18d83ab48548e51d7
null
low
[ { "filename": "CONTRIBUTING.md", "patch": "@@ -394,7 +394,7 @@ You'll need **[Python 3.9](https://github.com/huggingface/transformers/blob/main\n make sure you install the [documentation builder](https://github.com/huggingface/doc-builder).\n \n ```bash\n- pip install hf-doc-builder\n+ pip install...
vercel/next.js
92,316
fix: add @deprecated annotation to experimental.useCache
### What? Add a `@deprecated` JSDoc annotation to `experimental.useCache` in `config-shared.ts`, pointing to `cacheComponents: true` as the successor. ### Why? `experimental.cacheComponents` already has `@deprecated use top-level cacheComponents instead`, but `experimental.useCache` has no deprecation notice despite...
3e0158846e490509c6a26a4536d33777d9778101
739299d3efab3f6baace5e0af6b8897358893d1e
24
medium
[ { "filename": "packages/next/src/server/config-shared.ts", "patch": "@@ -940,6 +940,7 @@ export interface ExperimentalConfig {\n \n /**\n * Enables the use of the `\"use cache\"` directive.\n+ * @deprecated use top-level `cacheComponents` instead\n */\n useCache?: boolean\n ", "additions": 1...
ollama/ollama
15,100
anthropic: fix KV cache reuse degraded by tool call argument reordering
Use typed structs for tool call arguments instead of map[string]any to preserve JSON key order, which Go maps do not guarantee.
null
ac83ac20c444656f0f7d5bbad5b62da389395439
null
low
[ { "filename": "anthropic/anthropic.go", "patch": "@@ -68,7 +68,7 @@ type MessagesRequest struct {\n \tModel string `json:\"model\"`\n \tMaxTokens int `json:\"max_tokens\"`\n \tMessages []MessageParam `json:\"messages\"`\n-\tSystem any `json:\"system,...
facebook/react
36,011
[DevTools] fix: don't show empty suspended by section
The potential paddings and margins for the empty block are already handled via CSS selectors.
null
8f4150605449efe909822d8b20fe529d85851afe
null
low
[ { "filename": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSuspendedBy.js", "patch": "@@ -584,6 +584,9 @@ export default function InspectedElementSuspendedBy({\n break;\n }\n \n+ if (groups.length === 0) {\n+ return null;\n+ }\n return (\n <div>\n <d...
huggingface/transformers
45,079
Fix resized LM head weights being overwritten by post_init
## What does this PR do? Fixes #35141 When `tie_word_embeddings=False`, calling `resize_token_embeddings()` then `post_init()` overwrites the LM head weights with random values. This happens because `_get_resized_lm_head()` returns a new `nn.Linear` without setting `_is_hf_initialized`, so `post_init` treats it as un...
bc576731d46cdf0936daf0833dc1a1bdd1b4898a
4932e9721e230bea915341e7f04db32885b6c6af
17
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -2984,6 +2984,7 @@ def _get_resized_lm_head(\n new_lm_head, old_lm_head, num_tokens_to_copy, transposed, has_new_lm_head_bias\n )\n \n+ new_lm_head._is_hf_initialized = True\n return new_lm_head\n \n ...
electron/electron
50,676
fix: dangling raw_ptr MicrotasksRunner::isolate_
#### Description of Change Fix a dangling `raw_ptr<v8::Isolate*> MicrotasksRunner::isolate_;` observed by running specs on a local build with dangling raw_ptr checks enabled. The root cause was that `JavascriptEnvironment::DestroyMicrotasksRunner() ` didn't actually destroy the microtasks runner, which continued ...
null
64c5440eec3d09eeeb69501fa7a989117c2263d3
null
low
[ { "filename": "shell/browser/javascript_environment.cc", "patch": "@@ -86,6 +86,7 @@ JavascriptEnvironment::~JavascriptEnvironment() {\n // Otherwise cppgc::internal::Sweeper::Start will try to request a task runner\n // from the NodePlatform with an already unregistered isolate.\n locker_.reset();\n+...
nodejs/node
62,292
tools: do not swallow error in `lint-nix` workflow
The workflow is written in a way that if `nix-shell` fails without changing any local file, the error is swallowed. E.g. in https://github.com/nodejs/node/actions/runs/23114271551/job/67137410705, the linter fails with `error: Build failed due to failed dependency` but the workflow exits as green. <!-- Before submi...
null
4ee467f91254fdd5d9a1c328edd2e3fc5b541943
null
low
[ { "filename": ".github/workflows/linters.yml", "patch": "@@ -154,7 +154,12 @@ jobs:\n run: |\n nix-shell -I nixpkgs=./tools/nix/pkgs.nix -p 'nixfmt-tree' --run '\n treefmt --quiet --ci\n- ' || git --no-pager diff --exit-code\n+ ' && EXIT_CODE=\"$?\" || EXIT_CO...
rust-lang/rust
152,853
deny-by-default & report in deps `uninhabited_static`
<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/152853)* <!-- homu-ignore:end --> <!-- 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...
null
892d08c1f9867556e89b0709108f58c25e3de6e0
null
low
[ { "filename": "compiler/rustc_lint_defs/src/builtin.rs", "patch": "@@ -2718,12 +2718,13 @@ declare_lint! {\n ///\n /// ### Example\n ///\n- /// ```rust\n+ #[cfg_attr(bootstrap, doc = \"```rust\")]\n+ #[cfg_attr(not(bootstrap), doc = \"```rust,compile_fail\")]\n /// enum Void {}\n ...
vercel/next.js
92,324
ci: remove deploy examples workflow from build-and-deploy
We don't need to deploy a single image component example every time `build_and_deploy` runs. If something about this example changes, it can be manually re-deployed.
null
d5f479c1289619200de3acdfa0325bae111e1bad
null
low
[ { "filename": ".github/workflows/build_and_deploy.yml", "patch": "@@ -563,31 +563,6 @@ jobs:\n - name: Publish\n run: cargo xtask workspace --publish\n \n- deployExamples:\n- if: ${{ needs.deploy-target.outputs.value != 'automated-preview' }}\n- name: Deploy examples\n- runs-on: ubun...