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
facebook/react
35,351
[Flight] Add extra loop protection
In case we get into loops.
894bc73cb493487c48d57f4508e6278db58e673a
b45bb335db5b3632329d6b41e5a790ff6f1a7ff7
2
high
[ { "filename": "packages/react-server/src/ReactFlightReplyServer.js", "patch": "@@ -132,8 +132,10 @@ ReactPromise.prototype.then = function <T>(\n let inspectedValue = chunk.value;\n // Recursively check if the value is itself a ReactPromise and if so if it points\n // back to itself....
electron/electron
50,500
fix: crash calling OSR shared texture release() after texture GC'd
Backport of #50473 See that PR for details. Notes: Fixed a crash when calling an offscreen shared texture's `release()` after the texture object was garbage collected.
e094b3939edf4135d3907968f7ec5179f5f46b93
d2841683c1b3bd3d23946a0bcfd6bb4e8daf77df
14
medium
[ { "filename": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -150,9 +150,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent...
huggingface/transformers
44,839
Correct code block formatting in weightconverter.md
Fix formatting of code block in weightconverter.md # What does this PR do? <!-- 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 it's a great title that fully reflects the extent of you...
null
529504b2fa98970c6c44d3fafaeb07a39c40e7ea
null
low
[ { "filename": "docs/source/en/weightconverter.md", "patch": "@@ -66,7 +66,7 @@ model.layers.0.self_attn.k_proj.weight → model.layers.0.self_attn.k_proj.wei\n model.layers.0.mlp.gate_proj.weight → model.layers.0.mlp.gate_proj.weight\n model.layers.0.mlp.up_proj.weight → model.layers.0.mlp.up_pr...
nodejs/node
62,282
test_runner: set non-zero exit code when suite errors occur
Fixes #58687
null
f68824a6805a82bd017004443430cf40c3efaf19
null
low
[ { "filename": "lib/internal/test_runner/utils.js", "patch": "@@ -384,6 +384,9 @@ function countCompletedTest(test, harness = test.root.harness) {\n }\n if (test.reportedType === 'suite') {\n harness.counters.suites++;\n+ if (!test.passed) {\n+ harness.success = false;\n+ }\n return;\n...
rust-lang/rust
153,790
Fix regression when dealing with generics/values with unresolved inference
Follow up for rust-lang/rust#151703, fixing regression caused in rollup rust-lang/rust#152825 Forgot to handle generics & unresolved inference variables (as in `get_safe_transmute_error_and_reason`) in my previous PR. This followup checks for them before trying to normalize. I am not completely sure its right app...
null
68d2666fc2db1a0d86bc88e1b955cd358f2961cc
null
low
[ { "filename": "compiler/rustc_trait_selection/src/error_reporting/traits/fulfillment_errors.rs", "patch": "@@ -2878,6 +2878,10 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n trait_predicate: ty::PolyTraitPredicate<'tcx>,\n root_obligation: &PredicateObligation<'tcx>,\n ) -> (PredicateObliga...
ollama/ollama
13,971
Update installation command for OpenCode CLI
This pull request updates the installation instructions for the OpenCode CLI in the documentation to use the correct installation script URL. Documentation update: * Updated the installation command in `docs/integrations/opencode.mdx` to use `https://opencode.ai/install` instead of `https://opencode.ai/install.sh...
5267d31d56699446626ca45359302fe362920b05
aa23d8ecd2a3ceee4ba13c025b5972bc7dfcb1eb
11
medium
[ { "filename": "docs/integrations/opencode.mdx", "patch": "@@ -9,7 +9,7 @@ OpenCode is an open-source AI coding assistant that runs in your terminal.\n Install the [OpenCode CLI](https://opencode.ai):\n \n ```bash\n-curl -fsSL https://opencode.ai/install.sh | bash\n+curl -fsSL https://opencode.ai/install | b...
electron/electron
50,501
fix: crash calling OSR shared texture release() after texture GC'd
Backport of #50473 See that PR for details. Notes: Fixed a crash when calling an offscreen shared texture's `release()` after the texture object was garbage collected.
44bc2c8cef90c347c07060d6c9080bbe0f351dfb
3dcb641a9957bfeec894f7de8b644621baaa2f6d
14
medium
[ { "filename": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -153,9 +153,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent...
vercel/next.js
91,271
Skip dimming when `--inspect` is used
When the Node.js inspector is active (e.g. via `next dev --inspect`), dimming wraps console arguments in a format string which defeats inspector affordances such as collapsible objects and clickable/linkified stack traces. This adds an early return in `convertToDimmedArgs` that skips dimming entirely when `inspector...
null
254478317305c17871db277808eecd81ea6dd634
null
low
[ { "filename": "packages/next/src/server/node-environment-extensions/console-dim.external.test.ts", "patch": "@@ -357,4 +357,61 @@ describe('console-exit patches', () => {\n ])\n })\n })\n+\n+ describe('inspector-aware dimming', () => {\n+ it('should skip dimming when inspector is open', asyn...
facebook/react
34,547
Fix indices of hooks in devtools when using useSyncExternalStore
## Summary This PR updates getChangedHooksIndices to account for the fact that useSyncExternalStore internally mounts two hooks, while DevTools should treat it as a single user-facing hook. It introduces a helper isUseSyncExternalStoreHook to detect this case and adjust iteration so the extra internal hook is ski...
21272a680f07cb69873eb3668e7baaebfcf05606
39c6545cef85b5251e519080fd315bff728d87de
9
medium
[ { "filename": "packages/react-devtools-shared/src/backend/fiber/renderer.js", "patch": "@@ -1913,6 +1913,20 @@ export function attach(\n return false;\n }\n \n+ function isUseSyncExternalStoreHook(hookObject: any): boolean {\n+ const queue = hookObject.queue;\n+ if (!queue) {\n+ return fal...
nodejs/node
62,281
src,sqlite: fix filterFunc dangling reference
Fixes #62276
null
40c625b0fd38c85081303c62cbb99a8a22ed633f
null
low
[ { "filename": "src/node_sqlite.cc", "patch": "@@ -2157,7 +2157,8 @@ void DatabaseSync::ApplyChangeset(const FunctionCallbackInfo<Value>& args) {\n \n Local<Function> filterFunc = filterValue.As<Function>();\n \n- context.filterCallback = [&](std::string_view item) -> bool {\n+ context.filter...
vercel/next.js
91,256
[test] Deflake `instant-navs-devtools`
Mostly using `elementByCss` instead of `browser.eval` to use built-in retry logic as well as ensuring we assert on accessible content.
a65c3c86e762623278d1d9aca317c0afbc90bce0
efcfe05a0b1ece7695e091f906b56f127aecdab2
10
medium
[ { "filename": "test/development/app-dir/instant-navs-devtools/instant-navs-devtools.test.ts", "patch": "@@ -1,114 +1,72 @@\n import { nextTestSetup } from 'e2e-utils'\n-import {\n- retry,\n- waitForDevToolsIndicator,\n- toggleDevToolsIndicatorPopover,\n-} from 'next-test-utils'\n+import { retry, toggleDe...
huggingface/transformers
44,636
feat(ci): added a network debug report
# What does this PR do? - Adds an `httpx` tracer to gather metrics about network calls - Collect and store metrics and generates an artifact in CI - Can be used locally with `DEBUG_NETWORK` - Activated in CircleCI example of local run: ``` ✗ DEBUG_NETWORK=1 HUGGINGFACE_CO_STAGING=1 pytest -svx tests/utils...
null
2513237cbee84bae381c56c672b95b0a221ba51b
null
low
[ { "filename": ".circleci/create_circleci_config.py", "patch": "@@ -30,6 +30,7 @@\n # will be adjust in `CircleCIJob.to_dict`.\n \"RUN_FLAKY\": True,\n \"DISABLE_SAFETENSORS_CONVERSION\": True,\n+ \"NETWORK_DEBUG_REPORT\": True,\n }\n # Disable the use of {\"s\": None} as the output is way too...
electron/electron
50,502
fix: crash calling OSR shared texture release() after texture GC'd
Backport of #50473 See that PR for details. Notes: Fixed a crash when calling an offscreen shared texture's `release()` after the texture object was garbage collected.
17ddcbf01fc73bab772b757259e54aa652da4330
119127b23a06a63a1d3aa9ba4de6355feb130801
23
medium
[ { "filename": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -153,9 +153,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent...
ollama/ollama
13,651
Linux: switch to zstd compression
With the upcoming addition of MLX, the linux bundle will exceed the maximum github artifact size of 2G. This change will bring the size back down. The install.sh changes support backwards compatibility for prior versions thus should be safe to merge concurrently with this change. Before: ``` -rw-r--r-- 1 da...
null
34d0c55ea57e24d04b57e792f91a91eaa18ad9ce
null
low
[ { "filename": ".github/workflows/release.yaml", "patch": "@@ -68,6 +68,7 @@ jobs:\n name: bundles-darwin\n path: |\n dist/*.tgz\n+ dist/*.tar.zst\n dist/*.zip\n dist/*.dmg\n \n@@ -392,13 +393,13 @@ jobs:\n done\n - run: |\n ...
ollama/ollama
13,937
cmd/config: Use envconfig.Host() for base API in launch config packages
Closes: https://github.com/ollama/ollama/issues/13936
3ab842b0f5033b0074f999fa25ce97a1c0ec9b29
7b62c410605a915e68e44a696f0b2289d1da09eb
3
medium
[ { "filename": "cmd/config/claude.go", "patch": "@@ -6,6 +6,8 @@ import (\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"runtime\"\n+\n+\t\"github.com/ollama/ollama/envconfig\"\n )\n \n // Claude implements Runner for Claude Code integration\n@@ -50,7 +52,7 @@ func (c *Claude) Run(model string) error {\n \tcmd....
huggingface/transformers
44,508
Fix unexpected `position_ids` keys when loading OwlViT models
# What does this PR do? Older OwlViT checkpoints stored `position_ids` as buffers in the text and vision embedding modules. These tensors are simple integer ranges (0 → max sequence length) and are now recomputed dynamically during initialization. As a result, when loading models such as `google/owlvit-base-patch...
83a6c5b577cafa607d59e78af4de86592b9903ee
d00640b6e60679c117bc8530a25bb917b08c8573
9
medium
[ { "filename": "src/transformers/models/owlv2/modeling_owlv2.py", "patch": "@@ -539,6 +539,10 @@ class Owlv2PreTrainedModel(PreTrainedModel):\n \"hidden_states\": Owlv2EncoderLayer,\n \"attentions\": Owlv2Attention,\n }\n+ _keys_to_ignore_on_load_unexpected = [\n+ r\".*text_mode...
electron/electron
50,499
fix: crash calling OSR shared texture release() after texture GC'd
Backport of #50473 See that PR for details. Notes: Fixed a crash when calling an offscreen shared texture's `release()` after the texture object was garbage collected.
e6928c13198c854aa014c319d72eea599e2e0ee7
11730047394233e70743c52567e17f4c3b2dc9fc
12
medium
[ { "filename": "shell/common/gin_converters/osr_converter.cc", "patch": "@@ -151,9 +151,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent...
rust-lang/rust
154,482
Update cargo submodule
<!-- homu-ignore:start --> *[View all comments](https://triagebot.infra.rust-lang.org/gh-comments/rust-lang/rust/pull/154482)* <!-- homu-ignore:end --> 11 commits in e84cb639edfea2c42efd563b72a9be0cc5de6523..888f675344eb1cf2308fd53183e667bdd2c58e51 2026-03-21 01:27:07 +0000 to 2026-03-30 16:59:25 +0000 - chore: bump...
null
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
null
low
[ { "filename": "src/tools/cargo", "patch": "@@ -1 +1 @@\n-Subproject commit e84cb639edfea2c42efd563b72a9be0cc5de6523\n+Subproject commit 888f675344eb1cf2308fd53183e667bdd2c58e51", "additions": 1, "deletions": 1 } ]
nodejs/node
62,280
build: fix timezone-update path references
Path `tools/timezone-update.yml` does not exist.
null
27501b48923036c1d0415122f7d1278817834478
null
low
[ { "filename": ".github/workflows/timezone-update.yml", "patch": "@@ -57,7 +57,7 @@ jobs:\n with:\n author: Node.js GitHub Bot <github-bot@iojs.org>\n body: |\n- This PR was generated by tools/timezone-update.yml.\n+ This PR was generated by `.github/workflow...
facebook/react
29,028
Use `FormData` `submitter` parameter
## Summary Fixes #29018 Fixes #34944 Closes https://github.com/facebook/react/pull/34990 Closes https://github.com/facebook/react/pull/35354 Rather than continuing to maintain/fix an incomplete polyfill (e.g. #28056, #34990), just pass the `submitter` to the `FormData` constructor, since it is now [widely avai...
null
65eec428c40d542d4d5a9c1af5c3f406aecf3440
null
low
[ { "filename": "packages/react-dom-bindings/src/events/plugins/FormActionEventPlugin.js", "patch": "@@ -45,30 +45,6 @@ function coerceFormActionProp(\n }\n }\n \n-function createFormDataWithSubmitter(\n- form: HTMLFormElement,\n- submitter: HTMLInputElement | HTMLButtonElement,\n-) {\n- // The submitter...
vercel/next.js
91,314
Delete blob files during compaction when entries are superseded
### What? During compaction in `turbo-persistence`, when entries are dropped (superseded by newer values or pruned by tombstones), blob files referenced by those entries are now marked for deletion. ### Why? Previously, compaction would merge SST files and correctly drop stale entries, but blob files referenced by t...
null
112666134c49a95d1056409a3cd185e54cff9584
null
low
[ { "filename": "turbopack/crates/turbo-persistence/src/db.rs", "patch": "@@ -1085,9 +1085,7 @@ impl<S: ParallelScheduler, const FAMILIES: usize> TurboPersistence<S, FAMILIES>\n \n let iter = MergeIter::new(iters.into_iter())?;\n \n- // TODO figure out ho...
huggingface/transformers
44,831
Fix loading issue in Sam3
# What does this PR do? Fix loading in Sam3 which currently doesn't match the state dict keys from checkpoint. Adding a correct base model prefix will add it to all state dict keys, making the ckpt load-able <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR ...
2f896be7272cefb92869bd27aefec2f78d0d27f4
779cd2d6923c9d264d46136e90c58f8bafade6ab
16
medium
[ { "filename": "src/transformers/models/sam3_tracker_video/modeling_sam3_tracker_video.py", "patch": "@@ -683,7 +683,7 @@ class Sam3TrackerVideoSegmentationOutput(ModelOutput):\n @auto_docstring\n class Sam3TrackerVideoPreTrainedModel(PreTrainedModel):\n config_class = Sam3TrackerVideoConfig\n- base_m...
facebook/react
35,347
[test] Add tests for cyclic arrays in Flight and Flight Reply
We already had tests for cyclic objects, but not for cyclic arrays.
ba5b843692519a226347aecfb789d90fcb24b4bc
454fc41fc7d50f8abbcfb9595b01e8ea8bfcc265
5
medium
[ { "filename": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -724,6 +724,25 @@ describe('ReactFlight', () => {\n });\n });\n \n+ it('can transport cyclic arrays', async () => {\n+ function ComponentClient({prop, obj}) {\n+ expect(prop[1]).toBe(prop);\n+ expect(pr...
vercel/next.js
91,329
[test] Resolve stale merge issues
Caused by https://github.com/vercel/next.js/pull/91207 and https://github.com/vercel/next.js/pull/91256/
efcfe05a0b1ece7695e091f906b56f127aecdab2
75038781a8ced45815c5d34ef866e2930e41810e
4
medium
[ { "filename": "test/development/app-dir/instant-navs-devtools/instant-navs-devtools.test.ts", "patch": "@@ -42,14 +42,18 @@ describe('instant-nav-panel', () => {\n return browser.elementByCss('#_next-devtools-panel-close').click()\n }\n \n+ async function hasInstantNavPanelOpen(browser: Playwright): ...
ollama/ollama
13,905
parsers/ministral: fix nested tool call parsing by counting brace nesting
This PR fixes parsing error in ministral. - Implement `findJSONEnd` to correctly identify the end of tool arguments - Add support for nested objects, arrays, and escaped characters in strings - Improve buffer management to prevent data loss after tool calls - Add tests for various JSON edge cases Fixes #13705
01cf7445f35e9a0628d0b49655541a7afeee7a64
e0f03790b1a9d77c6ff39de21a4600832a0d41c5
27
medium
[ { "filename": "model/parsers/ministral.go", "patch": "@@ -4,6 +4,7 @@ import (\n \t\"encoding/json\"\n \t\"fmt\"\n \t\"strings\"\n+\t\"unicode\"\n \n \t\"github.com/ollama/ollama/api\"\n )\n@@ -17,12 +18,34 @@ const (\n \tministralCollectingToolArgs\n )\n \n+// ministralEvent represents an event emitted dur...
electron/electron
50,491
fix: crash in clipboard.readImage() on malformed image data
Backport of #50475 See that PR for details. Notes: Fixed a crash in `clipboard.readImage()` when the clipboard contains malformed image data.
null
4aa36102d7916722e2178e27ac587f8a89de1d03
null
low
[ { "filename": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -248,7 +248,11 @@ gfx::Image Clipboard::ReadImage(gin::Arguments* const args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bit...
ollama/ollama
13,922
cmd: clawdbot fixes
b8e8ef8929629ad91c774415b53cbec233fb54c8
3ab842b0f5033b0074f999fa25ce97a1c0ec9b29
1
medium
[ { "filename": "cmd/config/clawdbot.go", "patch": "@@ -1,17 +1,22 @@\n package config\n \n import (\n+\t\"bytes\"\n \t\"encoding/json\"\n \t\"fmt\"\n+\t\"io\"\n \t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n+\t\"strings\"\n )\n \n type Clawdbot struct{}\n \n func (c *Clawdbot) String() string { return \"Cl...
rust-lang/rust
154,221
`vec::as_mut_slice()`: use lowercase "isize" in safety comment
To match other references to that type <!-- 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 autom...
null
4c86e7c565d34bc23ad26d6beef80b1d21fa8f03
null
low
[ { "filename": "library/alloc/src/vec/mod.rs", "patch": "@@ -1853,7 +1853,7 @@ impl<T, A: Allocator> Vec<T, A> {\n // SAFETY: `slice::from_raw_parts_mut` requires pointee is a contiguous, aligned buffer of\n // size `len` containing properly-initialized `T`s. Data must not be accessed through...
nodejs/node
62,120
doc: test and test-only targets do not run linter anymore
`make test` and `make test-only` targets no longer runs linters. This commit updates the inline comments and building doc to reflect reality. Fixes: https://github.com/nodejs/node/issues/58606
null
9fc6b64c12eaf4569446f1cec9a119c16fc6ab39
null
low
[ { "filename": "BUILDING.md", "patch": "@@ -404,11 +404,9 @@ If you are running tests before submitting a pull request, use:\n make -j4 test\n ```\n \n-`make -j4 test` does a full check on the codebase, including running linters and\n-documentation tests.\n+`make -j4 test` does a full check on the codebase, ...
ollama/ollama
13,921
cmd: ollama launch clawdbot
aae6ecbaffb1909018f3d9e289166c50a2eaffc5
b8e8ef8929629ad91c774415b53cbec233fb54c8
10
medium
[ { "filename": "cmd/config/clawdbot.go", "patch": "@@ -0,0 +1,167 @@\n+package config\n+\n+import (\n+\t\"encoding/json\"\n+\t\"fmt\"\n+\t\"os\"\n+\t\"os/exec\"\n+\t\"path/filepath\"\n+)\n+\n+type Clawdbot struct{}\n+\n+func (c *Clawdbot) String() string { return \"Clawdbot\" }\n+\n+func (c *Clawdbot) Run(mo...
facebook/react
35,380
Skip hydration errors when a view transition has been applied
When the Fizz runtime runs a view-transition we apply `view-transition-name` and `view-transition-class` to the `style`. These can be observed by Fiber when hydrating which incorrectly leads to hydration errors. More over, even after we remove them, the `style` attribute has now been normalized which we are unable t...
null
f93b9fd44b576c1e0233f854cd986cbf08b7a5c4
null
low
[ { "filename": "packages/react-dom-bindings/src/client/ReactDOMComponent.js", "patch": "@@ -235,17 +235,60 @@ function warnForPropDifference(\n }\n }\n \n+function hasViewTransition(htmlElement: HTMLElement): boolean {\n+ return !!(\n+ htmlElement.getAttribute('vt-share') ||\n+ htmlElement.getAttrib...
vercel/next.js
91,327
re-enable RDC deployment tests
Flag has been re-enabled and is attached to the test team.
5ef117cdf38cdffa682ef4e33b3c3fc7458e8a47
afe3993eb998d02c9c4f094c1a9769b14b2ad5a0
26
medium
[ { "filename": "test/deploy-tests-manifest.json", "patch": "@@ -86,13 +86,6 @@\n },\n \"test/e2e/middleware-rewrites/test/index.test.ts\": {\n \"failed\": [\"Middleware Rewrite should handle catch-all rewrite correctly\"]\n- },\n- \"test/e2e/app-dir/resume-data-cache/resume-data-cache.tes...
electron/electron
50,475
fix: crash in clipboard.readImage() on malformed image data
`gfx::PNGCodec::Decode()` returns a null `SkBitmap` when it cannot decode the clipboard contents as a PNG. Passing that null bitmap to `gfx::Image::CreateFrom1xBitmap()` triggers a crash. This PR adds a null check and returns an empty `gfx::Image` instead, matching the existing pattern in `shell/common/skia_util.cc`. ...
null
a48f03fb8d03933547281ddb2dbb6c6b9e705287
null
low
[ { "filename": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -378,7 +378,11 @@ gfx::Image Clipboard::ReadImage(gin::Arguments* const args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bit...
nodejs/node
62,093
tools: add eslint-plugin-regexp
<!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-requests.md#commit-message-guidelines For code changes: 1. Inc...
e86679de3e64d0c55018da9b102dafbadddf7f81
bd8522a2c9b35ec9d6ab585781be3d1a1a9c0aaa
14
medium
[ { "filename": "eslint.config.mjs", "patch": "@@ -20,6 +20,7 @@ const { default: js } = await importEslintTool('@eslint/js');\n const { default: babelEslintParser } = await importEslintTool('@babel/eslint-parser');\n const babelPluginSyntaxImportSource = resolveEslintTool('@babel/plugin-syntax-import-source'...
facebook/react
35,369
Improve cyclic thenable detection in ReactFlightReplyServer
## Summary This PR improves cyclic thenable detection in `ReactFlightReplyServer.js`. Fixes #35368. The previous fix only detected direct self-references (`inspectedValue === chunk`) and relied on the `cycleProtection` counter to eventually bail out of longer cycles. This change keeps the existing MAX_THENABLE_CYCL...
b45bb335db5b3632329d6b41e5a790ff6f1a7ff7
b731fe28cc492cb36c51c89866f5b63a3ffae2aa
7
medium
[ { "filename": "packages/react-server/src/ReactFlightReplyServer.js", "patch": "@@ -133,14 +133,20 @@ ReactPromise.prototype.then = function <T>(\n // Recursively check if the value is itself a ReactPromise and if so if it points\n // back to itself. This helps catch recursive thenables early...
huggingface/transformers
44,526
Add GGUF support for MiniMax-M2.1 model
# What does this PR do? Add GGUF loading support for MiniMax-M2.1 (456B MoE) model. MiniMax-M2.1 is a large Mixture-of-Experts model with 456B total parameters (45.9B active), 256 experts and 8 experts per token. This PR enables loading its GGUF-quantized checkpoints (e.g. [unsloth/MiniMax-M2.1-GGUF](https://hugg...
null
aa57e1cd2fd0ede5ffbc70db3f193943b8f3e720
null
low
[ { "filename": "src/transformers/integrations/ggml.py", "patch": "@@ -287,6 +287,24 @@\n \"attention.layer_norm_rms_epsilon\": \"rms_norm_eps\",\n \"vocab_size\": \"vocab_size\",\n },\n+ \"minimax_m2\": {\n+ \"context_length\": \"max_position_embeddings\",\n+ \"block_coun...
rust-lang/rust
144,987
Enable f16 and f128 on targets that were fixed in LLVM21
LLVM21 fixed the new float types on a number of targets: * SystemZ gained f16 support https://github.com/llvm/llvm-project/pull/109164 * Hexagon now uses soft f16 to avoid recursion bugs https://github.com/llvm/llvm-project/pull/130977 * Mips now correctly handles f128 (actually since LLVM20) https://github.com/...
null
660bf919dc5dec96d319cce59702b0355bd8452c
null
low
[ { "filename": "compiler/rustc_codegen_llvm/src/llvm_util.rs", "patch": "@@ -377,24 +377,25 @@ fn update_target_reliable_float_cfg(sess: &Session, cfg: &mut TargetConfig) {\n let target_abi = sess.target.options.abi.as_ref();\n let target_pointer_width = sess.target.pointer_width;\n let version =...
ollama/ollama
13,731
test: fix tools_test.go for ToolCallFunctionArguments API change
This PR fixes compile error of `tools_test.go` fixes: #13729
null
55d0b6e8b9498a621565c93625b7e29c96812f21
null
low
[ { "filename": "integration/tools_test.go", "patch": "@@ -131,7 +131,7 @@ func TestAPIToolCalling(t *testing.T) {\n \t\t\t\t\tt.Errorf(\"unexpected tool called: got %q want %q\", lastToolCall.Function.Name, \"get_weather\")\n \t\t\t\t}\n \n-\t\t\t\tif _, ok := lastToolCall.Function.Arguments[\"location\"]; !...
electron/electron
50,494
fix: crash in clipboard.readImage() on malformed image data
Backport of #50475 See that PR for details. Notes: Fixed a crash in `clipboard.readImage()` when the clipboard contains malformed image data.
1fffaeb481489afdb8c18bb1caf69b2977b78f95
a806e3890fd9e5fc0439eec957a7033e81c663fb
25
medium
[ { "filename": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -378,7 +378,11 @@ gfx::Image Clipboard::ReadImage(gin::Arguments* const args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bit...
vercel/next.js
91,306
Use keyed cells for used_exports and export_circuit_breakers in BindingUsageInfo
## What? Apply the `cell = "keyed"` pattern to `used_exports` (`FxHashMap`) and `export_circuit_breakers` (`FxHashSet`) in `BindingUsageInfo`, matching the existing pattern already used for `unused_references`. ## Why? Previously, `used_exports` and `export_circuit_breakers` were stored as plain inline collections w...
null
00067f40bdcf642ce69b8110819bf114d256c228
null
low
[ { "filename": "turbopack/crates/turbopack-core/src/module_graph/binding_usage_info.rs", "patch": "@@ -17,15 +17,21 @@ use crate::{\n resolve::{ExportUsage, ImportUsage},\n };\n \n+#[turbo_tasks::value(transparent, cell = \"keyed\")]\n+pub struct UsedExportsMap(FxHashMap<ResolvedVc<Box<dyn Module>>, Modu...
facebook/react
35,361
[test] Exclude repository root from assertions
The repository root was hidden in string length assertions. Those broke once you tested React deeper in your filesystem. Added the repo root behind a global `__REACT_ROOT_PATH_TEST__` since that's used in a couple of places. Defining that for each test makes it annoying to move test file around.
894bc73cb493487c48d57f4508e6278db58e673a
ba5b843692519a226347aecfb789d90fcb24b4bc
6
medium
[ { "filename": ".eslintrc.js", "patch": "@@ -635,6 +635,7 @@ module.exports = {\n FocusOptions: 'readonly',\n OptionalEffectTiming: 'readonly',\n \n+ __REACT_ROOT_PATH_TEST__: 'readonly',\n spyOnDev: 'readonly',\n spyOnDevAndProd: 'readonly',\n spyOnProd: 'readonly',", "additions":...
nodejs/node
62,113
stream: preserve error over AbortError in pipeline
Fixes: https://github.com/nodejs/node/issues/62089 Errors thrown inside `Readable.map()` when used as a pipeline stage with an infinite or fast source stream are swallowed and replaced by `AbortError: The operation was aborted`. When the map callback throws, the map's internal pump exits its `for await` loop over...
null
4d2d6de1b6b9a50c19bee51715e4ee242d80ffd7
null
low
[ { "filename": "lib/internal/streams/pipeline.js", "patch": "@@ -227,7 +227,7 @@ function pipelineImpl(streams, callback, opts) {\n }\n \n function finishImpl(err, final) {\n- if (err && (!error || error.code === 'ERR_STREAM_PREMATURE_CLOSE')) {\n+ if (err && (!error || error.code === 'ERR_STREAM_P...
huggingface/transformers
44,766
support xxxFast alias in v5 tokenizers
for when remote code tries to import from `tokenization_xxx_fast`
39f751a538ca67932cab53e6eb5763243674ae2c
7cd2dd86ce3b2e598535f9aa1a40f79d6894f80a
25
medium
[ { "filename": "src/transformers/models/auto/tokenization_auto.py", "patch": "@@ -16,6 +16,7 @@\n import importlib\n import json\n import os\n+import sys\n from collections import OrderedDict\n from typing import Any\n \n@@ -410,7 +411,13 @@ def tokenizer_class_from_name(class_name: str) -> type[Any] | None:...
ollama/ollama
13,894
cmd: fix opencode config
199c41e16edbbf90c38a0d3117c70070e410db48
465d124183e5a57cbd9a301b91c2bb633d353935
17
medium
[ { "filename": "cmd/config/opencode.go", "patch": "@@ -105,17 +105,26 @@ func (o *OpenCode) Edit(modelList []string) error {\n \n \tfor name, cfg := range models {\n \t\tif cfgMap, ok := cfg.(map[string]any); ok {\n-\t\t\tif displayName, ok := cfgMap[\"name\"].(string); ok {\n-\t\t\t\tif strings.HasSuffix(di...
rust-lang/rust
145,412
Windows: Replace `GetThreadId`+`GetCurrentThread` with `GetCurrentThreadId`
Reference: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-getcurrentthreadid <!-- homu-ignore:start --> I added this to Miri but forgot to make the change in std. r? @ChrisDenton <!-- homu-ignore:end -->
null
7c93af02e3b77f1f82a02269183500a4f45b7b7e
null
low
[ { "filename": "library/std/src/sys/pal/windows/c/bindings.txt", "patch": "@@ -2158,6 +2158,7 @@ GetCurrentDirectoryW\n GetCurrentProcess\n GetCurrentProcessId\n GetCurrentThread\n+GetCurrentThreadId\n GetEnvironmentStringsW\n GetEnvironmentVariableW\n GetExitCodeProcess\n@@ -2185,7 +2186,6 @@ GetSystemInfo\...
electron/electron
50,493
fix: crash in clipboard.readImage() on malformed image data
Backport of #50475 See that PR for details. Notes: Fixed a crash in `clipboard.readImage()` when the clipboard contains malformed image data.
null
be37adefd08f882e3f1fb8403d2d9e92c3009d56
null
low
[ { "filename": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -245,7 +245,11 @@ gfx::Image Clipboard::ReadImage(gin_helper::Arguments* args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bi...
facebook/react
35,353
Upgrade nextjs for compiler playground
Upgrading due to CVE-2025-55183 and CVE-2025-67779
55480b4d228986e502f4651f8e53a6f264a1858e
b061b597f77c979531a3f2c9c04ba435342b0043
14
medium
[ { "filename": "compiler/apps/playground/package.json", "patch": "@@ -35,13 +35,13 @@\n \"lru-cache\": \"^11.2.2\",\n \"lz-string\": \"^1.5.0\",\n \"monaco-editor\": \"^0.52.0\",\n- \"next\": \"15.5.7\",\n+ \"next\": \"15.5.9\",\n \"notistack\": \"^3.0.0-alpha.7\",\n \"prettier\": \...
ollama/ollama
13,892
cmd: add fallback for claude
199c41e16edbbf90c38a0d3117c70070e410db48
d310e56fa38568199a603b61f2fe46fe79e113bd
16
medium
[ { "filename": "cmd/config/claude.go", "patch": "@@ -4,6 +4,8 @@ import (\n \t\"fmt\"\n \t\"os\"\n \t\"os/exec\"\n+\t\"path/filepath\"\n+\t\"runtime\"\n )\n \n // Claude implements Runner for Claude Code integration\n@@ -18,12 +20,32 @@ func (c *Claude) args(model string) []string {\n \treturn nil\n }\n \n+f...
vercel/next.js
91,308
[test] Show decoded binary WebSocket messages in traces
Follow-up to https://github.com/vercel/next.js/pull/91266 Showing the Buffer is just noise. Now we print it decoded which shows us the Flight data from the debug channel: <img width="1664" height="842" alt="CleanShot 2026-03-13 at 13 42 08@2x" src="https://github.com/user-attachments/assets/086198fa-e48f-4af7-bd34-...
0b1604a8c41c8014e958b9304d21c487b4ef247d
156307e3a32675d7d64fc8adcf61796eb94a89fb
29
medium
[ { "filename": "test/lib/browsers/playwright.ts", "patch": "@@ -318,15 +318,17 @@ export class Playwright<TCurrent = undefined> {\n }\n \n page.on('websocket', (ws) => {\n+ const decoder = tracePlaywright ? new TextDecoder() : null\n if (tracePlaywright) {\n- page\n- .evalu...
ollama/ollama
13,893
glm4moelite: fix attention scale calculation
Use the original key dimension (qkNopeHeadDim + qkRopeHeadDim = 256) for the attention scale instead of the MLA absorbed dimension (kvLoraRank + qkRopeHeadDim = 576). MLA absorption is a mathematically equivalent reorganization of the attention computation - it should not change the effective attention scale. The sc...
16750865d11ecce48d45bb152c2793753b8781e6
a1ca428c90e6a0d8e5a94be7806f3319ab2cc680
1
high
[ { "filename": "model/models/glm4moelite/model.go", "patch": "@@ -223,12 +223,7 @@ func New(c fs.Config) (model.Model, error) {\n \n \tkeyLength := int(c.Uint(\"attention.key_length\"))\n \tvalueLength := int(c.Uint(\"attention.value_length\"))\n-\tkvLoraRank := int(c.Uint(\"attention.kv_lora_rank\"))\n-\tqk...
nodejs/node
62,268
src: use stack allocation in indexOf latin1 path
Replaced malloc / free with MaybeStackBuffer in the Latin1 path of IndexOfString. For short needles, the allocation stays on the stack, avoiding heap allocation. This results in a 12-15% improvement for short string searches. ```sh ➜ node git:(mert/buffer-indexof-stack-alloc) ✗ node-benchmark-compare ./result.cs...
null
f08e2e06eb382de9f4a7bc0578de6fdea5db47a4
null
low
[ { "filename": "benchmark/buffers/buffer-indexof.js", "patch": "@@ -19,7 +19,7 @@ const searchStrings = [\n \n const bench = common.createBenchmark(main, {\n search: searchStrings,\n- encoding: ['undefined', 'utf8', 'ucs2'],\n+ encoding: ['undefined', 'utf8', 'ucs2', 'latin1'],\n type: ['buffer', 'stri...
ollama/ollama
13,891
glm4moelite: quantize more tensors to 8-bit and avoid double BOS token
64737330a4684a052a67a208bc97cdbf21c54011
16750865d11ecce48d45bb152c2793753b8781e6
7
medium
[ { "filename": "model/models/glm4moelite/model.go", "patch": "@@ -246,7 +246,7 @@ func New(c fs.Config) (model.Model, error) {\n \t\t\t\tValues: c.Strings(\"tokenizer.ggml.tokens\"),\n \t\t\t\tTypes: c.Ints(\"tokenizer.ggml.token_type\"),\n \t\t\t\tMerges: c.Strings(\"tokenizer.ggml.merges\"),\n-\t\t\t\tAdd...
vercel/next.js
91,331
Turbopack: don't emit polyfill chunk for API routes
1. This is misldeading in the bundle analyzer view 2. If you have a Nextjs app consisting of only API routes, then there is no need to ever write out any polyfill chunk.
07189c522401b19ae8942d2db707ccea299f1717
202db657d8392cbd2dd5f8f48cf39074e20b4136
6
medium
[ { "filename": "crates/next-api/src/app.rs", "patch": "@@ -1358,45 +1358,52 @@ impl AppEndpoint {\n \n let manifest_path_prefix = &app_entry.original_name;\n \n- // polyfill-nomodule.js is a pre-compiled asset distributed as part of next\n- let next_package = get_next_package(project.pr...
facebook/react
35,343
fix[devtools]: feature-check document with typeof instead of direct reference
Follow-up to https://github.com/facebook/react/pull/35296. We can get `ReferenceError` if this is unavailable. Using `typeof` check instead for safety.
5d801243459cc18a768c9b291355943366730539
37bcdcde044131d49f11b2f62873a200a94ec756
2
high
[ { "filename": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -96,8 +96,11 @@ export default function setupHighlighter(\n applyingScroll = false;\n }\n \n- // $FlowFixMe[method-unbinding]\n- if (document && typeof document.addEventListener === 'function') {\n+ ...
rust-lang/rust
154,153
core: Implement `unchecked_funnel_{shl,shr}`
These methods are just wrappers around the intrinsics. Tracking issue: https://github.com/rust-lang/rust/issues/145686
null
04f63328d604b3422910e44dd148d5515cac0e19
null
low
[ { "filename": "library/core/src/num/uint_macros.rs", "patch": "@@ -447,7 +447,7 @@ macro_rules! uint_impl {\n pub const fn funnel_shl(self, rhs: Self, n: u32) -> Self {\n assert!(n < Self::BITS, \"attempt to funnel shift left with overflow\");\n // SAFETY: just checked that `...
electron/electron
50,492
fix: crash in clipboard.readImage() on malformed image data
Backport of #50475 See that PR for details. Notes: Fixed a crash in `clipboard.readImage()` when the clipboard contains malformed image data.
null
878a763344708d46329c788ab21db21e1bd74cae
null
low
[ { "filename": "shell/common/api/electron_api_clipboard.cc", "patch": "@@ -266,7 +266,11 @@ gfx::Image Clipboard::ReadImage(gin::Arguments* const args) {\n [](std::optional<gfx::Image>* image, base::RepeatingClosure cb,\n const std::vector<uint8_t>& result) {\n SkBitmap bit...
huggingface/transformers
44,825
[CI] Temporarily skip Mistral4 tests as they almost all fail
# What does this PR do? As per the title. cc @3outeille as I know you're looking into it
3b5032739b0faa2a0ad16d7e47b8c986152943b8
09fea1e6e970a1051b1141ce320a3d696b2c15ed
16
medium
[ { "filename": "tests/models/mistral4/test_modeling_mistral4.py", "patch": "@@ -49,6 +49,7 @@ class Mistral4ModelTester(CausalLMModelTester):\n \n \n @require_torch\n+@unittest.skip(\"Causing a lot of failures on CI\")\n class Mistral4ModelTest(CausalLMModelTest, unittest.TestCase):\n _is_stateful = True...
nodejs/node
62,238
test: skip test-cluster-dgram-reuse on AIX 7.3
Identified during AIX 7.3 testing being done under https://github.com/nodejs/node/issues/61660 TL;DR This is a workaround for a hang which is showing up when node is built on or AIX 7.3 machines. If the binary is built on 7.2 and then run on 7.3 (which would be true for anyone using our release builds) then it seems...
null
06a8240384419a072be5a73e75d7a153da8d51e4
null
low
[ { "filename": "test/parallel/test-cluster-dgram-reuse.js", "patch": "@@ -1,7 +1,10 @@\n 'use strict';\n const common = require('../common');\n+const os = require('os');\n if (common.isWindows)\n common.skip('dgram clustering is currently not supported on windows.');\n+if (common.isAIX && os.release() === ...
vercel/next.js
91,301
Update Rspack production test manifest
This auto-generated PR updates the production integration test manifest used when testing Rspack.
null
ad63ba04ff02696eb1c3073270fda7d6f1e29c1f
null
low
[ { "filename": "test/rspack-build-tests-manifest.json", "patch": "@@ -3069,6 +3069,17 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/e2e/app-dir/experimental-lightningcss-features/experimental-lightningcss-features.test.ts\": {\n+ \"passed\": [\n+ \"experimental-lightningcss...
facebook/react
35,293
fix[devtools]: feature-check structure stack trace methods
`Error.prepareStackTrace` is non-standard feature and not all JavaScript runtimes implement the methods that we are using in React DevTools backend. This PR adds additional checks for the presence of the methods that we are using.
null
5a970933c0aa5c5cfb9793cce49f3a282b191716
null
low
[ { "filename": "packages/react-devtools-shared/src/backend/utils/parseStackTrace.js", "patch": "@@ -154,41 +154,73 @@ function collectStackTrace(\n // We mirror how V8 serializes stack frames and how we later parse them.\n for (let i = framesToSkip; i < structuredStackTrace.length; i++) {\n const cal...
ollama/ollama
13,855
README: Update the "Ollama for ruby" to the most popular and maintained ruby gem.
The ollama-ai ruby gem is vastly less popular and seems unmaintained: https://rubygems.org/gems/ollama-ai The defacto standard with the most downloads in the ruby ecosystem is ruby_llm https://rubygems.org/gems/ruby_llm I would link to ruby_llm to avoid complication and guarantee feature compatibility with olla...
12719b6e87e738f76d0456dd9a9d7571be58cb68
b44f56319fa1356fe64fead7eb47a8fc9931dfb8
30
medium
[ { "filename": "README.md", "patch": "@@ -558,7 +558,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LiteLLM](https://github.com/BerriAI/litellm)\n - [OllamaFarm for Go](https://github.com/presbrey/ollamafarm)\n - [OllamaSharp for .NET](https://github.com/awaescher/OllamaSharp)\n-- [O...
electron/electron
49,912
feat: add accessibilityDisplayShouldDifferentiateWithoutColor on macOS
#### Description of Change Adds `nativeTheme.shouldDifferentiateWithoutColor` on macOS that maps to the `accessibilityDisplayShouldDifferentiateWithoutColor` property on `NSWorkspace`. If `true`, the user has indicated that they prefer UI that differentiates items with something other than color alone. This is usefu...
null
dee8f5a0ffa69116117fb00c4faaaacd30218e2f
null
low
[ { "filename": "docs/api/native-theme.md", "patch": "@@ -84,3 +84,7 @@ Currently, Windows high contrast is the only system setting that triggers forced\n ### `nativeTheme.prefersReducedTransparency` _Readonly_\n \n A `boolean` that indicates whether the user has chosen via system accessibility settings to re...
rust-lang/rust
150,635
triagebot: Add a mention for `dec2flt`, `flt2dec`, and `fmt/num.rs`
null
f7d67d7b92a864d26d888e98c171435322e3b774
null
low
[ { "filename": "triagebot.toml", "patch": "@@ -1059,6 +1059,18 @@ gets adapted for the changes, if necessary.\n \"\"\"\n cc = [\"@rust-lang/miri\", \"@RalfJung\", \"@oli-obk\", \"@lcnr\"]\n \n+[mentions.\"library/core/src/num/dec2flt\"]\n+message = \"Some changes occurred in float parsing\"\n+cc = [\"@tgross...
ollama/ollama
13,874
llama: fix CUDA release build issues
Tested against CUDA 12 environment across older architectures causing the failures on main
912d98434664b8a49ba6d0ffc42b0d0e5b435546
0209c268bbc82f9001c8a35bcd7b7f4cf20a2263
1
medium
[ { "filename": "llama/patches/0032-ggml-enable-MLA-flash-attention-for-GLM-4.7-flash.patch", "patch": "@@ -17,21 +17,22 @@ CUDA changes:\n - Add tile configs for (576, 512, 4) and (576, 512, 8)\n - Add MMA config cases for ncols 4\n - Add template instances for ncols2=4\n+- Fix nbatch_fa values in nvidia_fp3...
ollama/ollama
13,872
llama: fix fattn-tile shared memory overflow on sm_50/52
Use nthreads=128 for ncols=4 configurations in flash attention tile kernel to reduce shared memory usage below 48KB limit on Maxwell architectures (sm_50/52). With nthreads=256 and ncols=4, np=2 which caused shared memory to exceed 48KB. With nthreads=128 and ncols=4, np=1 keeps shared memory under the limit. Thi...
64737330a4684a052a67a208bc97cdbf21c54011
912d98434664b8a49ba6d0ffc42b0d0e5b435546
2
medium
[ { "filename": "llama/patches/0032-ggml-enable-MLA-flash-attention-for-GLM-4.7-flash.patch", "patch": "@@ -17,7 +17,6 @@ CUDA changes:\n - Add tile configs for (576, 512, 4) and (576, 512, 8)\n - Add MMA config cases for ncols 4\n - Add template instances for ncols2=4\n-- Fix nbatch_fa values in nvidia_fp32 ...
huggingface/transformers
44,684
update flex attention to use `return_aux` instead of `return_lse` when torch verison >= 2.9
… # What does this PR do? In torch versions >= 2.9.0, it requests the lse from flex_attenetion using `AuxRequest` instead of the deprecated `return_lse`, which triggers a warning and can break tracing. Fixes #44683 ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the ot...
null
2bbbbee35bb84354452e7eea8e32d093770e3fe9
null
low
[ { "filename": "src/transformers/integrations/flex_attention.py", "patch": "@@ -26,19 +26,32 @@\n # See the License for the specific language governing permissions and\n # limitations under the License.\n \n-from typing import Union\n+from typing import Optional, Union\n \n import torch\n from packaging impo...
facebook/react
35,294
fix[devtools]: still show overlay, if getClientRects is not implemented
Follow-up to https://github.com/facebook/react/pull/34653. React Native doesn't implement `getClientRect`, since this is applicable to CSS box, which is not a concept for Native (maybe yet). I am loosening the condition that gates `showOverlay()` call to pass if `getClientRect` is not implemented. Conceptually...
ad5971febdf6cc3103fa51121d4015832f2af5f8
5d801243459cc18a768c9b291355943366730539
12
medium
[ { "filename": "packages/react-devtools-shared/src/backend/views/Highlighter/index.js", "patch": "@@ -202,13 +202,12 @@ export default function setupHighlighter(\n typeof node.getClientRects === 'function'\n ? node.getClientRects()\n : [];\n- // If this is currently d...
ollama/ollama
13,871
cmd: rename ollama config to ollama launch
Changes the command from `ollama config` to `ollama launch` with new default behavior: - Default: select model(s) then launch immediately - --config flag: configure without auto-launching (old behavior) - Remove --launch flag (now redundant since launch is default) This makes the command more intuitive - users ...
66831dcf701913b2ebc2d659e3624131944bf86d
aae6ecbaffb1909018f3d9e289166c50a2eaffc5
3
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -2031,7 +2031,7 @@ func NewCLI() *cobra.Command {\n \t\tcopyCmd,\n \t\tdeleteCmd,\n \t\trunnerCmd,\n-\t\tconfig.ConfigCmd(checkServerHeartbeat),\n+\t\tconfig.LaunchCmd(checkServerHeartbeat),\n \t)\n \n \treturn rootCmd", "additions": 1, "deletions": 1 }, ...
nodejs/node
62,208
doc: clarify fs.ReadStream and fs.WriteStream are not constructable
Add explicit wording that `fs.ReadStream` and `fs.WriteStream` should not be constructed directly, matching the existing pattern used by `fs.Stats` ("not to be created directly using the `new` keyword"). The factory functions `fs.createReadStream()` and `fs.createWriteStream()` are the supported API. Verified against ...
ee417909ace0674d96f0f756322fda4a6ce1bc00
193c49505a54ae72634cce8ed55b640c292c0321
29
medium
[ { "filename": "doc/api/fs.md", "patch": "@@ -7155,8 +7155,8 @@ added: v0.1.93\n \n * Extends: {stream.Readable}\n \n-Instances of {fs.ReadStream} are created and returned using the\n-[`fs.createReadStream()`][] function.\n+Instances of {fs.ReadStream} cannot be constructed directly. They are created and\n+r...
ollama/ollama
13,866
x/imagegen: fix image editing support
- Fix panic in ollama show for image gen models (safe type assertion) - Add vision capability for Flux2KleinPipeline models at create time - Flatten transparent PNG images onto white background for better results
c01608b6a1356ba656c11ebf72e07d4d9e37f7e6
66831dcf701913b2ebc2d659e3624131944bf86d
4
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -1019,8 +1019,10 @@ func showInfo(resp *api.ShowResponse, verbose bool, w io.Writer) error {\n \t\t}\n \n \t\tif resp.ModelInfo != nil {\n-\t\t\tarch := resp.ModelInfo[\"general.architecture\"].(string)\n-\t\t\trows = append(rows, []string{\"\", \"architecture\", arc...
vercel/next.js
91,300
Update Rspack development test manifest
This auto-generated PR updates the development integration test manifest used when testing Rspack.
null
3b9344d71f86bbd8877a3c89fe4a131427e7e2ed
null
low
[ { "filename": "test/rspack-dev-tests-manifest.json", "patch": "@@ -669,18 +669,6 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n- \"test/development/app-dir/instant-navs-devtools/instant-navs-devtools.test.ts\": {\n- \"passed\": [\n- \"instant-mode-toggle should show \\\"Instant mod...
electron/electron
50,409
feat: add accessibilityDisplayShouldDifferentiateWithoutColor on macOS
Backport of #49912 See that PR for details. Notes: Added nativeTheme.shouldDifferentiateWithoutColor on macOS
null
e48835e4e0e452af5e701c3f11bdbdfb7022645e
null
low
[ { "filename": "docs/api/native-theme.md", "patch": "@@ -84,3 +84,7 @@ Currently, Windows high contrast is the only system setting that triggers forced\n ### `nativeTheme.prefersReducedTransparency` _Readonly_\n \n A `boolean` that indicates whether the user has chosen via system accessibility settings to re...
ollama/ollama
13,856
cmd: ollama config fix droid model name configuration
199c41e16edbbf90c38a0d3117c70070e410db48
771d9280ec36ab72b8465aa405d71772e3f1721b
3
medium
[ { "filename": "cmd/config/droid.go", "patch": "@@ -7,14 +7,23 @@ import (\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"slices\"\n-\t\"strings\"\n )\n \n // Droid implements Runner and Editor for Droid integration\n type Droid struct{}\n \n-// droidModelEntry represents a custom model entry in Droid's setting...
rust-lang/rust
140,418
Reexport types from `c_size_t` in `std`
These are unstably available in `core` and should be in `std` too, but are not currently reexported. Resolve this here. Tracking issue: https://github.com/rust-lang/rust/issues/88345
null
3fee6cccde6d1a0f8cabbc40c031ed139df4a888
null
low
[ { "filename": "library/std/src/ffi/mod.rs", "patch": "@@ -178,6 +178,8 @@ pub use core::ffi::{\n c_char, c_double, c_float, c_int, c_long, c_longlong, c_schar, c_short, c_uchar, c_uint,\n c_ulong, c_ulonglong, c_ushort,\n };\n+#[unstable(feature = \"c_size_t\", issue = \"88345\")]\n+pub use core::ff...
facebook/react
35,341
Attach instance handle to DOM in DEV for enableInternalInstanceMap
Continue attaching `internalInstanceKey` to DOM nodes in DEV. This prevents breaking some internal dev tooling while we experiment with the broader change. Note that this does not reference the DOM handle within the flag, just attaches it and deletes it. Internals tracking is still done through the private map.
null
eade0d0fb78e327c5624f53753126687f05c0d16
null
low
[ { "filename": "packages/react-dom-bindings/src/client/ReactDOMComponentTree.js", "patch": "@@ -75,6 +75,9 @@ export function detachDeletedInstance(node: Instance): void {\n delete (node: any)[internalEventHandlerListenersKey];\n delete (node: any)[internalEventHandlesSetKey];\n delete (node: any...
huggingface/transformers
44,631
[Gemma] Update conversion scripts for Transformers v5 Comaptibility
# What does this PR do? Updates the weights conversion scripts for Gemma to: * Use the new `SentencePieceExtractor` class to get the vocab and merges from the SPM * Always initialize and save the unified `GemmaTokenizer` class ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dis...
null
6f308258772a8fe21ba1f905248616d977a9c1c5
null
low
[ { "filename": "src/transformers/models/gemma/convert_gemma_weights_to_hf.py", "patch": "@@ -13,22 +13,13 @@\n # limitations under the License.\n import argparse\n import os\n-import warnings\n \n import torch\n \n from transformers import GemmaConfig, GemmaForCausalLM, GemmaTokenizer\n+from transformers.tok...
ollama/ollama
13,853
x/imagegen: respect stream=false in /api/generate
When stream=false is set for image generation requests, return a single JSON response instead of streaming multiple ndjson progress updates.
c01608b6a1356ba656c11ebf72e07d4d9e37f7e6
862bc0a3bf1612d69e4799e3b66fc77addb3bc16
1
medium
[ { "filename": "server/routes.go", "patch": "@@ -2508,8 +2508,14 @@ func (s *Server) handleImageGenerate(c *gin.Context, req api.GenerateRequest, mo\n \t\treturn\n \t}\n \n-\t// Set headers for streaming response\n-\tc.Header(\"Content-Type\", \"application/x-ndjson\")\n+\t// Check streaming preference\n+\ti...
electron/electron
50,383
feat: support notification priority on Windows
Backport of #50225 See that PR for details. Notes: Notes: Added support for the `urgency` option in Notifications on Windows.
3b3e1e8ef68bc848ed57a0c780ab66625a4c0927
7dfd55b8ea9c71598182a832e1238b9353bab151
21
medium
[ { "filename": "docs/api/notification.md", "patch": "@@ -90,11 +90,15 @@ app.whenReady().then(() => {\n * `timeoutType` string (optional) _Linux_ _Windows_ - The timeout duration of the notification. Can be 'default' or 'never'.\n * `replyPlaceholder` string (optional) _macOS_ - The placeholder to write ...
nodejs/node
62,004
tls: forward keepAlive, keepAliveInitialDelay, noDelay to socket
<!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md - the commit message formatting guidelines at https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-requests.md#commit-message-guidelines For code changes: 1. Inc...
null
6a3d358ca4111c8b43070d5e838d599bdff48d55
null
low
[ { "filename": "lib/internal/net.js", "patch": "@@ -100,6 +100,9 @@ function isLoopback(host) {\n \n module.exports = {\n kReinitializeHandle: Symbol('kReinitializeHandle'),\n+ kSetNoDelay: Symbol('kSetNoDelay'),\n+ kSetKeepAlive: Symbol('kSetKeepAlive'),\n+ kSetKeepAliveInitialDelay: Symbol('kSetKeepAl...
vercel/next.js
91,914
[devtools] Make instant navs panel draggable
You need to be able to see the link to have it use the cookie since we remove the cookie once you exit the panel. Now you can drag it around after you openend the menu instead of having to close, drag, and open again. https://github.com/user-attachments/assets/f6d19f3d-2c9f-45ce-84d9-cd89089ce84b
null
60e71ac90c4f150982fda3ca937b1b0e4c9a7b29
null
low
[ { "filename": "packages/next/src/next-devtools/dev-overlay/menu/panel-router.tsx", "patch": "@@ -261,6 +261,8 @@ export const PanelRouter = () => {\n <PanelRoute name=\"instant-navs\">\n <DynamicPanel\n sharePanelSizeGlobally={false}\n+ sharePanelPositionGlobally={fa...
electron/electron
50,225
feat: support notification priority on Windows
#### Description of Change Add Windows notifications support urgency/priority levels. This maps the existing `urgency` option (previously Linux-only) to Windows toast notification priorities: - 'critical' maps to ToastNotificationPriority_High, which sorts the notification above default-priority items in Action C...
958278c273004d6c61074795c5fe3dc8d1804c97
d9649f9e16558f659d3a2e4f521703f6d3e54580
22
medium
[ { "filename": "docs/api/notification.md", "patch": "@@ -90,11 +90,15 @@ app.whenReady().then(() => {\n * `timeoutType` string (optional) _Linux_ _Windows_ - The timeout duration of the notification. Can be 'default' or 'never'.\n * `replyPlaceholder` string (optional) _macOS_ - The placeholder to write ...
facebook/react
35,238
[Devtools] Navigating commits performance panel hotkey
## Summary Add keyboard shortcuts (Cmd/Ctrl + Left/Right arrow keys) to navigate between commits in the Profiler's snapshot view. Moved `filteredCommitIndices` management and commit navigation logic (`selectNextCommitIndex`, `selectPrevCommitIndex`) from `SnapshotSelector` into `useCommitFilteringAndNavigation` use...
null
d763f3131e689d077a93fd45c1fdf220be796279
null
low
[ { "filename": "packages/react-devtools-shared/src/__tests__/profilerContext-test.js", "patch": "@@ -655,4 +655,288 @@ describe('ProfilerContext', () => {\n \n document.body.removeChild(profilerContainer);\n });\n+\n+ it('should navigate between commits when the keyboard shortcut is pressed', async ()...
ollama/ollama
13,839
cmd: handle Enter key pressed during model loading, render multiline better
When users type and press Enter while a model is loading (terminal in cooked mode), the newline character is buffered as \n (LF). In raw mode, Enter sends \r (CR) while Ctrl+J sends \n. This caused buffered Enter keystrokes to be misinterpreted as Ctrl+J, incorrectly triggering multiline input mode instead of submittin...
75d7b5f9268441341383624bc18febbbae5fadb0
f52c21f457e0822b31195e258dbe89c5139ecebb
26
medium
[ { "filename": "cmd/interactive.go", "patch": "@@ -159,6 +159,7 @@ func generateInteractive(cmd *cobra.Command, opts runOptions) error {\n \t\t\tsb.WriteString(before)\n \t\t\tif !ok {\n \t\t\t\tfmt.Fprintln(&sb)\n+\t\t\t\tscanner.Prompt.UseAlt = true\n \t\t\t\tcontinue\n \t\t\t}\n ", "additions": 1, ...
huggingface/transformers
44,571
Fix pegasus conversion
Fixes #44448
null
6b01cc4be766ba0bc2e3423731a9de036ec9b2c7
null
low
[ { "filename": "src/transformers/convert_slow_tokenizer.py", "patch": "@@ -1290,6 +1290,28 @@ def vocab(self, proto):\n vocab += [(piece.piece, piece.score) for piece in proto.pieces[2:]]\n return vocab\n \n+ @classmethod\n+ def convert_from_spm(cls, vocab=None, **kwargs):\n+ pad...
nodejs/node
62,173
stream: promote DEP0201 to runtime deprecation
Refs: #61632
69d3754e9003e38a91ac5e225bea6aa56109fbd1
ac6375417a5305433c735c781d0f6d1eaec9f2ba
12
medium
[ { "filename": "doc/api/deprecations.md", "patch": "@@ -4431,12 +4431,15 @@ import { opendir } from 'node:fs/promises';\n \n <!-- YAML\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62173\n+ description: Runtime deprecation.\n - version: v25.7.0\n pr-url: https...
rust-lang/rust
154,486
std_detect on AArch64 Darwin: Detect FEAT_SVE_B16B16
This is now exposed via `sysctl` as of macOS "Tahoe" 26.4 (or possibly earlier). <!-- 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...
null
ab05593ad9591faab2b98b3c3314b4d8a3f339ef
null
low
[ { "filename": "library/std_detect/src/detect/os/darwin/aarch64.rs", "patch": "@@ -81,6 +81,7 @@ pub(crate) fn detect_features() -> cache::Initializer {\n let sme_f64f64 = _sysctlbyname(c\"hw.optional.arm.FEAT_SME_F64F64\");\n let sme_i16i64 = _sysctlbyname(c\"hw.optional.arm.FEAT_SME_I16I64\");\n ...
vercel/next.js
91,893
Narrow the opengraph-image function return type
### What? Change the `opengraph-image` return type to only `Response`. ### Why? This function must return a `Response` object. The other documented types cause Next.js builds to fail. I found this out the hard way by following the documentation. ### How?
null
820578db40a90200859b94f0fae544e241d29465
null
low
[ { "filename": "docs/01-app/03-api-reference/03-file-conventions/01-metadata/opengraph-image.mdx", "patch": "@@ -250,7 +250,7 @@ export default async function Image({ params }) {\n \n ### Returns\n \n-The default export function should return a `Blob` | `ArrayBuffer` | `TypedArray` | `DataView` | `ReadableSt...
nodejs/node
61,766
diagnostics_channel: ensure tracePromise consistency with non-Promises
`tracingChannel.tracePromise()` is documented in the source code (albeit not in the docs) to accept functions that return non-Promise thenables. However, it currently has some wonky behaviour when the return value isn't a native Promise, and also in the undocumented case where the return value isn't promise-like at all...
1989f4d25413b5d62da9f1b4ef9bcb1d1780f0ad
b4ea3238330c7ef215a5ab6414ef01fa83cd318a
17
medium
[ { "filename": "doc/api/diagnostics_channel.md", "patch": "@@ -829,23 +829,36 @@ channels.traceSync(() => {\n added:\n - v19.9.0\n - v18.19.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61766\n+ description: Custom thenables will no longer be wrapped in native P...
electron/electron
50,382
feat: support notification priority on Windows
Backport of #50225 See that PR for details. Notes: Notes: Added support for the `urgency` option in Notifications on Windows.
null
29622930a0e8e377c66a949d8ef01dc31792706b
null
low
[ { "filename": "docs/api/notification.md", "patch": "@@ -42,11 +42,15 @@ Returns `boolean` - Whether or not desktop notifications are supported on the cu\n * `timeoutType` string (optional) _Linux_ _Windows_ - The timeout duration of the notification. Can be 'default' or 'never'.\n * `replyPlaceholder` s...
ollama/ollama
13,797
imagegen: respect OLLAMA_MODELS for manifests and blobs
Image generation previously resolved manifests and blobs using a hard-coded path based on $HOME (e.g., $HOME/.ollama/models). When OLLAMA_MODELS is overridden (for example under systemd with a custom models dir), the image runner would still fall back to the default path, leading to failures like: open /usr/...
c23d5095de19460d1390b0df12d141bad1a247f9
d6dd430abd6b771bdb418baf651952ab756d391d
16
medium
[ { "filename": "x/imagegen/manifest.go", "patch": "@@ -6,8 +6,9 @@ import (\n \t\"io\"\n \t\"os\"\n \t\"path/filepath\"\n-\t\"runtime\"\n \t\"strings\"\n+\n+\t\"github.com/ollama/ollama/envconfig\"\n )\n \n // ManifestLayer represents a layer in the manifest.\n@@ -32,31 +33,15 @@ type ModelManifest struct {\...
facebook/react
35,338
[eprh] Enable enableUseKeyedState and enableVerboseNoSetStateInEffect
Temporarily enables these 2 flags for internal testing.
null
734f1bf1ac2a065f9ae9c74b94560b2b5239bee7
null
low
[ { "filename": "packages/eslint-plugin-react-hooks/src/shared/RunReactCompiler.ts", "patch": "@@ -39,6 +39,9 @@ const COMPILER_OPTIONS: PluginOptions = {\n validateNoCapitalizedCalls: [],\n validateHooksUsage: true,\n validateNoDerivedComputationsInEffects: true,\n+ // Temporarily enabled for ...
huggingface/transformers
44,812
Fix repo-check bot
# What does this PR do? Some checks (for example, modular checks) really require the installation from PR branch.
null
869dea750f56a39bf2a9ac24bf5e422be7bbe689
null
low
[ { "filename": ".github/workflows/pr-repo-consistency-bot.yml", "patch": "@@ -172,6 +172,13 @@ jobs:\n cp utils/check_docstrings.py pr-repo/utils/check_docstrings.py\n cp utils/add_dates.py pr-repo/utils/add_dates.py\n \n+ - name: Install editable transformers from PR branch with cop...
electron/electron
49,270
fix: pulseaudio stream and icon names
#### Description of Change Fixes https://github.com/electron/electron/issues/27581 Patch Chromium to use `platform_util::GetXdgAppId()` with fallback to argv0 as PA_PROP_APPLICATION_ICON_NAME. \ And `electron::GetPossiblyOverriddenApplicationName()` for input stream pa_context name. Disable `AudioServiceOutOfP...
02d4101ca37e8f8ccbcd35f82b9bc7db7cf1929b
27edd6e21c976ef62ac81af59860dc7bad665242
2
medium
[ { "filename": "patches/chromium/.patches", "patch": "@@ -147,3 +147,4 @@ fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n fix_use_fresh_lazynow_for_onendworkitemimpl_aft...
rust-lang/rust
154,563
Point at binop lhs and rhs when expression is multiline
``` error[E0277]: cannot add `()` to `u32` --> $DIR/multiline-span-simple.rs:13:18 | LL | foo(1 as u32 + | -------- ^ no implementation for `u32 + ()` LL | LL | / bar(x, LL | | LL | | y), | |______________- ``` <!-- homu-ignore:start --> <!-- If this PR is ...
null
a2cc7a9f0a3dfdede1d0b9f74ec789bc88122d5e
null
low
[ { "filename": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs", "patch": "@@ -2915,12 +2915,21 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n | ObligationCauseCode::CheckAssociatedTypeBounds { .. }\n | ObligationCauseCode::LetElse\n | ObligationCaus...
facebook/react
35,316
[test] Cleanup stack assertions in tests mixing React Server and Client
Some were using `ReactClient.createElement` instead of `ReactServer.createElement`. Others were including an irrelevant stack frame making it harder to review diffs. I suspect most of the variation was caused by our JSX transform not sourcemapping perfectly.
378973b387b6a6f287e451dd0356099180684c3c
380778d296478d675846668f96b0ee3e8f7fe810
5
medium
[ { "filename": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMBrowser-test.js", "patch": "@@ -2820,15 +2820,16 @@ describe('ReactFlightDOMBrowser', () => {\n },\n });\n \n+ const app = ReactServer.createElement(\n+ ReactServer.Fragment,\n+ null,\n+ ReactServer.crea...
ollama/ollama
13,802
test: add lfm2.5-thinking coverage
null
ae78112c5053421c334aae9e7a1219c416ca2e6b
null
low
[ { "filename": "integration/utils_test.go", "patch": "@@ -38,6 +38,7 @@ var (\n \n \t// Note: add newer models at the top of the list to test them first\n \tollamaEngineChatModels = []string{\n+\t\t\"lfm2.5-thinking\",\n \t\t\"ministral-3\",\n \t\t\"qwen3-coder:30b\",\n \t\t\"gpt-oss:20b\",\n@@ -143,6 +144,7...
nodejs/node
62,258
tools: update nixpkgs-unstable to f82ce7af0b79ac154b12e27ed800aeb9741
This is an automated update of nixpkgs-unstable to f82ce7af0b79ac154b12e27ed800aeb9741.
null
f6d02af01f1a73048fac350c50a8eccc7e4c292b
null
low
[ { "filename": "tools/nix/pkgs.nix", "patch": "@@ -1,10 +1,10 @@\n arg:\n let\n repo = \"https://github.com/NixOS/nixpkgs\";\n- rev = \"e38213b91d3786389a446dfce4ff5a8aaf6012f2\";\n+ rev = \"f82ce7af0b79ac154b12e27ed800aeb97413723c\";\n nixpkgs = import (builtins.fetchTarball {\n url = \"${repo}/ar...
facebook/react
35,313
Run CI for backport releases
By adding a trigger to pushes of tags for versions.
378973b387b6a6f287e451dd0356099180684c3c
41745339cd258065e47a692bb29d925561b70f08
4
medium
[ { "filename": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -3,6 +3,10 @@ name: (Runtime) Build and Test\n on:\n push:\n branches: [main]\n+ tags:\n+ # To get CI for backport releases.\n+ # This will duplicate CI for releases from main which is acceptable\n+ - \"v*\"\n...
electron/electron
50,446
build(deps): bump actions-cool/issues-helper from 3.7.6 to 3.8.0
Bumps [actions-cool/issues-helper](https://github.com/actions-cool/issues-helper) from 3.7.6 to 3.8.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions-cool/issues-helper/releases">actions-cool/issues-helper's releases</a>.</em></p> <blockquote> <h2>v3.8.0</h2> <p><code...
3db3996102dfe3bf8b7c49bcd996e605623ad0a6
60f4b077235bcde80c6c4676519fd17ebd516a16
5
medium
[ { "filename": ".github/workflows/issue-labeled.yml", "patch": "@@ -75,7 +75,7 @@ jobs:\n creds: ${{ secrets.ISSUE_TRIAGE_GH_APP_CREDS }}\n - name: Create comment\n if: ${{ steps.check-for-comment.outputs.SHOULD_COMMENT }}\n- uses: actions-cool/issues-helper@71b62d7da76e59ff7b1...
ollama/ollama
13,793
fix: use api.GenerateRequest for image generation test
## Summary - Fix `go mod tidy` failure caused by importing non-existent package `github.com/ollama/ollama/x/imagegen/api` - Use standard `api.GenerateRequest`/`api.GenerateResponse` with the `Image` field instead of custom types and OpenAI-compatible endpoint ## Test plan - [x] `go mod tidy` completes without error
c42e9d244f03dca90709383576ab3237263d79ac
31085d5e53811bedc53a9cb2afdea45554749d01
1
medium
[ { "filename": "integration/imagegen_test.go", "patch": "@@ -3,18 +3,14 @@\n package integration\n \n import (\n-\t\"bytes\"\n \t\"context\"\n \t\"encoding/base64\"\n-\t\"encoding/json\"\n \t\"fmt\"\n-\t\"net/http\"\n \t\"strings\"\n \t\"testing\"\n \t\"time\"\n \n \t\"github.com/ollama/ollama/api\"\n-\timag...