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,666 | fix: validate `dock_state_ `against allowlist before JS execution | Backport of #50646
See that PR for details.
Notes: none | 476a8643882590b5655244c090f205fd957a3618 | 969741f9f847c5c583f6bbc63ca22549dbd954ce | 1 | high | [
{
"filename": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -12,6 +12,7 @@\n #include <utility>\n \n #include \"base/base64.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/containers/span.h\"\n #include \"base/dcheck_is_on.h\"\n #include \"base/memory/raw_ptr.h\"\n@@ -16... |
ollama/ollama | 14,941 | cmd/launch: skip redundant config writes when model unchanged | - `launchSingleIntegration` unconditionally called `SaveIntegration` on every launch, even when the model hadn't changed. The editor integration flow already guarded against this. This aligns the single model flow to match.
- `resolveRunModel` called `SetLastModel(current)` in two paths where current was just read fro... | 870599f5da26977bf5a8e04bd5221f12d5af9907 | b5e78884148828672fa122fdcbfae6a4d578108e | 20 | medium | [
{
"filename": "cmd/launch/launch.go",
"patch": "@@ -413,9 +413,6 @@ func (c *launcherClient) resolveRunModel(ctx context.Context, req RunModelReques\n \t\t\treturn \"\", err\n \t\t}\n \t\tfmt.Fprintf(os.Stderr, \"Headless mode: auto-selected last used model %q\\n\", current)\n-\t\tif err := config.SetLastMo... |
huggingface/transformers | 44,733 | Fix bug and add XPU Expectations for qwen2 and jamba tests | @IlyasMoutawwakil, pls help review, thx! | c368e139aade3ee7cdfa29387f3249168a912e5c | 66dd6a3225c34e14fdf5bed65ee10c097eef6ec5 | 8 | medium | [
{
"filename": "src/transformers/modeling_flash_attention_utils.py",
"patch": "@@ -171,8 +171,10 @@ def _lazy_imports(\n else:\n from .integrations.hub_kernels import load_and_register_attn_kernel\n \n+ # Map standard attention names to hub kernel repos\n+ kernel_rep... |
ollama/ollama | 14,943 | launch: fix openclaw not picking up newly selected model | Sessions with a stale model field were not updated when the primary changed, so the old model continued to be used.
Before:
```bash
❯ ollama launch openclaw --model kimi-k2.5:cloud
Starting your assistant — this may take a moment...
Starting gateway...
✓ OpenClaw is running
Wake up, my friend!
...
... | 42b1c2642b7b3d4de543c68f9d78b1efb0a254e3 | 5759c2d2d20bc3193e4520f4a6af42545dbbc104 | 1 | medium | [
{
"filename": "cmd/launch/openclaw.go",
"patch": "@@ -609,6 +609,8 @@ func clearSessionModelOverride(primary string) {\n \t\tif override, _ := sess[\"modelOverride\"].(string); override != \"\" && override != primary {\n \t\t\tdelete(sess, \"modelOverride\")\n \t\t\tdelete(sess, \"providerOverride\")\n+\t\t... |
nodejs/node | 62,547 | meta: bump github/codeql-action from 4.32.4 to 4.35.1 | Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.32.4 to 4.35.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p>
<blockquote>
<h2>v4.35.1</h2>
<ul>
<li>Fix incorrect minimu... | null | ef601acf4d1861bb0b7f9cfe255da0e91b67f15f | null | low | [
{
"filename": ".github/workflows/codeql.yml",
"patch": "@@ -27,15 +27,15 @@ jobs:\n \n # Initializes the CodeQL tools for scanning.\n - name: Initialize CodeQL\n- uses: github/codeql-action/init@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4.32.4\n+ uses: github/codeql-action/init@... |
rust-lang/rust | 154,767 | triagebot: roll library reviewers for `{coretests,alloctests}` | Noticed in https://github.com/rust-lang/rust/pull/154761 that we are currently rolling fallback reviewers for `library/{alloctests,coretests}`
r? libs | null | 1bc6b6a05e5121f70ae876468207a281e6e1e614 | null | low | [
{
"filename": "triagebot.toml",
"patch": "@@ -1598,7 +1598,9 @@ dep-bumps = [\n \"/compiler/rustc_type_ir\" = [\"compiler\", \"types\"]\n \"/compiler/rustc_public\" = [\"project-stable-mir\"]\n \"/library/alloc\" = ... |
vercel/next.js | 91,649 | [test] Fix flaky `url-hash` tests | [Flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22Client%20navigation%20with%20URL%20hash%20when%20hash%20changes%20with%20state%20when%20passing%20state%20via%20hash%20change%20should%20increment%20the%20hi... | null | 4693685be18ace1818d9c1ade1dae77902013a6f | null | low | [
{
"filename": "test/development/pages-dir/client-navigation/url-hash.test.ts",
"patch": "@@ -2,6 +2,7 @@\n \n import path from 'path'\n import { nextTestSetup } from 'e2e-utils'\n+import { retry } from 'next-test-utils'\n \n describe('Client navigation with URL hash', () => {\n const { next } = nextTestSe... |
ollama/ollama | 14,627 | tui: fix signin on headless Linux systems | Defensively handle environments without a display server to ensure signin remains usable on headless VMs and SSH sessions.
- Skip calling xdg-open when neither DISPLAY nor WAYLAND_DISPLAY is set, preventing silent failures or unexpected browser handlers
- Render the signin URL as plain text instead of wrapping it i... | f8b657c9670a4319930e8d7e5444460df91a7b5d | 727d69ddf39ef80ecebb76e417ccbc0b83861498 | 12 | medium | [
{
"filename": "cmd/launch/models.go",
"patch": "@@ -92,6 +92,10 @@ func OpenBrowser(url string) {\n \tcase \"darwin\":\n \t\t_ = exec.Command(\"open\", url).Start()\n \tcase \"linux\":\n+\t\t// Skip on headless systems where no display server is available\n+\t\tif os.Getenv(\"DISPLAY\") == \"\" && os.Getenv... |
facebook/react | 35,419 | [compiler] Fix setState-in-effect for React.useEffect namespace calls (#35377) | ## Summary
Fix react-hooks/set-state-in-effect false negatives when Hooks are called via a namespace import (e.g. `import * as React from 'react'` and `React.useEffect(...))`. The validation now checks the MethodCall property (the actual hook function) instead of the receiver object.
Issue: Bug: #35377
## How di... | null | 22a20e1f2f557b99115d82b639ff5a32b6453cb6 | null | low | [
{
"filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoSetStateInEffects.ts",
"patch": "@@ -97,7 +97,7 @@ export function validateNoSetStateInEffects(\n case 'CallExpression': {\n const callee =\n instr.value.kind === 'MethodCall'\n- ... |
electron/electron | 50,667 | fix: validate `dock_state_ `against allowlist before JS execution | Backport of #50646
See that PR for details.
Notes: none | null | 2046ae87731d80a7b535512ae19acb529e10e33b | null | low | [
{
"filename": "shell/browser/ui/inspectable_web_contents.cc",
"patch": "@@ -12,6 +12,7 @@\n #include <utility>\n \n #include \"base/base64.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/containers/span.h\"\n #include \"base/memory/raw_ptr.h\"\n #include \"base/metrics/histogram.h\"\n@... |
facebook/react | 35,642 | Stabilize reactFragments host node handle | https://github.com/facebook/react/pull/34935 Introduced `unstable_reactFragments` handle on DOM nodes to enable caching of Observers.
This has been tested in production and is stable so it can be rolled out with the Fragment Refs feature.
| e6f1c33acf81d9865863ab149d24726f43a56db0 | 9c0323e2cf9be543d6eaa44419598af56922603f | 1 | medium | [
{
"filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -218,7 +218,7 @@ export type Instance = Element;\n export type TextInstance = Text;\n \n type InstanceWithFragmentHandles = Instance & {\n- unstable_reactFragments?: Set<FragmentInstanceType>,\n+ reactFragments?: S... |
huggingface/transformers | 44,739 | fix series of failed test case for janus model | null | 66958ae60e221e39356576031d6eb893d4228c2c | null | low | [
{
"filename": "src/transformers/models/janus/processing_janus.py",
"patch": "@@ -45,7 +45,7 @@ class JanusTextKwargs(TextKwargs, total=False):\n class JanusProcessorKwargs(ProcessingKwargs, total=False):\n text_kwargs: JanusTextKwargs\n _defaults = {\n- \"text_kwargs\": {\"padding\": False, \... | |
nodejs/node | 62,544 | meta: bump cachix/cachix-action from 16 to 17 | Bumps [cachix/cachix-action](https://github.com/cachix/cachix-action) from 16 to 17.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/cachix/cachix-action/releases">cachix/cachix-action's releases</a>.</em></p>
<blockquote>
<h2>v17</h2>
<h2>What's Changed</h2>
<h3>Breaking chan... | null | cf17899ab946ea71d5fd1591d8519b4e5db30079 | null | low | [
{
"filename": ".github/workflows/test-shared.yml",
"patch": "@@ -169,7 +169,7 @@ jobs:\n with:\n extra_nix_config: sandbox = true\n \n- - uses: cachix/cachix-action@3ba601ff5bbb07c7220846facfa2cd81eeee15a1 # v16\n+ - uses: cachix/cachix-action@1eb2ef646ac0255473d23a5907ad7b04ce9... |
vercel/next.js | 91,666 | [turbopack] Respect `{eval:true}` in worker_threads constructors | ### What?
Fixed Turbopack incorrectly trying to resolve inline JavaScript code as module references when `new Worker()` is called with `{ eval: true }` option.
Now we skip creating a reference when `eval:true`, and report warnings if we cannot tell what the value is
### Why?
Libraries like jsPDF create Worker threa... | null | 3003e17b102699bffca325257ae7be53fda69052 | null | low | [
{
"filename": "test/e2e/app-dir/node-worker-threads/app/api/jspdf-test/route.ts",
"patch": "@@ -0,0 +1,20 @@\n+import { NextResponse } from 'next/server'\n+\n+export async function GET() {\n+ try {\n+ const { jsPDF } = await import('jspdf')\n+ const doc = new jsPDF()\n+ doc.text('Hello world!', 10... |
ollama/ollama | 14,918 | launch: disable claude attribution header to preserve KV cache | Claude Code sends an x-anthropic-billing-header that changes on every request. This is embedded in the system prompt and consequently breaks the KV cache for every request. Given the size of the prompts that Claude Code usees, this has significant performance impact. | 347f17b8d18eb8747662e84abba0599b83c887d0 | f622b0c5fc0afa46f0275b1a38adf072de3c0424 | 19 | medium | [
{
"filename": "cmd/launch/claude.go",
"patch": "@@ -59,6 +59,7 @@ func (c *Claude) Run(model string, args []string) error {\n \t\t\"ANTHROPIC_BASE_URL=\"+envconfig.Host().String(),\n \t\t\"ANTHROPIC_API_KEY=\",\n \t\t\"ANTHROPIC_AUTH_TOKEN=ollama\",\n+\t\t\"CLAUDE_CODE_ATTRIBUTION_HEADER=0\",\n \t)\n \n \te... |
rust-lang/rust | 154,707 | Make `substr_range` and `subslice_range` return the new `Range` type | Makes the unstable `substr_slice` and `substr_range` functions return the new `core::range::Range` type, instead of the old `core::ops::Range`.
Unblocks the [stabilization](https://github.com/rust-lang/rust/pull/141266) of `#![feature(substr_range)]`, see https://github.com/rust-lang/rust/pull/141266#issuecomment-35... | null | 617fdd824b53244e54bb7c52d4c4aad1f85a90a0 | null | low | [
{
"filename": "library/core/src/slice/mod.rs",
"patch": "@@ -5297,21 +5297,22 @@ impl<T> [T] {\n /// Basic usage:\n /// ```\n /// #![feature(substr_range)]\n+ /// use core::range::Range;\n ///\n /// let nums = &[0, 5, 10, 0, 0, 5];\n ///\n /// let mut iter = nums\n /// ... |
ollama/ollama | 14,888 | cmd/launch: check for both npm and git before installing OpenClaw | The OpenClaw installer requires git in addition to npm. Update the dependency check to detect both and provide specific install guidance for whichever dependencies are missing.
```bash
❯ ./ollama launch openclaw
Error: launching openclaw: openclaw is not installed and required dependencies are missing
Install t... | 676d9845bac3c1669648b1eb8144b887472fae79 | 5d0000634c49452ff5f38c23dff81aa97a0d7293 | 1 | medium | [
{
"filename": "cmd/launch/launch_test.go",
"patch": "@@ -951,7 +951,7 @@ func TestLaunchIntegration_OpenclawInstallsBeforeConfigSideEffects(t *testing.T)\n \tif err == nil {\n \t\tt.Fatal(\"expected launch to fail before configuration when OpenClaw is missing\")\n \t}\n-\tif !strings.Contains(err.Error(), \... |
nodejs/node | 61,670 | [v24.x] deps: V8: backport 6a0a25abaed3 | Original commit message:
[riscv] Fix sp handling in MacroAssembler::LeaveFrame
Keep sp <= fp to ensure that data right above fp doesn't get clobbered
by an inopportune signal and its handler.
Such clobbering can happen in e.g. Node.js when JIT-compiled code is
interrupted by a SIGCHLD han... | 87521e99d16171c01f23d4c4e246f37d2b0018fa | 7757cc3495008252239f76bf5e0a444521e86f24 | 13 | 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.44',\n+ 'v8_embedder_string': '-node.45',\n \n ##### V8 defaults for Node.js ###... |
electron/electron | 50,669 | fix: forward activation token from libnotify on notification click | Backport of #50568
See that PR for details.
Notes: Fixed native notification clicks not focusing the application window on Wayland.
| null | cd495e20a75e536361a1a515accb2b565912831b | null | low | [
{
"filename": "shell/browser/notifications/linux/libnotify_notification.cc",
"patch": "@@ -4,12 +4,16 @@\n \n #include \"shell/browser/notifications/linux/libnotify_notification.h\"\n \n+#include <dlfcn.h>\n+\n+#include <array>\n #include <string>\n \n #include \"base/containers/flat_set.h\"\n #include \"ba... |
ollama/ollama | 14,914 | launch: register websearch for openclaw | We were getting warnings due to the config changing since initially writing this integration. Extension is not added correctly. | bcf6d55b54b9792083e785b5cfaf6ad8eb9f8dca | 676d9845bac3c1669648b1eb8144b887472fae79 | 5 | medium | [
{
"filename": "cmd/launch/openclaw.go",
"patch": "@@ -726,6 +726,34 @@ func registerWebSearchPlugin() {\n \t}\n \tentries[\"openclaw-web-search\"] = map[string]any{\"enabled\": true}\n \tplugins[\"entries\"] = entries\n+\n+\t// Pin trust so the gateway doesn't warn about untracked plugins.\n+\tallow, _ := p... |
facebook/react | 35,953 | [Fiber] Don't warn when rendering data block scripts |
## Summary
React will commit `<script>` tags client-side in a way to blocks them from execution. When that happens we issue a warning when trusted types integration is enabled (introduced in https://github.com/facebook/react/pull/16157).
However, scripts that contain data blocks (e.g. `application/ld+json`) a... | null | e6f1c33acf81d9865863ab149d24726f43a56db0 | null | low | [
{
"filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -183,6 +183,7 @@ export type Props = {\n checked?: boolean,\n defaultChecked?: boolean,\n multiple?: boolean,\n+ type?: string,\n src?: string | Blob | MediaSource | MediaStream, // TODO: Response\n srcSet... |
huggingface/transformers | 45,150 | Fix incorrect TrainingArguments example in training.md | # What does this PR do?
The previous code snippet had an error in how `TrainingArguments` was being used, which could lead to confusion or incorrect implementation.
Corrected the example to properly demonstrate how to initialize and use `TrainingArguments`.
<!--
Congratulations! You've made it this far! You'r... | null | 9914a3641f7aaaabb0bcdfcd73a54a1cfa70c3e7 | null | low | [
{
"filename": "docs/source/en/training.md",
"patch": "@@ -115,7 +115,7 @@ model = AutoModelForCausalLM.from_pretrained(model_name, dtype=\"auto\")\n </hfoptions>\n \n ```py\n-TrainingArguments(\n+training_args = TrainingArguments(\n output_dir=\"qwen3-finetuned\",\n num_train_epochs=3,\n per_dev... |
vercel/next.js | 92,262 | Allow multi-level .localhost subdomains in dev origin check | ## Summary
The built-in dev origin allowlist uses `*.localhost`, but `*` only matches a single subdomain level. Multi-level `.localhost` subdomains like `sub.app.localhost` are blocked even though all `.localhost` domains resolve to loopback per RFC 6761.
This changes `*.localhost` to `**.localhost` so any depth of `... | 77c84b4dacb2f9693f8f44a9ee16dad8bce99f9c | daca04d09bf9aaee9e1c63324166985b643e9844 | 16 | medium | [
{
"filename": "packages/next/src/server/lib/router-utils/block-cross-site-dev.ts",
"patch": "@@ -119,7 +119,7 @@ export const blockCrossSiteDEV = (\n hostname: string | undefined\n ): boolean => {\n const allowedOrigins = [\n- '*.localhost',\n+ '**.localhost',\n 'localhost',\n ...(allowedD... |
rust-lang/rust | 154,706 | fix compilation of time/hermit.rs | https://github.com/rust-lang/rust/pull/154518 has broken compiling std for Hermit by unwrapping an `i32`.
This PR converts the `i32` to an `io::Result` before unwrapping.
Closes https://github.com/rust-lang/rust/issues/154626.
Closes https://github.com/hermit-os/hermit-rs/issues/965.
r? @Mark-Simulacrum | null | ccac77a61ac31777659009a68f9a453ca9237912 | null | low | [
{
"filename": "library/std/src/sys/time/hermit.rs",
"patch": "@@ -1,12 +1,13 @@\n use hermit_abi::{self, CLOCK_MONOTONIC, CLOCK_REALTIME};\n \n use crate::io;\n+use crate::sys::cvt;\n use crate::sys::pal::time::Timespec;\n use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Tim... |
ollama/ollama | 14,897 | cloud_proxy: for the web_search legacy path, flush on newlines | `WebSearchAnthropicWriter` expects a single object per write. The new transparent proxy will instead send it whatever bytes it sees. This cloud-model + local-orchestration + cloud-search is a temporary code path, so instead of making the web search code more robust to this, I put an adapter in the middle that will flus... | 3980c0217d27e05a441808a446e7ee5ea7e04256 | e37a9b4c0184783b0d2db74bd9869bd6fa1d5e03 | 11 | medium | [
{
"filename": "server/cloud_proxy.go",
"patch": "@@ -226,7 +226,24 @@ func proxyCloudRequestWithPath(c *gin.Context, body []byte, path string, disable\n \tcopyProxyResponseHeaders(c.Writer.Header(), resp.Header)\n \tc.Status(resp.StatusCode)\n \n-\tif err := copyProxyResponseBody(c.Writer, resp.Body); err !... |
electron/electron | 50,672 | fix: resolve getFileHandle concurrent stalling by queuing callbacks | Backport of #50597
See that PR for details.
Notes: Fixed an issue where concurrent `getFileHandle` requests on the same path could stall indefinitely. | 2871c1d392ad1e162a1410a4f42981e253aab122 | abed1204e6f3ac5606538b5909bb0416ea1b2e14 | 21 | medium | [
{
"filename": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -697,7 +697,11 @@ void FileSystemAccessPermissionContext::ConfirmSensitiveEntryAccess(\n content::GlobalRenderFrameHostId frame_id,\n base::OnceCallback<void(SensitiveEntryResult)> callback) {\n ... |
electron/electron | 50,615 | fix: don't force kFitToPrintableArea scaling when custom margins are set | #### Description of Change
Fixes https://github.com/electron/electron/issues/50481
When silent printing with non-default margins (custom, no margins, or printable area margins), the kFitToPrintableArea scaling option causes double-marginalization: the custom margins define the content area, then the scaling addit... | f41438ff73360a8ac42b45368d1d623f03fb4359 | 230f02faf2af01717898c8960b6658c7f7382499 | 3 | high | [
{
"filename": "patches/chromium/printing.patch",
"patch": "@@ -703,7 +703,7 @@ index ac2f719be566020d9f41364560c12e6d6d0fe3d8..16d758a6936f66148a196761cfb875f6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/compone... |
nodejs/node | 62,101 | module,win: fix long subpath import | This change fixes the linked issue and adds a regression test.
Fixes: https://github.com/nodejs/node/issues/62043 | null | e419afd50c6bc8c6d41188f1affda3a3ef662267 | null | low | [
{
"filename": "src/node_modules.cc",
"patch": "@@ -425,8 +425,16 @@ void BindingData::GetPackageScopeConfig(\n url::ThrowInvalidURL(realm->env(), resolved.ToStringView(), std::nullopt);\n return;\n }\n+ BufferValue file_path_buf(realm->isolate(),\n+ String::Ne... |
facebook/react | 35,947 | Add support for event information in React scheduler tracks in React Native | ## Summary
This defines the same fiber configuration for RN as used in DOM, so we can expose event timing information in the React scheduler tracks in performance traces.
This was unblocked by #35913 and #35912.
## How did you test this change?
Manually compiled the renderer and tested e2e in FB infra:
<i... | null | 4cc5b7a90bac7e1f8ac51a9ac570d3ada3bddcb3 | null | low | [
{
"filename": "packages/react-native-renderer/src/ReactFiberConfigFabric.js",
"patch": "@@ -422,14 +422,48 @@ export function resolveUpdatePriority(): EventPriority {\n return DefaultEventPriority;\n }\n \n-export function trackSchedulerEvent(): void {}\n+let schedulerEvent: void | Event = undefined;\n+ex... |
huggingface/transformers | 33,215 | Bump torch from 1.13.1 to 2.2.0 in /examples/research_projects/decision_transformer | Bumps [torch](https://github.com/pytorch/pytorch) from 1.13.1 to 2.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/pytorch/pytorch/releases">torch's releases</a>.</em></p>
<blockquote>
<h2>PyTorch 2.2: FlashAttention-v2, AOTInductor</h2>
<h1>PyTorch 2.2 Release Notes</h1>... | null | 9a6956baabc76ef2b4cb60b1e88237063a6ac541 | null | low | [
{
"filename": "examples/research_projects/decision_transformer/requirements.txt",
"patch": "@@ -217,7 +217,7 @@ timm==0.5.4\n tokenizers==0.11.6\n tomli==2.0.1\n toolz==0.11.2\n-torch==1.13.1\n+torch==2.2.0\n torchaudio==0.11.0\n torchvision==0.12.0\n tqdm==4.66.3",
"additions": 1,
"deletions": 1
... |
electron/electron | 50,653 | fix: don't force kFitToPrintableArea scaling when custom margins are set | Backport of #50615
See that PR for details.
Notes: Fixed an issue where margins did not look as expected when printing in silent mode. | bba4374952eb2cac3c4fe86d5743fe0b7299bf2c | d73eaf83f5699c203b1e610812ef6463bb6b80ae | 6 | medium | [
{
"filename": "patches/chromium/printing.patch",
"patch": "@@ -703,7 +703,7 @@ index ac2f719be566020d9f41364560c12e6d6d0fe3d8..16d758a6936f66148a196761cfb875f6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/compone... |
vercel/next.js | 91,527 | Remove unnecessary ALS re-exports from `entry-base.ts` | The `workAsyncStorage`, `workUnitAsyncStorage`, and `actionAsyncStorage` instances were re-exported from `entry-base.ts` so that they could be accessed as properties of the bundled page module (`ComponentMod`). This indirection is no longer necessary because the `.external.ts` naming convention forces webpack to extern... | null | feae4cc4305a991233ca5c529d897b7ed1136872 | null | low | [
{
"filename": "packages/next/src/build/static-paths/app.test.ts",
"patch": "@@ -9,9 +9,7 @@ import {\n } from './app'\n import type { PrerenderedRoute } from './types'\n import type { WorkStore } from '../../server/app-render/work-async-storage.external'\n-import type { WorkUnitAsyncStorage } from '../../se... |
ollama/ollama | 14,878 | mlx: add prequantized tensor packing + changes for qwen35 | This change adds a tensorImportTransform interface for model-specific tensor transformations during safetensors import. This allows importing and modifying the standard HF based weights as well as the mlx-community derived pre-quantized safetensors repos to be directly imported into `ollama create`. Right now this only... | null | fa69b833cd1323b2d96b80da9e38cadc7e8fe97a | null | low | [
{
"filename": "x/create/create.go",
"patch": "@@ -9,6 +9,7 @@ import (\n \t\"regexp\"\n \t\"slices\"\n \t\"sort\"\n+\t\"strconv\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/envconfig\"\n@@ -422,6 +423,117 @@ type PackedTensorInput struct {\n // groupName is the group prefix (e.g., \"model.layers.1.ml... |
rust-lang/rust | 154,581 | More informative `Debug for vec::ExtractIf` | While working on rust-lang/rust#154318, I've realized that `vec::ExtractIf` actually maintains a valid prefix and a valid suffix in the underlying vector at all times with all the temporarily-invalid elements being only in the middle.
So why not make the `Debug` output more informative? I guess we could even expose ... | null | ab3532f487adee549183aaadc4d9fcac7f6729de | null | low | [
{
"filename": "library/alloc/src/vec/extract_if.rs",
"patch": "@@ -130,20 +130,25 @@ where\n A: Allocator,\n {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- let peek = if self.idx < self.end {\n- // This has to use pointer arithmetic as `self.vec[self.idx]` or\n- ... |
ollama/ollama | 14,886 | launch: fix web search, add web fetch, and enable both for local | Some recent OpenClaw changes were not compatible with some of the launch config changes we had. Updating those to enable both in OpenClaw again. | 856c047a6cad0cff20cc0e1995f92826a7280dba | bcf6d55b54b9792083e785b5cfaf6ad8eb9f8dca | 2 | medium | [
{
"filename": "cmd/launch/openclaw.go",
"patch": "@@ -14,6 +14,8 @@ import (\n \t\"strings\"\n \t\"time\"\n \n+\t\"golang.org/x/mod/semver\"\n+\n \t\"github.com/ollama/ollama/api\"\n \t\"github.com/ollama/ollama/cmd/internal/fileutil\"\n \t\"github.com/ollama/ollama/envconfig\"\n@@ -90,10 +92,8 @@ func (c *... |
huggingface/transformers | 44,696 | Fix `supports_{tp/pp}_plan` | In configs, `base_model_pp_plan` and `base_model_tp_plan` default to `None`
In models, `_pp_plan` and `_tp_plan` _look like_ they default to `None` based on the class variables, but will actually always be a dict because of `post_init`.
This means that `supports_pp_plan` and `supports_tp_plan` always return `True`.
... | bfe00b41ebdb66b92ca40a8c81778dae3acdaccf | 9f93b61209e3a3cac026566bc11a77036941bbeb | 21 | medium | [
{
"filename": "src/transformers/modeling_utils.py",
"patch": "@@ -26,7 +26,6 @@\n from collections.abc import Callable, Iterator\n from contextlib import contextmanager\n from dataclasses import dataclass, field\n-from enum import Enum\n from functools import partial, wraps\n from itertools import cycle\n f... |
electron/electron | 50,572 | ci: run BrowserWindow test spec on Wayland | #### Description of Change
Brings `spec/api-browser-window-spec.ts` to the Wayland test job. Many tests are skipped (or already were skipped on Linux) but there are still hundreds of quality results from this suite, especially related to window bounds. Even the skipped tests should help contributors be more aware o... | null | 82b97ddf5bc2bbf825be6a73c5849ca1021249e0 | null | low | [
{
"filename": "script/actions/run-tests-wayland.sh",
"patch": "@@ -2,6 +2,8 @@\n set -euo pipefail\n \n export XDG_SESSION_TYPE=wayland\n+# On a Wayland desktop, the tests will use your active display and compositor.\n+# To run headlessly in weston like in CI, set WAYLAND_DISPLAY=wayland-99.\n export WAYLAN... |
nodejs/node | 61,708 | src: fix `--build-sea` default executable path | Fixes https://github.com/nodejs/node/issues/61579
<!--
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#c... | null | 30adc7c2f30bbcde1ede78520fc5fb5a937fff53 | null | low | [
{
"filename": "src/node_sea_bin.cc",
"patch": "@@ -388,7 +388,7 @@ ExitCode BuildSingleExecutable(const std::string& sea_config_path,\n \n SeaConfig config = opt_config.value();\n if (config.executable_path.empty()) {\n- config.executable_path = args[0];\n+ config.executable_path = Environment::Ge... |
facebook/react | 24,556 | [DevTools] Add jest-cli `--reactVersion` argument | Add `--reactVersion` argument. This argument is only used in DevTools. When this is specified, run only the tests that have the `// @reactVersion` pragma that satisfies the semver version range. Otherwise, run tests as normal | null | c5e039d9b0857b10fbcea861469ad0948c84b045 | null | low | [
{
"filename": "scripts/jest/jest-cli.js",
"patch": "@@ -5,6 +5,7 @@ const chalk = require('chalk');\n const yargs = require('yargs');\n const fs = require('fs');\n const path = require('path');\n+const semver = require('semver');\n \n const ossConfig = './scripts/jest/config.source.js';\n const wwwConfig = ... |
ollama/ollama | 14,840 | runner: fix swallowed error in allocModel graph reservation | ## Summary
Fixes #14839
`allocModel()` silently discards the error from the first `reserveWorstCaseGraph(true)` call by returning `nil` instead of `err`. This means a failed prompt graph reservation goes unnoticed — the model appears to load successfully but may behave unexpectedly during inference.
**Before (bug):*... | 54e05172a03c79c9f59539a6c572d904a2f2cf66 | 810d4f9c22319491cd3ac360afed6d2cae6be99a | 24 | medium | [
{
"filename": "runner/ollamarunner/runner.go",
"patch": "@@ -1231,7 +1231,7 @@ func (s *Server) allocModel(\n \n \terr = s.reserveWorstCaseGraph(true)\n \tif err != nil {\n-\t\treturn nil\n+\t\treturn err\n \t}\n \n \treturn s.reserveWorstCaseGraph(false)",
"additions": 1,
"deletions": 1
}
] |
rust-lang/rust | 154,798 | rustdoc-search: match path components on words | Since the length of a path is treated as sorting criteria, and every path that contains the query without exactly matching it must be longer, exact matches will always sort first if they exist.
Fixes rust-lang/rust#154733
| null | 42108257e6d02616cc6015ccc5f1c86f7a9ccbdf | null | low | [
{
"filename": "src/librustdoc/html/static/js/search.js",
"patch": "@@ -2799,6 +2799,8 @@ class DocSearch {\n result_list.sort((aaa, bbb) => {\n const aai = aaa.item;\n const bbi = bbb.item;\n+ const ap = aai.modulePath !== undefined ... |
vercel/next.js | 91,497 | turbo-tasks-backend: batch find_and_schedule_dirty using for_each_task_meta | ### What?
Batch-process `find_and_schedule_dirty` in `aggregation_update.rs` by collecting all queued jobs (up to `FIND_AND_SCHEDULE_BATCH_SIZE` = 10 000) into a `SmallVec` and pre-fetching their task metadata with a batched `ctx.for_each_task_meta(...)` call.
### Why?
`find_and_schedule` can accumulate thousa... | null | c13536d012e65396c16c0c33a30a6333ad42d677 | null | low | [
{
"filename": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -43,6 +43,10 @@ type FxRingSet<T> = RingSet<T, FxBuildHasher>;\n \n pub const LEAF_NUMBER: u32 = 16;\n const MAX_COUNT_BEFORE_YIELD: usize = 1000;\n+/// Batch size for find_and_schedule processing.... |
ollama/ollama | 14,883 | cmd/launch: skip --install-daemon when systemd is unavailable | In container environments without systemd, `openclaw onboard --install-daemon` exits non-zero because it cannot create a systemd user service. This causes `ollama launch openclaw` to abort even though the gateway can be started as a foreground child process.
Only pass --install-daemon when systemd user services are ... | 10fefe0d57a0a1593b20c14cd4081ad649c1fb59 | 856c047a6cad0cff20cc0e1995f92826a7280dba | 3 | medium | [
{
"filename": "cmd/launch/openclaw.go",
"patch": "@@ -66,16 +66,20 @@ func (c *Openclaw) Run(model string, args []string) error {\n \t\tfmt.Fprintf(os.Stderr, \"\\n%sSetting up OpenClaw with Ollama...%s\\n\", ansiGreen, ansiReset)\n \t\tfmt.Fprintf(os.Stderr, \"%s Model: %s%s\\n\\n\", ansiGray, model, ansi... |
huggingface/transformers | 45,057 | [serving] Fix continuous batching JSON response serialization | Change model_dump_json() to model_dump() to avoid double JSON encoding. When using continuous batching with stream=false, the response was being double-encoded as a string instead of returning a proper JSON object.
Added a UV script to run GPQA using transformer-serve:
```
hf jobs uv run examples/pytorch/trans... | null | a91232af09f59e2e1c96561901c92e01e238c355 | null | low | [
{
"filename": "examples/pytorch/transformers_serve_cb_eval_job.py",
"patch": "@@ -0,0 +1,192 @@\n+# /// script\n+# dependencies = [\n+# \"inspect-ai\",\n+# \"inspect-evals\",\n+# \"huggingface-hub\",\n+# \"transformers[serving] @ git+https://github.com/huggingface/transformers.git@main\",\n+... |
electron/electron | 50,658 | ci: run BrowserWindow test spec on Wayland | Backport of #50572
See that PR for details.
Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples --> none
| 119127b23a06a63a1d3aa9ba4de6355feb130801 | 65f97115f16931ba5508b93b9869e97a9732f558 | 30 | medium | [
{
"filename": "script/actions/run-tests-wayland.sh",
"patch": "@@ -2,6 +2,8 @@\n set -euo pipefail\n \n export XDG_SESSION_TYPE=wayland\n+# On a Wayland desktop, the tests will use your active display and compositor.\n+# To run headlessly in weston like in CI, set WAYLAND_DISPLAY=wayland-99.\n export WAYLAN... |
facebook/react | 35,921 | [react-dom] Support `maskType` SVG prop | ## Summary
React currently does not recognize the `maskType` prop on SVG elements, causing:
1. The attribute to be rendered as-is (`maskType="luminance"`) rather than the correct `mask-type="luminance"`
2. A React warning: *"React does not recognize the `maskType` prop on a DOM element"*
The SVG `mask-type` attribute... | null | 843d69f077032064798f94b419a22ab5f35f5a6c | null | low | [
{
"filename": "packages/react-dom-bindings/src/shared/getAttributeAlias.js",
"patch": "@@ -50,6 +50,7 @@ const aliases = new Map([\n ['markerEnd', 'marker-end'],\n ['markerMid', 'marker-mid'],\n ['markerStart', 'marker-start'],\n+ ['maskType', 'mask-type'],\n ['overlinePosition', 'overline-position... |
vercel/next.js | 91,538 | Skip loadBindings() Lightning CSS check during next start | ## Summary
Avoid calling `loadBindings()` to check whether the loaded binary supports Lightning CSS during `next start`, as this is unnecessary for production server operation. The check should only occur during the build phase.
- Skips the native binary load during `next start` (production server phase)
- No impact o... | 97f420911da9e1caec5e47535caa16f01c1be493 | 6f669f1a73a3ddc75b83671ffe851c074b315727 | 27 | medium | [
{
"filename": "packages/next/src/server/config.ts",
"patch": "@@ -9,7 +9,7 @@ import {\n PHASE_DEVELOPMENT_SERVER,\n PHASE_EXPORT,\n PHASE_PRODUCTION_BUILD,\n- type PHASE_PRODUCTION_SERVER,\n+ PHASE_PRODUCTION_SERVER,\n type PHASE_TYPE,\n } from '../shared/lib/constants'\n import { defaultConfig, ... |
rust-lang/rust | 152,851 | Fix SGX delayed host lookup via ToSocketAddr | <!-- homu-ignore:start -->
*[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/152851)*
<!-- homu-ignore:end -->
rust-lang/rust#146541 introduced a regression in the `x86_64-fortanix-unknown-sgx` target, where arguments to TcpStream::connect and TcpListener::bind are no longer be... | null | a5d2326d6e7ab1e54da357b6d67dde79676836e0 | null | low | [
{
"filename": "library/std/src/net/socket_addr.rs",
"patch": "@@ -189,11 +189,6 @@ impl ToSocketAddrs for (Ipv6Addr, u16) {\n }\n }\n \n-fn lookup_host(host: &str, port: u16) -> io::Result<vec::IntoIter<SocketAddr>> {\n- let addrs = crate::sys::net::lookup_host(host, port)?;\n- Ok(Vec::from_iter(a... |
huggingface/transformers | 45,122 | :rotating_light: [`LightGlue`] Remove remote code execution | Native model integration should never have anything related to remote code execution: That just means that we would need to add that model natively, not via remote - it can and will not be maintained by us.
Additionally added a new linter rule to check for simple usage of this via `trust_remote_code=...`
NOTE: Th... | 2da00a3cec88fac160d481406e7961cf59472894 | 676559d5022b74aaa0cee1cee0842b7f27c5320e | 11 | medium | [
{
"filename": "src/transformers/models/lightglue/configuration_lightglue.py",
"patch": "@@ -40,8 +40,6 @@ class LightGlueConfig(PreTrainedConfig):\n The confidence threshold used to prune points\n filter_threshold (`float`, *optional*, defaults to 0.1):\n The confidence threshold used to... |
nodejs/node | 62,524 | tools: allow triagers to queue a PR for CI until it's reviewed | Triagers and PR authors currently have to wait until a PR has gotten an approving review before applying the https://github.com/nodejs/node/labels/request-ci label; this change allows to add the label immediately, and the CI will start once the PR is approved.
Fixes: https://github.com/nodejs/node/issues/62496
<!... | null | 25443db104d39a3dcd410fa882884580734cfaa4 | null | low | [
{
"filename": ".github/workflows/auto-start-ci.yml",
"patch": "@@ -28,13 +28,13 @@ jobs:\n - name: Get Pull Requests\n id: get_prs_for_ci\n run: >\n- numbers=$(gh pr list \\\n- --repo ${{ github.repository }} \\\n+ echo \"numbers=$(gh pr list \\\n+ ... |
vercel/next.js | 91,514 | Restructure pr-status-triage skill: merge command into skill files | ### What?
Migrates the `.claude/commands/pr-status.md` slash command into the `.agents/skills/pr-status-triage/` skill, restructuring the files so that `SKILL.md` has a single unified workflow and supporting details live in the appropriate reference files. Deletes the original command file.
### Why?
The pr-status au... | 962e5b166cea3fdb6589837a8fd3ea62031be17d | 6836c26b723aa1b66c801039763618fb3cc1e3a7 | 7 | medium | [
{
"filename": ".agents/skills/pr-status-triage/SKILL.md",
"patch": "@@ -14,21 +14,24 @@ Use this skill when the user asks about PR status, CI failures, or review commen\n \n ## Workflow\n \n-1. Run `node scripts/pr-status.js` (or `node scripts/pr-status.js <number>`).\n-2. Read generated files in `scripts/p... |
ollama/ollama | 14,240 | bench: improve benchmarking tool | New features:
- Warmup phase to eliminate cold-start outliers
- time-to-first-token measured in each epoch
- VRAM/memory tracking to identify CPU spillover
- Controlled prompt length
- Defaults to 6 epochs and 200 tokens max
Benchstat fixes:
- ns/request instead of ns/op — non-standard unit created a separate ... | null | 79c1e93c005ebeccb31b8482da9d71a446af9b5f | null | low | [
{
"filename": "cmd/bench/README.md",
"patch": "@@ -1,27 +1,31 @@\n Ollama Benchmark Tool\n ---------------------\n \n-A Go-based command-line tool for benchmarking Ollama models with configurable parameters and multiple output formats.\n+A Go-based command-line tool for benchmarking Ollama models with confi... |
facebook/react | 35,919 | fix: remove unused variable to fix linter | 98ce535fdb6ff559a5dd76b58c1bcaa983804957 | b4a8d298450fd1fd274445fe8554e5fc18c5e12c | 2 | high | [
{
"filename": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js",
"patch": "@@ -1189,7 +1189,6 @@ describe('ReactFabric', () => {\n \n const ref1 = React.createRef();\n const ref2 = React.createRef();\n- const ref3 = React.createRef();\n \n const explicitTimeStampCame... | |
vercel/next.js | 91,461 | turbo-tasks-backend: batch schedule dirty tasks in aggregation_update | ### What?
Batch the scheduling of dirty tasks during aggregation update processing instead of scheduling them one at a time.
In `aggregation_update.rs`, `find_and_schedule_dirty_internal` previously called `ctx.schedule()` immediately for each task it decided to schedule. This involved a separate `ctx.task(id, Ta... | c13536d012e65396c16c0c33a30a6333ad42d677 | f8f77da914a6ce2110ecce34f2cf5316a178582a | 4 | medium | [
{
"filename": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -24,7 +24,8 @@ use tracing::span::Span;\n ))]\n use tracing::trace_span;\n use turbo_tasks::{\n- FxIndexMap, TaskExecutionReason, TaskId, backend::CachedTaskType, event::EventDescription,\n+ ... |
facebook/react | 35,913 | [RN] Expose event as a global variable during dispatch | ## Summary
This PR updates the event dispatching logic in React Native to expose the dispatched event in the global scope as done on Web (https://dom.spec.whatwg.org/#concept-event-listener-inner-invoke) and in the new implementation of `EventTarget` in React Native (https://github.com/facebook/react-native/blob/d1b... | a48e9e3f10fed06c813399ccae8a28db7dd76683 | 98ce535fdb6ff559a5dd76b58c1bcaa983804957 | 1 | medium | [
{
"filename": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js",
"patch": "@@ -1099,6 +1099,8 @@ describe('ReactFabric', () => {\n // Check for referential equality\n expect(ref1.current).toBe(event.target);\n expect(ref1.current).toBe(even... |
electron/electron | 50,635 | ci: fix pulling previous object checksums | #### 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
NOTE: PRS submitted without this template will be automatically closed.
-->
Follow-up t... | null | 188813e206a08cc87a6491ea8c2bb90be1fc1fde | null | low | [
{
"filename": ".github/actions/build-electron/action.yml",
"patch": "@@ -48,19 +48,15 @@ runs:\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n - name: Download previous object checksums\n- uses: dawidd6/action-download-artifact@09b07ec687d... |
ollama/ollama | 14,837 | cmd/launch: add guards for headless mode | Should have had a couple more guards to make sure that any tui element is guarded on detecting terminal | 9e7ba835da03a99c7b471dfae4b35cd7ef797957 | f8b657c9670a4319930e8d7e5444460df91a7b5d | 7 | medium | [
{
"filename": "cmd/cmd.go",
"patch": "@@ -62,6 +62,9 @@ import (\n func init() {\n \t// Override default selectors to use Bubbletea TUI instead of raw terminal I/O.\n \tlaunch.DefaultSingleSelector = func(title string, items []launch.ModelItem, current string) (string, error) {\n+\t\tif !term.IsTerminal(int... |
rust-lang/rust | 154,526 | Panic/return false on overflow in no_threads read/try_read impl | As per discussion with Mark in rust-lang/rust#153555, it's possible for `no_threads` impl of `RwLock` to trigger a silent overflow on `RwLock::read`/`RwLock::try_read` if we try to acquire more than `isize::MAX` read locks. This PR adds an explicit panic/return false when our read lock counter is at `isize::MAX` for `R... | null | 67898f832a964ba1541da454b474df75e9f5ebbf | null | low | [
{
"filename": "library/std/src/sys/sync/rwlock/no_threads.rs",
"patch": "@@ -18,7 +18,7 @@ impl RwLock {\n pub fn read(&self) {\n let m = self.mode.get();\n if m >= 0 {\n- self.mode.set(m + 1);\n+ self.mode.set(m.checked_add(1).expect(\"rwlock overflowed read locks\... |
huggingface/transformers | 45,140 | Fix stupid test fetcher | # What does this PR do?
Really stupid ...
Currently, change a docstring will count as "modified files", then the impacted files and test files to run are computed.
Say, we add a comment to bert, many files impacted (via dependency) then many test files to run.
This PR avoid this waste. | null | 09a0bbb21ac50eae76bec1c600ff711f135a4f91 | null | low | [
{
"filename": "tests/repo_utils/test_tests_fetcher.py",
"patch": "@@ -39,6 +39,7 @@\n diff_is_docstring_only,\n extract_imports,\n get_all_tests,\n+ get_diff,\n get_module_dependencies,\n get_repo_utils_tests,\n get_tree_starting_at,\n@@ -313,6 +314,23 @@ def test_diff_is_docstrin... |
nodejs/node | 62,367 | lib: defer AbortSignal.any() following | ## Summary
- defer following source signals for `AbortSignal.any()` until the composite is observed
- keep composite state in sync via lazy refresh and follow paths
- unregister fired timeout signals from `clearTimeoutRegistry` to reduce timeout churn retention
- add regression coverage for long-lived and timeout churn... | null | a9ac9b12eec0f777b99e80e8672c3f429c7329db | null | low | [
{
"filename": "lib/internal/abort_controller.js",
"patch": "@@ -85,17 +85,16 @@ function lazyMessageChannel() {\n }\n \n const clearTimeoutRegistry = new SafeFinalizationRegistry(clearTimeout);\n-const dependantSignalsCleanupRegistry = new SafeFinalizationRegistry((signalWeakRef) => {\n- const signal = sig... |
ollama/ollama | 14,829 | config: use native OpenClaw Ollama onboarding | OpenClaw now accepts the Ollama onboarding flags directly upstream, so rely on its wizard state instead of the legacy integration onboarding flag.
Update first-run setup to pass the Ollama auth and model flags during onboarding, perform a best-effort update before onboarding when needed, and drop the stale test that... | af5f7c0a9ea3c2be9fbaab047ae71f6703ef1e5d | 10fefe0d57a0a1593b20c14cd4081ad649c1fb59 | 13 | medium | [
{
"filename": "cmd/launch/openclaw.go",
"patch": "@@ -15,7 +15,6 @@ import (\n \t\"time\"\n \n \t\"github.com/ollama/ollama/api\"\n-\t\"github.com/ollama/ollama/cmd/config\"\n \t\"github.com/ollama/ollama/cmd/internal/fileutil\"\n \t\"github.com/ollama/ollama/envconfig\"\n \t\"github.com/ollama/ollama/types... |
electron/electron | 50,652 | fix: don't force kFitToPrintableArea scaling when custom margins are set | Backport of #50615
See that PR for details.
Notes: Fixed an issue where margins did not look as expected when printing in silent mode. | 75d8a239a004022d0363b1e09dc60aba6575c8cc | 65c5528d132ad133e12cf1a28ae8e7cab32a28ec | 3 | high | [
{
"filename": "patches/chromium/printing.patch",
"patch": "@@ -675,7 +675,7 @@ index ac2f719be566020d9f41364560c12e6d6d0fe3d8..16d758a6936f66148a196761cfb875f6\n PrintingFailed(int32 cookie, PrintFailureReason reason);\n \n diff --git a/components/printing/renderer/print_render_frame_helper.cc b/compone... |
huggingface/transformers | 45,112 | [CB] Add warmup feature | This PR adds a warmup phase before generation starts, turned on by default.
It allows for better diagnostics and a more representative user experience than without warmup, where the cost of wamup is payed during the first request rather than in a phase before generation starts.
Warmup is skipped if cuda graphs and ... | 8213e0d920d52cb00dcade16b6d1f6e952ac0a8c | 4f2871932477e23190406004383da557a270d9a0 | 3 | medium | [
{
"filename": "benchmark_v2/benchmark_scripts/continuous_batching_overall.py",
"patch": "@@ -1,3 +1,5 @@\n+import argparse\n+import json\n import re\n import subprocess\n from pathlib import Path\n@@ -8,10 +10,11 @@\n SCRIPT_LOCATION = (Path(__file__).parent.parent.parent / \"examples/pytorch/continuous_bat... |
vercel/next.js | 91,636 | [turbopack] Use bail! instead of panic! for duplicate module ident error | ### What?
In `turbopack/crates/turbopack-core/src/module_graph/mod.rs`, the `#[cfg(debug_assertions)]` duplicate module ident detection block inside `SingleModuleGraph::new_inner` called `panic!` when duplicates were found.
### Why?
`panic!` terminates the process hard, bypassing the normal error-handling chain. The... | null | 99d64f3ae1dd3112b193674b55fc43aeb0dd8cce | null | low | [
{
"filename": "turbopack/crates/turbopack-core/src/module_graph/mod.rs",
"patch": "@@ -406,7 +406,7 @@ impl SingleModuleGraph {\n for (key, debug, parents) in duplicate_modules {\n map.entry(key).or_default().push((debug, parents));\n }\n- ... |
facebook/react | 35,912 | [RN] Fix timeStamp property of SyntheticEvent in React Native | ## Summary
This fixes the semantics of the `timeStamp` property of events in React Native.
Currently, most events just assign `Date.now()` (at the time of creating the event object in JavaScript) as the `timeStamp` property. This is a divergence with Web and most native platforms, that use a monotonic timestamp f... | null | a48e9e3f10fed06c813399ccae8a28db7dd76683 | null | low | [
{
"filename": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js",
"patch": "@@ -1153,6 +1153,138 @@ describe('ReactFabric', () => {\n expect.assertions(6);\n });\n \n+ it('propagates timeStamps from native events and sets defaults', async () => {\n+ const View = createReac... |
electron/electron | 50,645 | fix: glitchy rendering and maximize behavior with different GTK themes | Backport of #50550
See that PR for details.
Notes: Fixed the appearance of maximized windows on GNOME in Wayland, especially when non-default GTK themes like Breeze are set.
| e03cb79aa545929c8289ee0a05b72c554481e197 | 81333d7c794a858557b88f7c0a61dbcbd4db25cd | 3 | medium | [
{
"filename": "shell/browser/ui/views/client_frame_view_linux.cc",
"patch": "@@ -163,7 +163,7 @@ int ClientFrameViewLinux::ResizingBorderHitTest(const gfx::Point& point) {\n gfx::Rect ClientFrameViewLinux::GetBoundsForClientView() const {\n gfx::Rect client_bounds = bounds();\n if (!frame_->IsFullscreen... |
nodejs/node | 62,523 | tools: do not run `commit-lint` on release proposals | The first commit is almost never related (except for LTS transitions), and we have the `lint-release-proposal` that runs checks on the actual commit to review
<!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md
- the commit messa... | null | 4f6e60226ffda76640d6e113f02675bd1caf9bd4 | null | low | [
{
"filename": ".github/workflows/commit-lint.yml",
"patch": "@@ -1,6 +1,10 @@\n name: First commit message adheres to guidelines\n \n-on: [pull_request]\n+on:\n+ pull_request:\n+ branches:\n+ - main\n+ - v[0-9]+.x-staging\n \n env:\n NODE_VERSION: lts/*",
"additions": 5,
"deletions":... |
rust-lang/rust | 154,635 | ./x run miri: default to edition 2021 | Fixes https://github.com/rust-lang/rust/issues/154630 | null | c13822a58468eaabf1235710051117369b292325 | null | low | [
{
"filename": "src/bootstrap/src/core/build_steps/run.rs",
"patch": "@@ -180,6 +180,10 @@ impl Step for Miri {\n // Forward arguments. This may contain further arguments to the program\n // after another --, so this must be at the end.\n miri.args(builder.config.args());\n+ //... |
ollama/ollama | 14,833 | rocm: doc driver constraints | ebb1b9ec14ddca1af815956b8dc8bcb13982f962 | 2f9a68f9e9248dd57f65fd3e8543024ebe243d88 | 28 | medium | [
{
"filename": "docs/gpu.mdx",
"patch": "@@ -61,6 +61,10 @@ Ollama supports the following AMD GPUs via the ROCm library:\n \n ### Linux Support\n \n+Ollama requires the AMD ROCm v7 driver on Linux. You can install or upgrade\n+using the `amdgpu-install` utility from\n+[AMD's ROCm documentation](https://rocm.... | |
ollama/ollama | 14,827 | server: decompress zstd request bodies in cloud passthrough middleware | When a zstd-compressed request (e.g. from Codex CLI) hits /v1/responses with a cloud model the request failed.
Fix by decompressing zstd bodies before
model extraction, so cloud models are detected and proxied directly without the writer being wrapped.
To test:
```
ollama launch codex --model minimax-m2.5:clou... | abf8e8e9c81c00270876c250ad886dfc4a20c8b2 | 3980c0217d27e05a441808a446e7ee5ea7e04256 | 2 | medium | [
{
"filename": "middleware/openai.go",
"patch": "@@ -18,6 +18,9 @@ import (\n \t\"github.com/ollama/ollama/openai\"\n )\n \n+// maxDecompressedBodySize limits the size of a decompressed request body\n+const maxDecompressedBodySize = 20 << 20\n+\n type BaseWriter struct {\n \tgin.ResponseWriter\n }\n@@ -512,7... |
vercel/next.js | 91,640 | turbo-persistence: fix mmap page alignment and improve error context in MetaFile::open_internal | ### What?
Two changes to `turbopack/crates/turbo-persistence/src/meta_file.rs` and `mmap_helper.rs`:
1. **Bug fix: mmap page alignment** — `MmapOptions::offset()` requires the offset to be page-aligned (typically 4096 bytes), but the code was passing `file.stream_position()` (the byte position after reading the varia... | null | 0f089d5f9bcca29e75fb6aecda543d9c52f696a2 | null | low | [
{
"filename": "turbopack/crates/turbo-persistence/src/meta_file.rs",
"patch": "@@ -229,6 +229,8 @@ pub struct MetaFile {\n /// The offset of the end of the \"used keys\" AMQF data in the the meta file relative to the end\n /// of the header.\n end_of_used_keys_amqf_data_offset: u32,\n+ /// By... |
huggingface/transformers | 45,063 | CB improvements for serving | # What does this PR do?
This PR adds some features that makes serving more efficient. It shouldn't impact `generate_batch` at all:
- Per-request result delivery via callbacks (replaces shared queue contention). Added `_request_callbacks` dict and `register_result_handler(request_id, callback)` — a unified API f... | null | 8213e0d920d52cb00dcade16b6d1f6e952ac0a8c | null | low | [
{
"filename": "src/transformers/generation/continuous_batching/continuous_api.py",
"patch": "@@ -12,11 +12,12 @@\n # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n # See the License for the specific language governing permissions and\n # limitations under the License.\n+import as... |
electron/electron | 50,632 | ci: correct contributing link and add link to ai tool policy | #### Description of Change
This PR fixes the link to our contributing guidelines and adds the link to our ai tool policy that came out since the label was created.
#### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to [x]. -->
- [x] PR description included
- [x] [PR release n... | null | 246aa63910e81be361b6b0cd90045da23062ddbe | null | low | [
{
"filename": ".github/workflows/pull-request-labeled.yml",
"patch": "@@ -72,7 +72,7 @@ jobs:\n \n Hello @${{ github.event.pull_request.user.login }}. Due to the high amount of AI spam PRs we receive, if a PR is detected to be majority AI-generated without disclosure and untested, we will automati... |
ollama/ollama | 14,830 | launch: remove warning for default policy | Incorrectly printing a warning when it shouldn't | bb867c6fdbc4739751f0fc6d8fd2ade20684041d | 870599f5da26977bf5a8e04bd5221f12d5af9907 | 6 | medium | [
{
"filename": "cmd/launch/launch.go",
"patch": "@@ -313,9 +313,9 @@ func LaunchIntegration(ctx context.Context, req IntegrationLaunchRequest) error\n \t}\n \n \tvar policy LaunchPolicy\n+\t// TUI does not set a policy, whereas ollama launch <app> does as it can have flags which change the behavior\n \tif re... |
facebook/react | 29,876 | Execute event handlers in the context of the instance that it's associated with | That way we get owner stacks (native or otherwise) for `console.error` or `console.warn` inside of them.
Since the `reportError` is also called within this context, we also get them for errors thrown within event listeners. You'll also be able to observe this in in the `error` event. Similar to how `onUncaughtError`... | null | 195d5bb99e366889f0905779a0f9432d1624f999 | null | low | [
{
"filename": "packages/react-dom-bindings/src/events/DOMPluginEventSystem.js",
"patch": "@@ -52,6 +52,7 @@ import {\n enableLegacyFBSupport,\n enableCreateEventHandleAPI,\n enableScopeAPI,\n+ enableOwnerStacks,\n } from 'shared/ReactFeatureFlags';\n import {createEventListenerWrapperWithPriority} fr... |
electron/electron | 50,600 | fix: prefill native print dialog options on macOS with OOP printing | #### Description of Change
Chromium enabled out-of-process (OOP) printing by default on macOS in CL:6032774. This broke `webContents.print()` option prefilling (e.g. copies, collate, duplex) in two ways:
1. `ScriptedPrint()` silently aborted because `RegisterSystemPrintClient()` was only called from `GetDefaultPr... | 1e0846749ba6d59ac48802718c48082e8b0bac00 | f41438ff73360a8ac42b45368d1d623f03fb4359 | 10 | medium | [
{
"filename": "patches/chromium/printing.patch",
"patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/brow... |
ollama/ollama | 14,828 | middleware: handle non-JSON error responses gracefully | writeError in both OpenAI and Anthropic middleware writers would return a raw json.SyntaxError when the error payload wasn't valid JSON (e.g. "invalid character 'e' looking for beginning of value"). Fall back to using the raw bytes as the error message instead.
Also use the actual HTTP status code rather than hardco... | 8f45236d09332949aa91774dc9eb46caf2abbbc1 | abf8e8e9c81c00270876c250ad886dfc4a20c8b2 | 12 | medium | [
{
"filename": "middleware/anthropic.go",
"patch": "@@ -34,12 +34,13 @@ func (w *AnthropicWriter) writeError(data []byte) (int, error) {\n \t\tError string `json:\"error\"`\n \t}\n \tif err := json.Unmarshal(data, &errData); err != nil {\n-\t\treturn 0, err\n+\t\t// If the error response isn't valid JSON, us... |
nodejs/node | 53,235 | doc, meta: use markdown rather than HTML in `CONTRIBUTING.md` | This PR removes redudant HTML from the `CONTRIBUTING.md` file, making use of markdown features rather than HTML tags. | null | e30928485e20769c1112c56d7bbabff9366f260e | null | low | [
{
"filename": "CONTRIBUTING.md",
"patch": "@@ -19,7 +19,7 @@ works.\n * [Code of Conduct](#code-of-conduct)\n * [Issues](#issues)\n * [Pull Requests](#pull-requests)\n-* [Developer's Certificate of Origin 1.1](#developers-certificate-of-origin)\n+* [Developer's Certificate of Origin 1.1](#developers-certifi... |
electron/electron | 50,643 | fix: prefill native print dialog options on macOS with OOP printing | Backport of #50600
See that PR for details.
Notes: Fixed an issue where custom options in `webContents.print()` did not prefill the print dialog on macOS. | d1b34d76a87f2c07c64ae5d06db3fd4af84faf7e | bba4374952eb2cac3c4fe86d5743fe0b7299bf2c | 7 | medium | [
{
"filename": "patches/chromium/printing.patch",
"patch": "@@ -68,7 +68,7 @@ index f91857eb0b6ad385721b8224100de26dfdd7dd8d..45e8766fcb8d46d8edc3bf8d21d3f826\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/brow... |
rust-lang/rust | 154,776 | Fix ICE in read_discriminant for enums with non-contiguous discriminants | so, investigation of rust-lang/rust#153758 took a while. it seems, that reverting back to older approach is the best we can do there.
> `read_discriminant `ICEs (unwrap on `None`) when an enum's `valid_range` is wider than its set of actual discriminants. this happens for enums with gaps in their discriminant value... | null | 7f18b253f8d0d3ff468ae16ed7d6f7a4847d6680 | null | low | [
{
"filename": "compiler/rustc_const_eval/src/interpret/discriminant.rs",
"patch": "@@ -121,20 +121,20 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n // discriminants are int-like.\n let discr_val = self.int_to_int_or_float(&tag_val, discr_layout).unwrap();\n ... |
vercel/next.js | 91,524 | turbopack-css: demote recoverable CSS parse warnings to Warning severity | ### What?
Extends the CSS parse warning severity improvements in `turbopack/crates/turbopack-css/src/process.rs`.
Canary (#90025, #91513) already:
- Added a `severity` field to `ParsingIssue` and a `fn severity()` override
- Demoted `UnsupportedPseudoClass` / `UnsupportedPseudoElement` selector errors from `Err... | null | 046e0c4a006c50184c6dff569238bdf1ea1fd55b | null | low | [
{
"filename": "turbopack/crates/turbopack-css/src/process.rs",
"patch": "@@ -3,7 +3,6 @@ use std::sync::{Arc, RwLock};\n use anyhow::{Result, bail};\n use lightningcss::{\n css_modules::{CssModuleExport, Pattern, Segment},\n- error::SelectorError,\n stylesheet::{MinifyOptions, ParserOptions, Prin... |
nodejs/node | 56,327 | src: lock the thread properly in snapshot builder | Otherwise it can crash DCHECK when V8 expects that at least someone is locking the current thread.
Fixes: https://github.com/nodejs/node-v8/issues/294
<!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md
- the commit message ... | 52c644966d78503d63fca3b50b041bce429c8c84 | 7c3aa9fe8573df35fde3315b2d04b84af665f542 | 3 | high | [
{
"filename": "src/node_snapshotable.cc",
"patch": "@@ -962,6 +962,8 @@ ExitCode BuildSnapshotWithoutCodeCache(\n }\n \n Isolate* isolate = setup->isolate();\n+ v8::Locker locker(isolate);\n+\n {\n HandleScope scope(isolate);\n TryCatch bootstrapCatch(isolate);",
"additions": 2,
"dele... |
huggingface/transformers | 44,848 | Fix few issues in Qwen_3_Omni_Moe | # What does this PR do?
Update Qwen3_Omni_Moe, to fix these attribute errors [Qwen3OmniModelIntegrationTests](https://github.com/huggingface/transformers/actions/runs/23230643883/job/67524756897#step:14:1131)
<img width="2292" height="161" alt="image" src="https://github.com/user-attachments/assets/12eeab97-9b80-... | null | 813c7c6b2e84b963a1f14bd28a36ee68986ef2d9 | null | low | [
{
"filename": "src/transformers/generation/utils.py",
"patch": "@@ -688,7 +688,14 @@ def _maybe_initialize_input_ids_for_generation(\n break\n \n if \"inputs_embeds\" in model_kwargs:\n- return torch.ones((batch_size, 0), dtype=torch.long, device=self.device)\n+ ... |
ollama/ollama | 14,825 | anthropic: close thinking block before tool_use when no text in between | ## Summary
Fixes #14816.
When a model emits a `thinking` block followed directly by a `tool_use` block (no `text` block in between), the `StreamConverter.Process()` method was reusing `contentIndex=0` for the `tool_use` `content_block_start`. This caused downstream clients to receive `content_block_start` events with... | null | f3f31a81924a7b3a1b3ad37a1294a22c8d1d192e | null | low | [
{
"filename": "anthropic/anthropic.go",
"patch": "@@ -852,6 +852,19 @@ func (c *StreamConverter) Process(r api.ChatResponse) []StreamEvent {\n \t\t\tcontinue\n \t\t}\n \n+\t\t// Close thinking block if still open (thinking → tool_use without text in between)\n+\t\tif c.thinkingStarted && !c.thinkingDone {\n... |
ollama/ollama | 14,824 | cmd: still populate `ollama ls` when using `ollama run <model:cloud>` | This is temporary until `api/tags` supports cloud natively | 081b9eb423a557cafe57a42060a3be06ef11977d | 9e7ba835da03a99c7b471dfae4b35cd7ef797957 | 2 | medium | [
{
"filename": "cmd/cmd.go",
"patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"io\"\n \t\"log\"\n+\t\"log/slog\"\n \t\"math\"\n \t\"net\"\n \t\"net/http\"\n@@ -43,6 +44,7 @@ import (\n \t\"github.com/ollama/ollama/envconfig\"\n \t\"github.com/ollama/ollama/format\"\n \t\"github.com/ollama/ollama/interna... |
electron/electron | 50,640 | fix: extension service workers not starting beyond first app launch | Backport of #50611
See that PR for details.
Notes: Fixed certain DevTools extension panels not showing without a page reload.
| null | eb80b7c889f92449e6db52bc0573ba3cddf13722 | null | low | [
{
"filename": "shell/browser/extensions/electron_extension_loader.cc",
"patch": "@@ -20,13 +20,15 @@\n #include \"base/time/time.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"extensions/browser/extension_file_task_runner.h\"\n+#include \"extensions/browser/extension_pref_names.h\"... |
facebook/react | 35,891 | [DevTools] Fix ReactDevToolsBackend module for AMD |
## Summary
For apps that use AMD, we need to actually `require()` the ReactDevToolsBackend and load it from the AMD module cache. This adds a check for the case where the `ReactDevToolsBackend` isn't defined globally, and so we load it with `require()`.
## How did you test this change?
Tested through https... | 8374c2abf13fa803233025192b8d7e87de70b087 | bd76b456c127222f59888953348d40cf8f03e3a0 | 30 | medium | [
{
"filename": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -361,6 +361,7 @@ function startServer(\n response.end(\n backendFile.toString() +\n '\\n;' +\n+ `var ReactDevToolsBackend = typeof ReactDevToolsBackend !== \"undefined\" ? ReactDevToolsBackend : require(\"R... |
rust-lang/rust | 154,731 | llvm: Fix array ABI test to not check equality implementation | LLVM has moved memcmp expansion in the pipeline, resulting in the bcmp call being expanded into loads and register comparisons, which breaks the test.
See llvm/llvm-project#77370
Based on history, I believe the test actually intended validate that these arrays were being passed as pointer arguments, which can be ... | null | 07f2ebbd2710491b0a3b354344620cb7f334b541 | null | low | [
{
"filename": "tests/codegen-llvm/array-equality.rs",
"patch": "@@ -1,3 +1,6 @@\n+//@ revisions: llvm-current llvm-next\n+//@[llvm-current] ignore-llvm-version: 23-99\n+//@[llvm-next] min-llvm-version: 23\n //@ compile-flags: -Copt-level=3 -Z merge-functions=disabled\n //@ only-x86_64\n #![crate_type = \"li... |
huggingface/transformers | 45,123 | Fix PP test_ocr_queries | The `test_ocr_queries` assertion value was wrong, even at the initial commit! I'm not sure how tests passed at the time but they're failing now in the CI. This PR fixes the target value! | null | 62a8e1287c24e01581a03f0cf05a4c02322fbcb6 | null | low | [
{
"filename": "tests/models/pp_chart2table/test_processing_pp_chart2table.py",
"patch": "@@ -40,7 +40,7 @@ def test_ocr_queries(self):\n add_generation_prompt=True,\n )\n inputs = processor(images=image_input, text=inputs, return_tensors=\"pt\")\n- self.assertEqual(inputs[... |
ollama/ollama | 14,823 | launch: add compact window for claude code | Leverage `CLAUDE_CODE_AUTO_COMPACT_WINDOW` and set for cloud models for now. Local models will be updated in a follow up.
It currently triggers almost every other message even when set to ~50k tokens. Probably some stuff to figure out there. CC @hoyyeva | af5f7c0a9ea3c2be9fbaab047ae71f6703ef1e5d | 347f17b8d18eb8747662e84abba0599b83c887d0 | 6 | medium | [
{
"filename": "cmd/launch/claude.go",
"patch": "@@ -6,6 +6,7 @@ import (\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\t\"strconv\"\n \n \t\"github.com/ollama/ollama/envconfig\"\n )\n@@ -68,10 +69,18 @@ func (c *Claude) Run(model string, args []string) error {\n \n // modelEnvVars returns Claude ... |
vercel/next.js | 91,645 | [test] Unflake "infinite streaming fetch" test | [Flakiness metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22server-components-hmr-cache%20should%20support%20reading%20from%20an%20infinite%20streaming%20fetch%22%20%40test.status%3Afail%20%40duration%3A%3E%3D1ns&agg_... | null | 88e21cf818786d0f716011bc19e0d0a6306ba569 | null | low | [
{
"filename": "test/development/app-dir/server-components-hmr-cache/server-components-hmr-cache.test.ts",
"patch": "@@ -233,5 +233,5 @@ describe('server-components-hmr-cache', () => {\n expect(next.cliOutput.slice(cliOutputLength)).not.toContain(\n 'Failed to set fetch cache'\n )\n- }, 10_000... |
facebook/react | 35,883 | [compiler] Rename mismatched variable names after type changes |
Rename `state: Environment` to `env: Environment` in
ValidateMemoizedEffectDependencies visitor methods, and
`errorState: Environment` to `env: Environment` in
ValidatePreservedManualMemoization's validateInferredDep.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best revie... | 2e0927dc70d75563192156aa3d504f5e14d3d0c7 | 011cede06811927e46147fa77f2581c3119f42b8 | 1 | high | [
{
"filename": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -230,7 +230,7 @@ function validateInferredDep(\n temporaries: Map<IdentifierId, ManualMemoDependency>,\n declsWithinMemoBlock: Set<DeclarationId>,\n validDepsInMemoBlock: Ar... |
nodejs/node | 47,375 | doc: reserve 116 for Electron 25 | This PR reserves NMV 116 for Electron 25. | null | a00137e7446e022fd235c9456d5e8add1676498b | null | low | [
{
"filename": "doc/abi_version_registry.json",
"patch": "@@ -1,5 +1,6 @@\n {\n \"NODE_MODULE_VERSION\": [\n+ { \"modules\": 116,\"runtime\": \"electron\", \"variant\": \"electron\", \"versions\": \"25\" },\n { \"modules\": 115,\"runtime\": \"node\", \"variant\": \"v8_11.2\", ... |
rust-lang/rust | 154,703 | Fix trailing comma in lifetime suggestion for empty angle brackets | Fixes rust-lang/rust#154600
When suggesting a lifetime parameter (e.g., `'a`) for a type like `Foo<>` (empty angle brackets), the compiler was incorrectly producing `Foo<'a, >` with a trailing comma.
## Root Cause
The `has_existing_params` check used `segment.args` to determine if generic parameters exist. However, ... | 6f751ec1824d98e7b7537d0878849df155ce6116 | 66457ac1dbe3f6fb682b4166b48a007b00df6a01 | 6 | medium | [
{
"filename": "compiler/rustc_resolve/src/late/diagnostics.rs",
"patch": "@@ -4094,6 +4094,7 @@ impl<'ast, 'ra, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {\n };\n \n let mut spans_suggs: Vec<_> = Vec::new();\n+ let source_map = self.r.tcx.sess.source_map();\n let build_... |
ollama/ollama | 14,822 | api/create: always propagate `:cloud` source for cloud models | Otherwise, using `/save` would try to run the local model instead | af5f7c0a9ea3c2be9fbaab047ae71f6703ef1e5d | 081b9eb423a557cafe57a42060a3be06ef11977d | 5 | medium | [
{
"filename": "cmd/cmd_test.go",
"patch": "@@ -1345,6 +1345,20 @@ func TestNewCreateRequest(t *testing.T) {\n \t\t\t\tModel: \"newmodel\",\n \t\t\t},\n \t\t},\n+\t\t{\n+\t\t\t\"explicit cloud model preserves source when parent lacks it\",\n+\t\t\t\"newmodel\",\n+\t\t\trunOptions{\n+\t\t\t\tModel: \"qw... |
ollama/ollama | 14,815 | launch: fix headless --yes integration flow and policy scoping | Wired up some policy changes for how `--yes` should be used.
Now let's us do `ollama launch <app> --yes -- ...` to skip model selection and just use previously set model (if any) | 76925f128465569743368dc77691c29159550dd9 | bb867c6fdbc4739751f0fc6d8fd2ade20684041d | 2 | medium | [
{
"filename": "cmd/launch/command_test.go",
"patch": "@@ -160,6 +160,27 @@ func TestLaunchCmdTUICallback(t *testing.T) {\n \t\t}\n \t})\n \n+\tt.Run(\"--yes flag without integration returns error\", func(t *testing.T) {\n+\t\ttuiCalled := false\n+\t\tmockTUI := func(cmd *cobra.Command) {\n+\t\t\ttuiCalled =... |
electron/electron | 50,611 | fix: extension service workers not starting beyond first app launch | #### Description of Change
Fixes https://github.com/electron/electron/issues/41613
##### Before this patch
When an extension was loaded into an app for the very first time, its service worker would start.
When the same extension was loaded on subsequent app launches, the service worker would no longer start.
... | 4eff8f20f2f64fa7b808bccd5ca0c4bbca8261a4 | 156a4e610c7f2171ce2f6b484fd2f78253c17820 | 24 | medium | [
{
"filename": "shell/browser/extensions/electron_extension_loader.cc",
"patch": "@@ -20,13 +20,15 @@\n #include \"base/time/time.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"extensions/browser/extension_file_task_runner.h\"\n+#include \"extensions/browser/extension_pref_names.h\"... |
facebook/react | 35,877 | [compiler] Phase 8: Add multi-error test fixture and update plan |
Add test fixture demonstrating fault tolerance: the compiler now reports
both a mutation error and a ref access error in the same function, where
previously only one would be reported before bailing out.
Update plan doc to mark all phases as complete.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](h... | 9b2d8013eed2b02193aebc37a614b37853ada214 | 59d7c27087fae2b7abbb360187b473068c4bcaaa | 1 | medium | [
{
"filename": "compiler/fault-tolerance-overview.md",
"patch": "@@ -279,27 +279,27 @@ Walk through `runWithEnvironment` and wrap each pass call site. This is the inte\n \n ### Phase 8: Testing\n \n-- [ ] **8.1 Update existing `error.todo-*` fixture expectations**\n+- [x] **8.1 Update existing `error.todo-*`... |
vercel/next.js | 91,646 | [test] Unflake `deterministic build - changing deployment id` test | [Test duration metric](https://app.datadoghq.com/ci/test/runs?query=test_level%3Atest%20%40git.repository.id%3A%22github.com%2Fvercel%2Fnext.js%22%20%40test.name%3A%22deterministic%20build%20-%20changing%20deployment%20id%20build%20output%20API%20-%20standard%20builder%20should%20produce%20identical%20build%20outputs%2... | null | 1e40c7c98727f0c5a30a73721a71b192afd6335e | null | low | [
{
"filename": "test/production/deterministic-build/deployment-id.test.ts",
"patch": "@@ -226,10 +226,10 @@ const FILES = {\n })\n \n describe.each([\n- { test: 'standard', mode: 'builder' },\n- { test: 'standard', mode: 'adapter' },\n- { test: 'cacheComponents', mode: 'builder' },\n- ... |
facebook/react | 35,873 | [compiler] Phase 1: Add error accumulation infrastructure to Environment |
Add error accumulation methods to the Environment class:
- #errors field to accumulate CompilerErrors across passes
- recordError() to record a single diagnostic (throws if Invariant)
- recordErrors() to record all diagnostics from a CompilerError
- hasErrors() to check if any errors have been recorded
- aggregateErro... | 0dbb43bc57d27a79ecf4c78508089a36bd08ef5d | eca778cf8bf88b2a62a5244f94a0084593ffbf14 | 1 | medium | [
{
"filename": "compiler/fault-tolerance-overview.md",
"patch": "@@ -31,7 +31,7 @@ Note that some errors may continue to cause an eager bailout:\n \n Add error accumulation to the `Environment` class so that any pass can record errors during compilation without halting.\n \n-- [ ] **1.1 Add error accumulator... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.