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 | 49,639 | fix(squirrel.mac): clean up old staged updates before downloading new update | Backport of #49365
See that PR for details.
Notes: fixed squirrel.mac stacked update behavior to old staged updates
| null | f874dba0571d1ddf561a5dff119e4d458d654c5d | null | low | [
{
"filename": "patches/squirrel.mac/.patches",
"patch": "@@ -9,3 +9,4 @@ refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors_in_squirrel.patch\n fix_crash_when_process_to_extract_zip_cannot_be_launched.patch\n use_uttype_class_instead_of_deprecat... |
ollama/ollama | 10,156 | Update README.md | [GGUF-to-Ollama](https://github.com/jonathanhecl/gguf-to-ollama) - Importing GGUF to Ollama made easy | 19c0c25de88cacc453e8f608f236ad5bf1891f5a | b0c3aba5906ebc51b1c4cbb4532173559ba6e6ed | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -440,6 +440,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [DeepShell](https://github.com/Abyss-c0re/deepshell) Your self-hosted AI assistant. Interactive Shell, Files and Folders analysis.\n - [orbiton](https://github.com/xyproto/orbiton) Conf... |
huggingface/transformers | 43,429 | Fix lm_head weight tying in Mistral3ForConditionalGeneration | ## Problem
Ministral-3-3B-Instruct-2512 generates gibberish because `lm_head.weight` is not tied to `embed_tokens.weight`.
## Root Cause
The Ministral-3-3B config has `text_config.tie_word_embeddings=True`, and the checkpoint only stores `model.language_model.embed_tokens.weight` (no `lm_head.weight`).
Howeve... | null | 4df39f47b12cd77fa479b881bb4e783a7101748c | null | low | [
{
"filename": "src/transformers/models/mistral3/configuration_mistral3.py",
"patch": "@@ -44,6 +44,8 @@ class Mistral3Config(PreTrainedConfig):\n Whether to use bias in the multimodal projector.\n spatial_merge_size (`int`, *optional*, defaults to 2):\n The downsampling facto... |
facebook/react | 33,725 | [compiler] Fix for consecutive DCE'd branches with phis |
This is an optimized version of @asmjmp0's fix in https://github.com/facebook/react/pull/31940. When we merge consecutive blocks we need to take care to rewrite later phis whose operands will now be different blocks due to merging. Rather than iterate all the blocks on each merge as in #31940, we can do a single itera... | null | d35fef9e21100463b0bfecb975e9d9eca45c963f | null | low | [
{
"filename": "compiler/packages/babel-plugin-react-compiler/src/HIR/MergeConsecutiveBlocks.ts",
"patch": "@@ -107,6 +107,17 @@ export function mergeConsecutiveBlocks(fn: HIRFunction): void {\n merged.merge(block.id, predecessorId);\n fn.body.blocks.delete(block.id);\n }\n+ for (const [, block] o... |
electron/electron | 49,624 | fix: menu state in macOS dock menus | Backport of #49574
See that PR for details.
Notes: Fixed dock menu items not respecting enabled and checked properties on macOS.
| f6df2854ff33d062709eecbc33de11d3c0bbff69 | 4e124f2b22f3873dca6df151eb177529b89b5303 | 5 | medium | [
{
"filename": "shell/browser/mac/electron_application_delegate.mm",
"patch": "@@ -109,7 +109,14 @@ - (void)applicationDidResignActive:(NSNotification*)notification {\n }\n \n - (NSMenu*)applicationDockMenu:(NSApplication*)sender {\n- return menu_controller_ ? menu_controller_.menu : nil;\n+ if (!menu_cont... |
ggml-org/llama.cpp | 20,539 | convert : support mixed-precision ModelOpt models with per-tensor NVFP4/FP8 quantization | Adds support for converting mixed-precision ModelOpt models (e.g. nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4) that use per-tensor quant_algo with both NVFP4 and FP8 layers, instead of a single global quant_algo: "NVFP4". NVFP4 tensors (2D scales) are repacked natively while FP8 tensors (1D scales) are dequantized ... | null | 079e5a45f0b62a1fb4c012a1a38e3f1e821dfb9b | null | low | [
{
"filename": "convert_hf_to_gguf.py",
"patch": "@@ -272,8 +272,9 @@ def index_tensors(self, remote_hf_model_id: str | None = None) -> dict[str, Call\n return tensors\n \n def dequant_model(self):\n- if self._is_nvfp4:\n- return # NVFP4 weights are repacked in _generate_nvfp4_... |
facebook/react | 33,734 | [Flight] Don't track Promise stack if there's no owner | This is a compromise because there can be a lot of Promise instances created. They're useful because they generally provide a better stack when batching/pooled connections are used.
This restores stack collection for I/O nodes so we have something to fallback on if there's no owner.
That way we can at least get a... | f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da | a7a116577daf3b135c226ed9db8a8c2f9166c023 | 4 | medium | [
{
"filename": "packages/react-server/src/ReactFlightAsyncSequence.js",
"patch": "@@ -26,7 +26,7 @@ type PromiseWithDebugInfo = interface extends Promise<any> {\n export type IONode = {\n tag: 0,\n owner: null | ReactComponentInfo,\n- stack: null, // callsite that spawned the I/O\n+ stack: null | React... |
huggingface/transformers | 43,465 | fix gguf recent conversion issues | # What does this PR do?
Fixes #43452 | f5722a54d5368d894666fa53bc565e813a3fc47f | a30413b78feed68da5c486746f745db092bfdf9a | 2 | medium | [
{
"filename": "src/transformers/modeling_utils.py",
"patch": "@@ -4113,7 +4113,7 @@ def from_pretrained(\n \n # If it is a model with generation capabilities, attempt to load generation files (generation config,\n # custom generate function)\n- if model.can_generate() and hasattr(mode... |
vercel/next.js | 89,093 | [ci] Exclude tests by filename when merging manifests | Follow-up to #88824.
When merging multiple test manifests, a test file may be included in `suites` by one manifest, but excluded in `rules` by another. This change ensures that if a test file is excluded by filename (and not by pattern), the exclusion takes precedence over the inclusion.
Specifically, this allows... | null | 790eb861ca93e314151651134e4b803eac3d3bae | null | low | [
{
"filename": "test/get-test-filter.js",
"patch": "@@ -80,7 +80,13 @@ function getTestFilter() {\n tests\n .filter((test) => {\n // Check to see if this was included as-is in the manifest.\n- if (test.file in manifest.suites) return true\n+ if (test.file in manifest... |
facebook/react | 33,733 | [Flight] Fix stack getting object limited | Because the object limit is unfortunately depth first due to limitations of JSON stringify, we need to ensure that things we really don't want outlined are first in the enumeration order.
We add the stack length to the object limit to ensure that the stack frames aren't outlined. In console all the user space argume... | bbea677b77ebf5d696623e2f634c69744eaf9d86 | 777264b4ef52797f63d0ed3e9e21b66b7ae6780e | 2 | high | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -4072,10 +4072,6 @@ function emitIOInfoChunk(\n start: relativeStartTimestamp,\n end: relativeEndTimestamp,\n };\n- if (value !== undefined) {\n- // $FlowFixMe[cannot-write]\n- debugIOInfo.value = value;\n- }\n ... |
ollama/ollama | 10,168 | Update README.md | There was a project that changed its name, so I went ahead and updated it to reflect on the Ollama Community Integrations. | 4e415029b30b2dc8a666491fdbe6254536e5d810 | 19c0c25de88cacc453e8f608f236ad5bf1891f5a | 14 | medium | [
{
"filename": "README.md",
"patch": "@@ -348,7 +348,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [PartCAD](https://github.com/openvmp/partcad/) (CAD model generation with OpenSCAD and CadQuery)\n - [Ollama4j Web UI](https://github.com/ollama4j/ollama4j-web-ui) - Java-based Web UI f... |
vuejs/vue | 9,738 | Template compiler warning | **What kind of change does this PR introduce?** (check at least one)
- [ ] Bugfix
- [ ] Feature
- [ ] Code style update
- [ ] Refactor
- [X] Build-related changes
- [ ] Other, please describe:
**Does this PR introduce a breaking change?** (check one)
- [ ] Yes
- [X] No
If yes, please describe the impa... | null | bf5ceb759a0c9dfc8a9fa05b024f3d9aa4ea70e4 | null | low | [
{
"filename": "packages/vue-template-compiler/index.js",
"patch": "@@ -5,10 +5,12 @@ try {\n var packageName = require('./package.json').name\n var packageVersion = require('./package.json').version\n if (vueVersion && vueVersion !== packageVersion) {\n+ var vuePath = require.resolve('vue')\n+ var package... |
facebook/react | 33,730 | [Fizz] Render preamble eagerly | We unnecessarily render the preamble in a task. This updates the implementation to perform this render inline.
Testing this is tricky because one of the only ways you could assert this was even happening is based on how things error if you abort while rendering the root.
While adding a test for this I discovered ... | e43986f1f3e6e94f7eef86fb21c830959e0ade6c | befc1246b07a04b401bc6e914b7f336a442dca1a | 5 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -9544,6 +9544,102 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ it('will attempt to render the preamble inline to allow rendering before a later abort in the same task', async () => {\n+ const pr... |
nodejs/node | 61,365 | lib: fix typo in util.js comment | 'explictly' -> 'explicitly' in getCallSites function comment
<!--
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-re... | null | 93eaba8e1d673c0f0019e6ba332f31abda562092 | null | low | [
{
"filename": "lib/util.js",
"patch": "@@ -453,7 +453,7 @@ function getCallSites(frameCount = 10, options) {\n \n // Using kDefaultMaxCallStackSizeToCapture as reference\n validateNumber(frameCount, 'frameCount', 1, 200);\n- // If options.sourceMaps is true or if sourceMaps are enabled but the option.s... |
vuejs/vue | 8,809 | fix(types): update the type definition of $el property | to be able to define `$el` as `SVGElement`
<!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR i... | 0ba79e2588309ba386f570ed84d372611c4dd165 | 3cd4af4af0a8a67f5887d5fc967147d433c8612c | 1 | medium | [
{
"filename": "types/test/vue-test.ts",
"patch": "@@ -19,6 +19,7 @@ class Test extends Vue {\n }\n \n // test property reification\n+ $el!: HTMLElement | SVGElement;\n $refs!: {\n vue: Vue,\n element: HTMLInputElement,",
"additions": 1,
"deletions": 0
},
{
"filename": "types/v... |
ollama/ollama | 9,434 | types: allow tool function parameters with either a single type or an array of types | 1. Identified the issue in the `api/types.go` file where the `Type` field in the tool function parameters properties was defined as a string, but the API was receiving an array. (For example, in Rust `Option<String>` is `["string", "null"]`)
2. Created a new `PropertyType` type that can handle both a single string a... | e53b3cbd0c3f08eb692a318c8eaf687a01c2e8c0 | 2f723ac2d6112344944d95efb0287a99c14a05c4 | 8 | medium | [
{
"filename": "api/types.go",
"patch": "@@ -166,16 +166,58 @@ type Tool struct {\n \tFunction ToolFunction `json:\"function\"`\n }\n \n+// PropertyType can be either a string or an array of strings\n+type PropertyType []string\n+\n+// UnmarshalJSON implements the json.Unmarshaler interface\n+func (pt *Prope... |
electron/electron | 49,643 | build: remove Core Graphics private macOS APIs on MAS | Backport of #49633
See that PR for details.
Notes: none
| 2041abcaf26c6512820687e661651c9ad22d6eff | 47990a354f4dec399317afe1f3419af2049f4e52 | 19 | medium | [
{
"filename": "patches/chromium/fix_adjust_headless_mode_handling_in_native_widget.patch",
"patch": "@@ -19,10 +19,10 @@ https://chromium-review.googlesource.com/c/chromium/src/+/6936895\n as we depend on the removed functionality in this patch.\n \n diff --git a/components/remote_cocoa/app_shim/native_widg... |
facebook/react | 33,728 | [Flight] Lazy load objects from the debug channel | When a debug channel is available, we now allow objects to be lazily requested though the debug channel and only then will the server send it.
The client will actually eagerly ask for the next level of objects once it parses its payload. That way those objects have likely loaded by the time you actually expand that ... | f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da | bbea677b77ebf5d696623e2f634c69744eaf9d86 | 1 | medium | [
{
"filename": "fixtures/flight/src/App.js",
"patch": "@@ -120,10 +120,69 @@ async function ServerComponent({noCache}) {\n return await fetchThirdParty(noCache);\n }\n \n+let veryDeepObject = [\n+ {\n+ bar: {\n+ baz: {\n+ a: {},\n+ },\n+ },\n+ },\n+ {\n+ bar: {\n+ baz: {\n... |
facebook/react | 33,727 | [Flight] Optimize Async Stack Collection | We need to optimize the collection of debug info for dev mode. This is an incredibly hot path since it instruments all I/O and Promises in the app.
These optimizations focus primarily on the collection of stack traces. They are expensive to collect because we need to eagerly collect the stacks since they can otherwi... | 8a6c589be74a389e62a996e74f8777ccd2a237ac | f1ecf82bfb5fdfa5d1c3aedcf114415fc29bd2da | 6 | medium | [
{
"filename": "packages/react-server/src/ReactFlightAsyncSequence.js",
"patch": "@@ -26,7 +26,7 @@ type PromiseWithDebugInfo = interface extends Promise<any> {\n export type IONode = {\n tag: 0,\n owner: null | ReactComponentInfo,\n- stack: ReactStackTrace, // callsite that spawned the I/O\n+ stack: n... |
ggml-org/llama.cpp | 20,589 | vulkan: fix flash attention dot product precision | The Q*K^T dot product was done in float16, but it should have been using ACC_TYPE. This fixes the GLM4 incoherence.
Fixes #20555 | null | 46dba9fce860d41ac545224623f27ac71f9d264a | null | low | [
{
"filename": "ggml/src/ggml-vulkan/vulkan-shaders/flash_attn.comp",
"patch": "@@ -245,7 +245,7 @@ void main() {\n #endif\n }\n [[unroll]] for (uint32_t r = 0; r < rows_per_thread; ++r) {\n- Sf[r][c] += ACC_TYPE(dot(Q_cache[r], K_Tf));\n+ ... |
huggingface/transformers | 43,314 | 43125: Ensure correct checkpoint saving behavior by simplifying Trainer.save_model parallelism logic | # What does this PR do?
This PR improves the correctness and robustness of model checkpoint saving by removing a redundant parallelism_config branch from Trainer.save_model().
The removed logic attempted to special-case checkpoint saving whenever accelerator.parallelism_config was present. In practice, this routi... | null | 728d64e8a2b913e1fe4f50d1ad4f4ac52da8db3c | null | low | [
{
"filename": "src/transformers/trainer.py",
"patch": "@@ -4008,15 +4008,6 @@ def save_model(self, output_dir: str | None = None, _internal_call: bool = False\n if self.args.should_save:\n self._save(output_dir, state_dict=state_dict)\n Path(os.path.join(output_dir, \... |
vuejs/vue | 9,733 | fix(types): allow using functions on the PropTypes (#9692) | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [x] Bugf... | 731e4d0ebc997a6c2b1fc500b08924ff7ba091b6 | df4af4bd1906b9f23b62816142fdfbd6336d3d2f | 24 | medium | [
{
"filename": "types/options.d.ts",
"patch": "@@ -144,7 +144,7 @@ export interface RenderContext<Props=DefaultProps> {\n injections: any\n }\n \n-export type Prop<T> = { (): T } | { new(...args: any[]): T & object }\n+export type Prop<T> = { (): T } | { new(...args: any[]): T & object } | { new(...args: s... |
huggingface/transformers | 43,303 | [DeepSpeed] add weight_mapping to _load_state_dict_into_zero3_model | # What does this PR do?
This pull request introduces enhancements to the DeepSpeed integration for model loading, specifically improving how weight conversions (such as renaming and merging/splitting of weights) are handled when loading state dictionaries into models using DeepSpeed ZeRO-3. The changes add a new uti... | 3af2eb7a29272ed58c9d1935a5d86ad283c563c4 | f5722a54d5368d894666fa53bc565e813a3fc47f | 2 | medium | [
{
"filename": "src/transformers/integrations/deepspeed.py",
"patch": "@@ -290,19 +290,160 @@ def deepspeed_config():\n return None\n \n \n-def _load_state_dict_into_zero3_model(model_to_load, state_dict):\n+def _apply_weight_conversions_to_state_dict(model, state_dict, weight_mapping):\n+ \"\"\"\... |
vercel/next.js | 88,991 | [backport][cna] Ensure created app is not considered the workspace root in pnpm | Backports https://github.com/vercel/next.js/pull/88647
---
[Slack Thread](https://vercel.slack.com/archives/C03S8ED1DKM/p1768574003809109?thread_ts=1768574003.809109&cid=C03S8ED1DKM)
<a href="https://cursor.com/background-agent?bcId=bc-57689c0b-287b-43f1-87ca-756ee7754a69"><picture><source media="(prefers-color-sc... | 1c09f4494bb247e0b8c83153dba171c460905792 | 8cad197c76dd9583b1a6d52f5e423e7075f6bee9 | 24 | medium | [
{
"filename": "packages/create-next-app/helpers/get-pkg-manager.ts",
"patch": "@@ -1,3 +1,5 @@\n+import { execSync } from 'child_process'\n+\n export type PackageManager = 'npm' | 'pnpm' | 'yarn' | 'bun'\n \n export function getPkgManager(): PackageManager {\n@@ -17,3 +19,35 @@ export function getPkgManager... |
nodejs/node | 61,420 | tools: update nixpkgs-unstable to be5afa0fcb31f0a96bf9ecba05a516c66fc | This is an automated update of nixpkgs-unstable to be5afa0fcb31f0a96bf9ecba05a516c66fc. | null | ba05a6677472c1ae3006b612f6b50553a1525861 | 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 = \"3146c6aa9995e7351a398e17470e15305e6e18ff\";\n+ rev = \"be5afa0fcb31f0a96bf9ecba05a516c66fcd8114\";\n nixpkgs = import (builtins.fetchTarball {\n url = \"${repo}/ar... |
ollama/ollama | 10,169 | CONTRIBUTING: fix code block formatting | There were only 3 spaces instead of 4, so the example was being considered to include html elements | null | 249fbbe52fdfb850175bf409eaa515b0c0100dc9 | null | low | [
{
"filename": "CONTRIBUTING.md",
"patch": "@@ -51,7 +51,7 @@ see if the change were accepted.\n \n The title should look like:\n \n- <package>: <short description>\n+ <package>: <short description>\n \n The package is the most affected Go package. If the change does not affect Go\n code, then use the d... |
electron/electron | 49,640 | fix: alt-space should route through 'system-context-menu' | Backport of #49619
See that PR for details.
Notes: Fixed an issue where alt+space triggered th system context menu even if an accelerator was registered for the hotkey combination. | null | 04f4bcdb7834e238689e145f75739618ea69a703 | null | low | [
{
"filename": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -150,6 +150,31 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n return views::DesktopWindowTreeHostWin::HandleMouseEvent(event);\n }\n \n+bool ElectronDesktopWindowTreeHostWin::... |
nodejs/node | 61,416 | src: use C++ nullptr in sqlite | Refs: https://github.com/nodejs/node/pull/61407
<!--
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#com... | efa76211327fe1c3ac977ce7d4415ff871005e02 | a35944685ae6070821c8406f5166552c21a05416 | 2 | high | [
{
"filename": "src/node_sqlite.cc",
"patch": "@@ -1235,7 +1235,7 @@ void DatabaseSync::Prepare(const FunctionCallbackInfo<Value>& args) {\n \n Utf8Value sql(env->isolate(), args[0].As<String>());\n sqlite3_stmt* s = nullptr;\n- int r = sqlite3_prepare_v2(db->connection_, *sql, -1, &s, 0);\n+ int r = s... |
ggml-org/llama.cpp | 20,561 | model : wire up Nemotron-H tensors for NVFP4 support | prep #20539 | d23355afc319f598d0e588a2d16a4da82e14ff41 | de8f01c2d7fd6ee7b642b3d09b1c5f1f9f6965fb | 20 | medium | [
{
"filename": "src/llama-model.cpp",
"patch": "@@ -7501,6 +7501,9 @@ bool llama_model::load_tensors(llama_model_loader & ml) {\n }\n \n // recurrent / linear-attention weight scales (per-tensor, shape {1})\n+ if (!layer.ssm_in_s && layer.ssm_in) {\n+ layer.s... |
ollama/ollama | 10,134 | digest files in parallel | this significantly improves performance of this function specifically when digesting a directory of many files. this reduces digesting by 90% (20s -> 2s) creating [mistralai/Mistral-Small-3.1-24B-Instruct-2503](https://huggingface.co/mistralai/Mistral-Small-3.1-24B-Instruct-2503) | 6bd0a983cd2cf74f27df2e5a5c80f1794a2ed7ef | 16fca86c4a6c43e2752062e7f82d20f00d9fd292 | 2 | medium | [
{
"filename": "parser/parser.go",
"patch": "@@ -11,10 +11,13 @@ import (\n \t\"os\"\n \t\"os/user\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync\"\n \n+\t\"golang.org/x/sync/errgroup\"\n \t\"golang.org/x/text/encoding/unicode\"\n \t\"golang.org/x/text/trans... |
nodejs/node | 61,311 | sqlite: add sqlite prepare options args | Fixes #61235 | 973e119d22f234492884f779fcd8b4c24e7a4ddc | efa76211327fe1c3ac977ce7d4415ff871005e02 | 4 | medium | [
{
"filename": "doc/api/sqlite.md",
"patch": "@@ -453,13 +453,23 @@ Opens the database specified in the `path` argument of the `DatabaseSync`\n constructor. This method should only be used when the database is not opened via\n the constructor. An exception is thrown if the database is already open.\n \n-### ... |
facebook/react | 33,724 | [Fiber] Name content inside "Suspense fallback" | Same as #33723 but for Fiber. | null | b44a99bf58d69d52b5288d9eadcc6d226d705e11 | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberComponentStack.js",
"patch": "@@ -34,7 +34,7 @@ import {\n } from 'shared/ReactComponentStackFrame';\n import {formatOwnerStack} from 'shared/ReactOwnerStackFrames';\n \n-function describeFiber(fiber: Fiber): string {\n+function describeFiber(fiber: Fib... |
ollama/ollama | 10,133 | Create a new file descriptor for each goroutine during GGML model loading to improve loading from network filesystems. | This fixes #9691
Ollama currently reuses the same file descriptor across all goroutines reading the model. GCS Fuse (and often other network-based filesystems) only keeps one open download stream per FD, as you cannot seek within a stream. This means every read at a non-sequential offset has to close the existing d... | 6bd0a983cd2cf74f27df2e5a5c80f1794a2ed7ef | 0f3f9e353df96d4cfc40ac19114c782a57fe30f5 | 1 | high | [
{
"filename": "ml/backend/ggml/ggml.go",
"patch": "@@ -319,7 +319,14 @@ func New(ctx context.Context, r *os.File, params ml.BackendParams) (ml.Backend,\n \t\t\t\ttts[i] = tt\n \t\t\t}\n \n-\t\t\tsr := io.NewSectionReader(r, int64(meta.Tensors().Offset+t.Offset), int64(t.Size()))\n+\t\t\t// Create a new FD f... |
vuejs/vue | 9,709 | fix(codegen): inline function expression can be named inside a `v-on`… | … expression (fix #9707)
<!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check... | null | 3433ba5beef9a6dd97705943c3441ebbee222afd | null | low | [
{
"filename": "src/compiler/codegen/events.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n+const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*(?:[\\w$]+)?\\s*\\(/\n const fnInvokeRE = /\\([^)]*?\\);*$/\n const simplePathRE = /^[... |
electron/electron | 49,631 | fix: wrong cause and removed flag in cookie change listener | Backport of #49103
See that PR for details.
Notes: Fixed an issue where cookie changed events weren't properly emitted in all cases. | 5976fa394bdead3efa32b43ffcc6f4ae007dcdd9 | 3d5986e29aa9cafe4fb38ce4bef29300e2e90c21 | 26 | medium | [
{
"filename": "docs/api/cookies.md",
"patch": "@@ -51,7 +51,12 @@ Returns:\n * `event` Event\n * `cookie` [Cookie](structures/cookie.md) - The cookie that was changed.\n * `cause` string - The cause of the change with one of the following values:\n- * `explicit` - The cookie was changed directly by a consu... |
huggingface/transformers | 43,409 | fix(models): Fix ViVit when dealing with multiple GPUs | # What does this PR do?
`test_modeling_vivit.py::VivitModelTest::test_model_parallelism` fails on multiple gpus with:
```
/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py:1775: in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
[...]
src/transformers/models/vivit/modeling... | null | 76ee621a09cf0716718f0e8912a981d1b29f56be | null | low | [
{
"filename": "src/transformers/models/vivit/modeling_vivit.py",
"patch": "@@ -364,7 +364,7 @@ class VivitPreTrainedModel(PreTrainedModel):\n main_input_name = \"pixel_values\"\n input_modalities = \"video\"\n supports_gradient_checkpointing = True\n- _no_split_modules = []\n+ _no_split_mo... |
ollama/ollama | 9,830 | llm: set done reason at server level | No functional change. Many different done reasons can be set at the runner level, so rather than obsuring them we should return them to the server process and let it choose what to do with the done reason. This separates the API concerns from the runner.
As mentioned here: https://github.com/ollama/ollama/pull/9324/... | 493385eb3e811ebbb49c6a23d6db7c39885bbb89 | e53b3cbd0c3f08eb692a318c8eaf687a01c2e8c0 | 3 | medium | [
{
"filename": "llm/server.go",
"patch": "@@ -675,9 +675,32 @@ type CompletionRequest struct {\n \tGrammar string // set before sending the request to the subprocess\n }\n \n+// DoneReason represents the reason why a completion response is done\n+type DoneReason int\n+\n+const (\n+\t// DoneReasonStop indicat... |
vercel/next.js | 87,248 | Cache Component Guide: Building public, _mostly_ static pages | This PR adds a draft guide for building public pages with Cache Components and PPR.
Part of a 3-guide series on:
- Building public pages with shared data
- Building page variants with route params (`generateStaticParams`)
- Build private pages with user-specific data
Todo:
- [x] Link to glossary terms
... | null | d1cf4e69427d4c914748ea211ccdb095eb539cee | null | low | [
{
"filename": "docs/01-app/02-guides/public-static-pages.mdx",
"patch": "@@ -0,0 +1,265 @@\n+---\n+title: Building public pages\n+description: Learn how to build public, \"static\" pages that share data across users, such as landing pages, list pages (products, blogs, etc.), marketing and news sites.\n+nav_... |
ggml-org/llama.cpp | 20,445 | tests: Fix invalid iterator::end() dereference in common_regex | When compiling with VS2026 18.4 I noticed `test-regex-partial` crashes immediately with debug build.
<img width="478" height="355" alt="image" src="https://github.com/user-attachments/assets/e5d3b7b3-95f4-491f-a28a-a105678eb72f" />
I tracked this down to an iterator::end() dereference in the following test case ... | null | d3936498a3d8f41cdb35d9e7d04a19e704b4fc89 | null | low | [
{
"filename": "common/regex-partial.cpp",
"patch": "@@ -102,7 +102,7 @@ std::string regex_to_reversed_partial_regex(const std::string & pattern) {\n auto is_star = *it == '*';\n ++it;\n if (is_star) {\n- if (*it == '?') {\n+ ... |
nodejs/node | 61,410 | sqlite: add some tests | Add some exceptions tests to `sqlite` suite | null | 59eb2ad491443337120224229c26d72f8ea05677 | null | low | [
{
"filename": "test/parallel/test-sqlite-aggregate-function.mjs",
"patch": "@@ -68,6 +68,19 @@ describe('DatabaseSync.prototype.aggregate()', () => {\n message: /The \"options\\.directOnly\" argument must be a boolean/,\n });\n });\n+\n+ test('throws if options.inverse is not a function... |
vuejs/vue | 9,728 | fix #9727 | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [x] Bugf... | 731e4d0ebc997a6c2b1fc500b08924ff7ba091b6 | 982d5a492fb95577217e2dacaa044eabe78a8601 | 20 | medium | [
{
"filename": "flow/vnode.js",
"patch": "@@ -42,7 +42,7 @@ declare interface VNodeData {\n staticClass?: string;\n class?: any;\n staticStyle?: { [key: string]: any };\n- style?: Array<Object> | Object;\n+ style?: string | Array<Object> | Object;\n normalizedStyle?: Object;\n props?: { [key: str... |
facebook/react | 33,686 | [tests] Assert on component stack for Maximum Update error | Good to assert these include the component stack | null | e4314a0a0f6ea1ab8f739c9119583d148c1be657 | null | low | [
{
"filename": "packages/react-dom/src/__tests__/ReactUpdates-test.js",
"patch": "@@ -20,6 +20,19 @@ let waitFor;\n let assertLog;\n let assertConsoleErrorDev;\n \n+function normalizeCodeLocInfo(str) {\n+ return (\n+ str &&\n+ str.replace(/^ +(?:at|in) ([\\S]+)[^\\n]*/gm, function (m, name) {\n+ ... |
electron/electron | 49,103 | fix: wrong cause and removed flag in cookie change listener | #### Description of Change
Closes https://github.com/electron/electron/issues/49102.
Fixes an issue where cookie changed events weren't properly emitted in all cases, as Electron only checked for `net::CookieChangeCause::INSERTED` and not `net::CookieChangeCause::INSERTED_NO_CHANGE_OVERWRITE`.
#### Checklist
... | null | 4413a0f642af2f8aab04e27939b74f78edba4056 | null | low | [
{
"filename": "docs/api/cookies.md",
"patch": "@@ -51,7 +51,12 @@ Returns:\n * `event` Event\n * `cookie` [Cookie](structures/cookie.md) - The cookie that was changed.\n * `cause` string - The cause of the change with one of the following values:\n- * `explicit` - The cookie was changed directly by a consu... |
vuejs/vue | 9,700 | fix(core): use window.performance for compatibility in JSDOM (fix #9698) | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [ ] Bugf... | ef2a380c6eb6bd1a7ff516c357dafa717e75a745 | 653c74e64e5ccd66cda94c77577984f8afa8386d | 14 | medium | [
{
"filename": "src/core/observer/scheduler.js",
"patch": "@@ -47,16 +47,18 @@ let getNow: () => number = Date.now\n // timestamp can either be hi-res (relative to page load) or low-res\n // (relative to UNIX epoch), so in order to compare time we have to use the\n // same timestamp type when saving the flus... |
ollama/ollama | 10,081 | model: fix tokenization issues with spm tokenizer | This PR fixes inconsistencies in the SPM tokenizer for Gemma 3
Note: while this fixes tokenizing certain utf-8 characters (e.g. certain Korean characters) it doesn't fix de-tokenizing them yet | null | b51e0f397ced70bbfa7f22e9b3c94953967cb8e5 | null | low | [
{
"filename": "model/models/gemma2/model.go",
"patch": "@@ -38,7 +38,6 @@ const (\n func New(c ml.Config) (model.Model, error) {\n \tm := Model{\n \t\tSentencePieceModel: model.NewSentencePieceModel(\n-\t\t\tc.String(\"tokenizer.ggml.pretokenizer\", `(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?\\p{L}... |
facebook/react | 33,723 | [Fizz] Name content inside "Suspense fallback" | Content in Suspense fallbacks are really not considered part of the Suspense but since it does have some behavior it should be marked somehow separately from the Suspense content.
A follow up would be to do the same in Fiber. | 453a19a107d02dbcde1f722361918db24426de64 | c932e457800f077352b1b322f14a796e589299fb | 9 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -816,6 +816,52 @@ describe('ReactDOMFizzServer', () => {\n expect(loggedErrors).toEqual([theError]);\n });\n \n+ it('should have special stacks if Suspense fallback', async () => {\n+ const infinitePromise = ... |
huggingface/transformers | 43,407 | Cleanup rope conversion | As per title, cleanup as this overwrite was not necessary
Can be verified by running (with and without this change)
```python
from transformers import AutoConfig
config = AutoConfig.from_pretrained("upstage/Solar-Open-100B")
print(config)
```
cc @oesni for viz | 93dd4fb9faad8c3b0f181e581f6e4ac061c0edfe | 6c6aeb2da2dd93b80e029446d58ef8efd8e6ce0a | 26 | medium | [
{
"filename": "src/transformers/models/minimax_m2/configuration_minimax_m2.py",
"patch": "@@ -184,26 +184,5 @@ def __init__(\n \n super().__init__(**kwargs)\n \n- def convert_rope_params_to_dict(self, ignore_keys_at_rope_validation=None, **kwargs):\n- rope_scaling = kwargs.pop(\"rope_scali... |
facebook/react | 33,719 | [Flight] Flush performance track once we have no more pending chunks | Stacked on #33718. Alternative to #33716.
The issue with flushing the Server Components track in its current form is that we need to decide how long to wait before flushing whatever we have. That's because the root's end time will be determined by the end time of that last child.
However, if a child isn't actuall... | 7cafeff340f44fff840b332d3463533dc2d3734b | 223f81d87728cdc843baa4fc5704c2f3b66fbd45 | 2 | medium | [
{
"filename": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -351,6 +351,7 @@ type Response = {\n _closedReason: mixed,\n _tempRefs: void | TemporaryReferenceSet, // the set temporary references can be resolved from\n _timeOrigin: number, // Profiling-only\n+ _pendingInitialRender: nu... |
nodejs/node | 61,414 | build: update devcontainer.json to use paired nix env | Refs: https://github.com/nodejs/devcontainer/pull/22
<!--
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.m... | null | bc9ffc32bd8b0fc0b6a2859953b404df11bd22f7 | null | low | [
{
"filename": ".devcontainer/base/devcontainer.json",
"patch": "@@ -7,5 +7,6 @@\n \"mounts\": [\n \"source=node-devcontainer-cache,target=/home/developer/nodejs/node/out,type=volume\"\n ],\n- \"postCreateCommand\": \"git restore-mtime\"\n+ \"postCreateCommand\": \"git restore-mtime\",\n+ \"postSt... |
ollama/ollama | 10,080 | ollamarunner: Don't truncate a SameBatch | When truncating inputs to the the context window at the beginning of a sequence, we remove the minimum amount possible. However, this may cause us to truncate to the middle of a set of inputs that the model specified should not be split up. To avoid this, we need to remove the rest of the partial batch. | 66b253923891d41a31d28531e9db5efccf53e1d0 | 493385eb3e811ebbb49c6a23d6db7c39885bbb89 | 7 | medium | [
{
"filename": "runner/ollamarunner/cache.go",
"patch": "@@ -225,6 +225,8 @@ func countCommonPrefix(a []input.Input, b []input.Input) int32 {\n \treturn count\n }\n \n+// TODO(jessegross): If we need to reprocess the inputs we should ensure that\n+// we don't split up a SameBatch\n func (c *InputCache) Shift... |
electron/electron | 49,625 | fix: menu state in macOS dock menus | Backport of #49574
See that PR for details.
Notes: Fixed dock menu items not respecting enabled and checked properties on macOS.
| d7bdf928174c99cc674ed1f6bfc7e026e88f7e1f | b4563125d914a442d01c1a343dc47fdf0a871d02 | 5 | medium | [
{
"filename": "shell/browser/mac/electron_application_delegate.mm",
"patch": "@@ -109,7 +109,14 @@ - (void)applicationDidResignActive:(NSNotification*)notification {\n }\n \n - (NSMenu*)applicationDockMenu:(NSApplication*)sender {\n- return menu_controller_ ? menu_controller_.menu : nil;\n+ if (!menu_cont... |
facebook/react | 33,717 | [Flight] Keep a separate ref count for debug chunks | Same as #33716 but without the separate close signal.
We'll need the ref count for separate debug channel anyway but I'm not sure we'll need the separate close signal. | 0378b46e7e4c5c15ac57308e2894b6d78d5fb488 | 8a6c589be74a389e62a996e74f8777ccd2a237ac | 2 | medium | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -278,7 +278,7 @@ function patchConsole(consoleInst: typeof console, methodName: string) {\n request,\n parseStackTrace(new Error('react-stack-top-frame'), 1),\n );\n- request.pendingChunks++;\n+ ... |
ggml-org/llama.cpp | 20,537 | CUDA: GDN hide memory latency | #20448 got closed because #20443 got merged. @IMbackK could you please check if this is not causing regressions on HIP? | null | 34818ea6c0e91a2fa245ce866f7e002a4a9cd381 | null | low | [
{
"filename": "ggml/src/ggml-cuda/gated_delta_net.cu",
"patch": "@@ -1,7 +1,8 @@\n #include \"gated_delta_net.cuh\"\n \n template <int S_v, bool KDA>\n-__global__ void gated_delta_net_cuda(const float * q,\n+__global__ void __launch_bounds__((ggml_cuda_get_physical_warp_size() < S_v ? ggml_cuda_get_physical... |
vercel/next.js | 89,001 | Fix reset deploy project script | This script has been quietly failing on cron occasionally, this updates to ensure it shows as failing when the inner requests fail and also adds back-off logic for re-creating the project after deleting the previous.
x-ref: https://github.com/vercel/next.js/actions/runs/21327384008/job/61386921911#step:6:12 | null | d224a56201d64a49e9d25237136fa7104d263a5c | null | low | [
{
"filename": "scripts/reset-project.mjs",
"patch": "@@ -4,14 +4,62 @@ export const TEST_PROJECT_NAME = 'vtest314-e2e-tests'\n export const TEST_TEAM_NAME = process.env.VERCEL_TEST_TEAM\n export const TEST_TOKEN = process.env.VERCEL_TEST_TOKEN\n \n+/**\n+ * Retry a fetch request with exponential backoff\n+ ... |
facebook/react | 33,718 | [Flight] Close Debug Channel when All Lazy References Have Been GC:ed | When we have a debug channel open that can ask for more objects. That doesn't close until all lazy objects have been explicitly asked for. If you GC an object before the lazy references inside of it before asking for or releasing the objects, then it'll never close.
This ensures that if there are no more PendingChun... | bb402876f7413ae2e6809ad442405a5a90c69b45 | 7cafeff340f44fff840b332d3463533dc2d3734b | 2 | medium | [
{
"filename": "fixtures/flight/src/index.js",
"patch": "@@ -16,18 +16,49 @@ function findSourceMapURL(fileName) {\n \n let updateRoot;\n async function callServer(id, args) {\n- const response = fetch('/', {\n- method: 'POST',\n- headers: {\n- Accept: 'text/x-component',\n- 'rsc-action': id... |
ollama/ollama | 10,057 | Adding Casibase to Ollama in Readme | Casibase provides an open source LangChain-like AI knowledge database and chatbot built using Golang with Admin UI and multi-model support (Ollama, DeepSeek R1, ChatGPT, Claude, Llama 3, HuggingFace, etc.). Capable of delivering AI-driven smart replies.
github: https://github.com/casibase/casibase
docs: https://cas... | c001b98087e45b7b60509127d4d2e9d9ba809444 | 4e415029b30b2dc8a666491fdbe6254536e5d810 | 2 | high | [
{
"filename": "README.md",
"patch": "@@ -325,6 +325,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [RWKV-Runner](https://github.com/josStorer/RWKV-Runner) (RWKV offline LLM deployment tool, also usable as a client for ChatGPT and Ollama)\n - [Ollama Grid Search](https://github.com/de... |
vuejs/vue | 9,660 | fix: whitespace: 'condense' should honor <pre> tag as well | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [x] Bugf... | cbad54aa52847cfc934bb925d53c53ee57fc153d | f1bdd7ff9d1fc86f7a8ad8d5cb6d9abc7b2e47f3 | 22 | medium | [
{
"filename": "src/compiler/parser/index.js",
"patch": "@@ -351,7 +351,7 @@ export function parse (\n text = preserveWhitespace ? ' ' : ''\n }\n if (text) {\n- if (whitespaceOption === 'condense') {\n+ if (!inPre && whitespaceOption === 'condense') {\n // condense... |
facebook/react | 33,715 | [Flight] Include I/O not awaited in user space | If I/O is not awaited in user space in a "previous" path we used to just drop it on the floor. There's a few strategies we could apply here. My first commit just emits it without an await but that would mean we don't have an await stack when there's no I/O in a follow up.
I went with a strategy where the "previous" ... | bb402876f7413ae2e6809ad442405a5a90c69b45 | 0378b46e7e4c5c15ac57308e2894b6d78d5fb488 | 1 | medium | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2061,20 +2061,17 @@ function visitAsyncNode(\n return null;\n }\n visited.add(node);\n+ let previousIONode = null;\n // First visit anything that blocked this sequence to start in the first place.\n if (node.previous ... |
facebook/react | 33,707 | [Flight] Pass line/column to `filterStackFrame` | Stacked on https://github.com/facebook/react/pull/33706
`filterStackFrame` implementations can fast-path ignore-listing by checking if the corresponding source map ignore-lists everything. However, this check requires checking every section for [Index Source Maps](https://tc39.es/ecma426/#sec-index-source-map) which... | 9a645e1d1027962047d2b6b26af12357203784c9 | bb402876f7413ae2e6809ad442405a5a90c69b45 | 1 | medium | [
{
"filename": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -1309,6 +1309,8 @@ describe('ReactFlight', () => {\n // third-party RSC frame\n // Ideally this would be a real frame produced by React not a mocked one.\n ' at ThirdParty (rsc://React/ThirdParty... |
huggingface/transformers | 43,449 | pin `torchcodec==0.9.1` | # What does this PR do?
0.10 is out but we still have the pin torch==2.9.1
Let's pin torchcodec first and come back to check the new versions later | 0dfb28e18f8d27c559a7aba21e9d77a23ef5f160 | 4b4fc48684f60525c3441e81c35374c3228bffaa | 29 | medium | [
{
"filename": "docker/examples-torch.dockerfile",
"patch": "@@ -5,7 +5,7 @@ USER root\n RUN apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev espeak-ng time git g++ cmake pkg-config openssh-client git-lfs ffmpeg curl\n ENV UV_PYTHON=/usr/local/bin/python\n RUN pip --no-cache-dir ... |
facebook/react | 33,706 | [Flight] Consistent format of virtual `rsc:` sources | `filterStackFrame` was called with a sourceURL that didn't reflect the original sourceURL. This breaks once you try to use `findSourceMapURL` on the given sourceURL since the encoding would be off.
Mostly stood out when reading source that the encoding/decoding wasn't consistent. `ReactServer` always uses `encodeURI... | 453a19a107d02dbcde1f722361918db24426de64 | 4aad5e45bafe213cf2993614633d5f8d22d5d793 | 1 | medium | [
{
"filename": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -1106,7 +1106,7 @@ function createFakeServerFunction<A: Iterable<any>, T>(\n '\\n//# sourceURL=rsc://React/' +\n encodeURIComponent(environmentName) +\n '/' +\n- filename +\n+ encodeURI(filename) +\... |
electron/electron | 49,635 | fix: possible crash in FileSystem API | Backport of #49578
See that PR for details.
Notes: Fixed a crash that could occur when using the File System Access API. | null | d5eed2bca6a6a698cf2de2e001e343acd413d2b3 | null | low | [
{
"filename": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -400,31 +400,47 @@ class FileSystemAccessPermissionContext::PermissionGrantImpl\n }\n }\n \n+ // Updates the in-memory permission grant for the `new_path` in the `grants`\n+ // map using the same ... |
facebook/react | 33,714 | [Flight] Ignore "new Promise" and async_hooks even if they're not ignore listed | These are part of the internals of Promises and async functions even if anonymous functions are otherwise not ignore listed.
| 2d7f0c425902d13617f5c02c1b7c0f2cd95cd6d9 | 9a645e1d1027962047d2b6b26af12357203784c9 | 1 | high | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -204,17 +204,17 @@ function findCalledFunctionNameFromStackTrace(\n const callsite = stack[i];\n const functionName = callsite[0];\n const url = devirtualizeURL(callsite[1]);\n- if (filterStackFrame(url, functionName... |
ggml-org/llama.cpp | 20,606 | tools/cli: fix disable reasoning | Handle `--reasoning off` properly in cli. | null | 9e2e2198b006b5bcb81846a43b868528ea79a483 | null | low | [
{
"filename": "tools/cli/cli.cpp",
"patch": "@@ -215,7 +215,7 @@ struct cli_context {\n inputs.parallel_tool_calls = false;\n inputs.add_generation_prompt = true;\n inputs.reasoning_format = COMMON_REASONING_FORMAT_DEEPSEEK;\n- inputs.enable_thinking = common_chat... |
vercel/next.js | 89,072 | Apply segment changes to adapters outputs | This applies the following builder changes to the adapters outputs as well:
- https://github.com/vercel/vercel/pull/14689
- https://github.com/vercel/vercel/pull/14695 | 93bb2799fe43cf7b2967569f78ed3e7a2438dbf1 | 8003df97c9ab9eb04ec8c52d6941370d6670ec3d | 22 | medium | [
{
"filename": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -1085,10 +1085,7 @@ export async function handleBuildComplete({\n const handleAppMeta = async (\n route: string,\n initialOutput: AdapterOutput['PRERENDER'],\n- meta: {\n- postponed?: string... |
nodejs/node | 60,826 | src: handle indexed properties in `process.env` | Closes: https://github.com/nodejs/node/issues/60795
I'm not sure if we should treat this as a breaking change.
Before this change, indexed properties would not be intercepted, so setting them in JS would not coerce the value to a string. | null | 08d966cb657d114db5b939a13f064f4517f35b42 | null | low | [
{
"filename": "src/node_env_var.cc",
"patch": "@@ -4,6 +4,7 @@\n #include \"node_external_reference.h\"\n #include \"node_i18n.h\"\n #include \"node_process-inl.h\"\n+#include \"util.h\"\n \n #include <time.h> // tzset(), _tzset()\n #include <optional>\n@@ -16,6 +17,7 @@ using v8::DontDelete;\n using v8::D... |
facebook/react | 33,713 | [Flight] Insert an extra await node for awaiting on the promise returned by then callback | When a `.then()` callback returns another Promise, there's effectively another "await" on that Promise that happens in the internals but that was not modeled. In effect the Promise returned by `.then()` is blocked on both the original Promise AND the promise returned by the callback.
This models that by cloning the ... | 4aad5e45bafe213cf2993614633d5f8d22d5d793 | 2d7f0c425902d13617f5c02c1b7c0f2cd95cd6d9 | 1 | medium | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2163,13 +2163,21 @@ function visitAsyncNode(\n } else {\n let isAwaitInUserspace = false;\n const fullStack = node.stack;\n- if (fullStack.length > 0) {\n+ let firstFrame = 0... |
vuejs/vue | 9,677 | fix: not push non-async css files into map | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [x] Bugf... | null | d28240009c4c49fb2ef42a79206f0d9ad03f736c | null | low | [
{
"filename": "src/server/template-renderer/create-async-file-mapper.js",
"patch": "@@ -43,8 +43,8 @@ function mapIdToFile (id, clientManifest) {\n if (fileIndices) {\n fileIndices.forEach(index => {\n const file = clientManifest.all[index]\n- // only include async files or non-js assets\n-... |
ollama/ollama | 9,950 | Fix /proc/cpuinfo file open and close. | 1 fix file open and close
2 reduce redundancy loops. | null | 4059a297a6d95ce94f3619eac0536fda666d58f1 | null | low | [
{
"filename": "discover/gpu_linux.go",
"patch": "@@ -111,6 +111,7 @@ func GetCPUDetails() ([]CPU, error) {\n \tif err != nil {\n \t\treturn nil, err\n \t}\n+\tdefer file.Close()\n \treturn linuxCPUDetails(file)\n }\n \n@@ -168,13 +169,11 @@ func linuxCPUDetails(file io.Reader) ([]CPU, error) {\n \tfor id, s... |
ggml-org/llama.cpp | 20,601 | server : fix wait in test_cancel_requests() test | The wait condition in `test_cancel_request()` is a bit flaky, causing failures with the Metal server runs from time to time:
https://github.com/ggml-org/llama.cpp/actions/runs/23113808739/job/67135730576#step:4:22888
Give the slot a bit more time to finish for sure. | cf45437d35eecd3f05a21968a4958a50e8038fb6 | 88915cb55c14769738fcab7f1c6eaa6dcc9c2b0c | 8 | medium | [
{
"filename": "CODEOWNERS",
"patch": "@@ -85,6 +85,7 @@\n /tools/quantize/ @ggerganov\n /tools/rpc/ @ggml-org/ggml-rpc\n /tools/server/* @ggml-org/llama-server # no subdir\n+/tools/server/tests/ @ggml-org/llama-ser... |
ollama/ollama | 9,983 | Update README.md | Adding TagSpaces to the list of apps with Ollama integration | 23fc8e92eb01ddd1cf06b34ff270926ec7edd4b8 | c001b98087e45b7b60509127d4d2e9d9ba809444 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -285,6 +285,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Bionic GPT](https://github.com/bionic-gpt/bionic-gpt)\n - [HTML UI](https://github.com/rtcfirefly/ollama-ui)\n - [Saddle](https://github.com/jikkuatwork/saddle)\n+- [TagSpaces](https:/... |
ollama/ollama | 9,955 | Added DeepShell to README.md | 071a9872cb76f07d09dc8a3c65046d35d921f4e6 | 23fc8e92eb01ddd1cf06b34ff270926ec7edd4b8 | 6 | medium | [
{
"filename": "README.md",
"patch": "@@ -435,6 +435,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [SwollamaCLI](https://github.com/marcusziade/Swollama) bundled with the Swollama Swift package. [Demo](https://github.com/marcusziade/Swollama?tab=readme-ov-file#cli-usage)\n - [aichat]... | |
vercel/next.js | 89,004 | Update Rspack development test manifest | This auto-generated PR updates the development integration test manifest used when testing Rspack. | 1fbb35f2037c944823d5875a12fcbf717f7cc04b | 905e90500ef85d17bcc046510b794838970c1161 | 13 | medium | [
{
"filename": "test/rspack-dev-tests-manifest.json",
"patch": "@@ -1251,14 +1251,13 @@\n },\n \"test/development/app-hmr/hmr.test.ts\": {\n \"passed\": [\n+ \"app-dir-hmr filesystem changes can navigate cleanly to a page that requires a change in the Webpack runtime\",\n \"app-dir-hmr fil... |
vuejs/vue | 9,673 | fix(ssr): fix nested async functional componet rendering | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [x] Bugf... | 38825ff6754d61a350d8892462cecaa3eceb93c6 | 8082d2f910d963f14c151fb445e0fcc5c975cca9 | 20 | medium | [
{
"filename": "src/core/vdom/helpers/resolve-async-component.js",
"patch": "@@ -53,7 +53,7 @@ export function resolveAsyncComponent (\n }\n \n const owner = currentRenderingInstance\n- if (isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n+ if (owner && isDef(factory.owners) && factory... |
huggingface/transformers | 31,964 | Uniformize kwargs for processors - GroundingDINO | # 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 your awesome contribution.
Then, please replace this w... | null | d3b3551750ad1c85410e1dfed7aa0e8013ed1d37 | null | low | [
{
"filename": "src/transformers/models/grounding_dino/modeling_grounding_dino.py",
"patch": "@@ -1580,7 +1580,7 @@ def _set_gradient_checkpointing(self, module, value=False):\n Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide\n ... |
nodejs/node | 61,358 | test: reveal wpt evaluation errors in status files | Refs: https://github.com/nodejs/node/pull/61316#discussion_r2679735413 | null | 13acafb2821c1b06038f5c9120b768cfec4338fd | null | low | [
{
"filename": "test/common/wpt.js",
"patch": "@@ -712,7 +712,7 @@ class WPTRunner {\n spec,\n {\n status: NODE_UNCAUGHT,\n- name: 'evaluation in WPTRunner.runJsTests()',\n+ name: `${err}`,\n message: err.message,\n s... |
electron/electron | 49,636 | fix: possible crash in FileSystem API | Backport of #49578
See that PR for details.
Notes: Fixed a crash that could occur when using the File System Access API. | null | a86261ad083ffa27aa64becec48890508cf478f8 | null | low | [
{
"filename": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -400,31 +400,47 @@ class FileSystemAccessPermissionContext::PermissionGrantImpl\n }\n }\n \n+ // Updates the in-memory permission grant for the `new_path` in the `grants`\n+ // map using the same ... |
facebook/react | 33,701 | [devtools] fix: check if profiling for all profiling hooks | Follow-up to https://github.com/facebook/react/pull/33652.
Don't know how the other were missed. Double-checked that Profiler works in dev mode.
Now all hooks start with `!isProfiling` check and return, if true. | 58ac15cdc953a21ac1b352b6300abc3da87fa3d6 | 5f71eed2ebade22ffd374d291b2a21d94c35ffa7 | 25 | medium | [
{
"filename": "packages/react-devtools-shared/src/backend/profilingHooks.js",
"patch": "@@ -298,14 +298,16 @@ export function createProfilingHooks({\n }\n \n function markCommitStarted(lanes: Lanes): void {\n- if (isProfiling) {\n- recordReactMeasureStarted('commit', lanes);\n-\n- // TODO (... |
ggml-org/llama.cpp | 18,716 | server : adjust unified KV cache tests | ref https://github.com/ggml-org/llama.cpp/pull/18700#issuecomment-3728695581 | null | f307926482a465a6c7af5f212f365d50232d9cfb | null | low | [
{
"filename": "tools/server/tests/unit/test_completion.py",
"patch": "@@ -393,12 +393,12 @@ def test_completion_unified(n_ctx, n_slots, n_predict_vals, expected_success):\n for res, n_predict, expect_ok in zip(results, n_predict_vals, expected_success):\n if expect_ok:\n assert res.s... |
ollama/ollama | 9,933 | server/internal/client/ollama: cache completed chunks |
This change adds tracking of download chunks during the pull process so
that subsequent pulls can skip downloading already completed chunks.
This works across restarts of ollama.
Currently, download state will be lost if a prune is triggered during a
pull (e.g. restart or remove). This issue should be addressed in a
... | ce929984a33230269905e0e3cfa335cb8d6ba781 | ef27d52e7957e00fe664e7dc73cff2714f85468f | 15 | medium | [
{
"filename": "server/internal/client/ollama/registry.go",
"patch": "@@ -421,14 +421,6 @@ func (r *Registry) Push(ctx context.Context, name string, p *PushParams) error {\n \treturn err\n }\n \n-func canRetry(err error) bool {\n-\tvar re *Error\n-\tif !errors.As(err, &re) {\n-\t\treturn false\n-\t}\n-\tretu... |
vercel/next.js | 89,003 | Update Rspack production test manifest | This auto-generated PR updates the production integration test manifest used when testing Rspack. | 403538a6f8b409e9b62e89b2d25829e10cd68681 | 9ebd335839a5f707ac98178bbe6ed83bdab622ba | 15 | medium | [
{
"filename": "test/rspack-build-tests-manifest.json",
"patch": "@@ -7113,7 +7113,6 @@\n \"runtime prefetching in a page includes headers, but not dynamic content\",\n \"runtime prefetching in a page includes root params, but not dynamic content\",\n \"runtime prefetching in a page include... |
facebook/react | 33,700 | [devtools] fix: fallback to reading string stack trace when failed | Discovered while testing with Hermes. | 3fc1bc6f28bec1742b5f07d23148f25927e21d41 | 455424dbf3d46d7e9326a64409de063e8f768848 | 3 | high | [
{
"filename": "packages/react-devtools-shared/src/backend/utils/index.js",
"patch": "@@ -381,7 +381,7 @@ function collectStackTrace(\n // $FlowFixMe[prop-missing]\n typeof callSite.getEnclosingColumnNumber === 'function'\n ? (callSite: any).getEnclosingColumnNumber()\n- : ... |
ollama/ollama | 10,005 | runner: Release semaphore and improve error messages on failures | If we have an error after creating a new sequence but before finding a slot for it, we return without releasing the semaphore. This reduces our parallel sequences and eventually leads to deadlock.
In practice this should never happen because once we have acquired the semaphore, we should always be able to find a slo... | 5d097277ef8b08c86f354b54596976869998257d | b2a465296d7131ca440fd81c1bee888f4103a585 | 1 | medium | [
{
"filename": "runner/llamarunner/runner.go",
"patch": "@@ -599,7 +599,7 @@ func (s *Server) completion(w http.ResponseWriter, r *http.Request) {\n \t\tif errors.Is(err, context.Canceled) {\n \t\t\tslog.Info(\"aborting completion request due to client closing the connection\")\n \t\t} else {\n-\t\t\tslog.Er... |
facebook/react | 28,635 | Add support for preload media to ReactDOM | ## Summary
This PR adds support for `media` option to `ReactDOM.preload()`, which is needed when images differ between screen sizes (for example mobile vs desktop).
Tests copied from https://github.com/facebook/react/pull/27129 (thanks @damnsamn!)
## How did you test this change?
Ran the tests from https://... | 323b6e98a76fe6ee721f10d327a9a682334d1a97 | 78328c0c4d70c9b9ee4ad2d6a2319c95e628dd2d | 4 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFloat-test.js",
"patch": "@@ -4261,6 +4261,91 @@ body {\n );\n });\n \n+ it('should handle media on image preload', async () => {\n+ function App({isClient}) {\n+ ReactDOM.preload('/server', {\n+ as: 'image',\n+ imageSrcSet... |
huggingface/transformers | 43,433 | Patch set_attn_implementation for Windows | # What does this PR do?
It patches the following on Windows devices:
```python
from transformers import ChineseCLIPModel
model = ChineseCLIPModel.from_pretrained("OFA-Sys/chinese-clip-vit-base-patch16")
model.set_attn_implementation("eager")
print(model.config._attn_implementation)
```
```
Traceback (most ... | 2d4d8fe4aa3ad29986c5c7e831e1fcf119efe8ae | 388313e7466255525187ac6218de03313fe589af | 20 | medium | [
{
"filename": "src/transformers/modeling_utils.py",
"patch": "@@ -1909,7 +1909,7 @@ def _can_set_attn_implementation(cls) -> bool:\n opening the file, but avoids maintaining yet another property flag.\n \"\"\"\n class_file = sys.modules[cls.__module__].__file__\n- with open(cl... |
vuejs/vue | 9,684 | test(observe): remove unused test code | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [ ] Bugf... | null | 2747a657654d1006bf7061faec1b3029fb9b4432 | null | low | [
{
"filename": "test/unit/modules/observer/observer.spec.js",
"patch": "@@ -226,19 +226,7 @@ describe('Observer', () => {\n })\n \n observe(obj)\n- // mock a watcher!\n- const watcher = {\n- deps: [],\n- addDep: function (dep) {\n- this.deps.push(dep)\n- dep.addSub(this)... |
vuejs/vue | 9,680 | [automated] Patreon sponsors update | This is an automated pull request. | eafea3134e19aaaed1937657553bc7a101acd869 | aa043347818a39da695375697e8ae2b9afb846c8 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -209,6 +209,11 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"148px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/bestvpn_co.png\">\n </a>\n </td>\... |
ollama/ollama | 10,032 | ollamarunner: Ensure batch size limits are not exceeded | With the llama runner, we can generate up to NUM_PARALLEL batches at once, which will then get broken up to into individual batches to get executed by llama.cpp (i.e. we add up to 2048 tokens and this gets split into 4 batches of 512 tokens at default settings).
This splitting can improve parallelism on multi-GPU sy... | 74bd09652d69c77a4bed34b3afda74c87295115b | 5d097277ef8b08c86f354b54596976869998257d | 15 | medium | [
{
"filename": "runner/ollamarunner/runner.go",
"patch": "@@ -267,6 +267,9 @@ type Server struct {\n \t// KV cache\n \tcache *InputCache\n \n+\t// next sequence for prompt processing to avoid starvation\n+\tnextSeq int\n+\n \t// multimodalHash generates hashes for comparing equality\n \t// of non-text data\n... |
ggml-org/llama.cpp | 20,583 | sycl : fix for untransposed GDA recurrent state | cont #20443 | a93c0ef0fa9ad7b6afed0ac5245d854870b8685e | ebbf544ed1008e8643add8d7cccd96516b14fa48 | 22 | medium | [
{
"filename": "ggml/src/ggml-sycl/gated_delta_net.cpp",
"patch": "@@ -55,7 +55,7 @@ void gated_delta_net_sycl(const float * q,\n #pragma unroll\n for (int r = 0; r < rows_per_lane; r++) {\n const int i = r * warp_size + lane;\n- s_shard[r] = curr_state[i * S_v + col];\n+ s_sha... |
vuejs/vue | 9,675 | [automated] Patreon sponsors update | This is an automated pull request. | 19c0f80d2cfaa1327aa019663b2e33dff6be0787 | eafea3134e19aaaed1937657553bc7a101acd869 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -204,6 +204,11 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"148px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/passionate_people.png\">\n </a>\n ... |
huggingface/transformers | 43,440 | Make bot don't fail the commands | # What does this PR do?
Let's not fail if bot can't fix | c173472e58538c1e42a83ee9ef9d137854874057 | e4f63302789932da47fbca8849428c8092dc0cc3 | 3 | high | [
{
"filename": ".github/workflows/pr-repo-consistency-bot.yml",
"patch": "@@ -153,6 +153,9 @@ jobs:\n - name: Run checks with trusted script\n id: run_checks\n run: |\n+ # Continue on errors (like Makefile's - prefix)\n+ set +e\n+ \n # Security: Copy trusted ... |
electron/electron | 49,636 | fix: possible crash in FileSystem API | Backport of #49578
See that PR for details.
Notes: Fixed a crash that could occur when using the File System Access API. | null | a86261ad083ffa27aa64becec48890508cf478f8 | null | low | [
{
"filename": "shell/browser/file_system_access/file_system_access_permission_context.cc",
"patch": "@@ -400,31 +400,47 @@ class FileSystemAccessPermissionContext::PermissionGrantImpl\n }\n }\n \n+ // Updates the in-memory permission grant for the `new_path` in the `grants`\n+ // map using the same ... |
nodejs/node | 60,843 | util: improve textencoder encodeInto performance | Port of https://github.com/cloudflare/workerd/pull/5448
Co-authored-by: Erik Corry (@erikcorry)
Co-authored-by: Daniel Lemire (@lemire)
This path can be optimized even more when Chromium PR (for updating simdutf https://chromium-review.googlesource.com/c/chromium/src/+/7199521) lands and v8 updates and includes ... | null | b1e941e7b2590d3d7fed76a9de5e467fd04d6da3 | null | low | [
{
"filename": "src/encoding_binding.cc",
"patch": "@@ -6,8 +6,10 @@\n #include \"node_external_reference.h\"\n #include \"simdutf.h\"\n #include \"string_bytes.h\"\n+#include \"util.h\"\n #include \"v8.h\"\n \n+#include <algorithm>\n #include <cstdint>\n \n namespace node {\n@@ -71,6 +73,113 @@ InternalFiel... |
facebook/react | 33,697 | [devtools] fix: support optionality of structured stack trace function name | Follow-up to https://github.com/facebook/react/pull/33680.
Turns out `.getFunctionName` not always returns string. | 91d097b2c588a0977a7a10ed12512dc8a34e3a5b | 3fc1bc6f28bec1742b5f07d23148f25927e21d41 | 11 | medium | [
{
"filename": "packages/react-devtools-shared/src/backend/utils/index.js",
"patch": "@@ -360,8 +360,9 @@ function collectStackTrace(\n const callSite = structuredStackTrace[i];\n const name = callSite.getFunctionName();\n if (\n- name.includes('react_stack_bottom_frame') ||\n- name.inc... |
huggingface/transformers | 43,437 | Yet another fix | # What does this PR do?
Yet another fix | 236a8e9d9dc72f97f227d7eab6675651d50d990f | c173472e58538c1e42a83ee9ef9d137854874057 | 1 | high | [
{
"filename": ".github/workflows/pr-repo-consistency-bot.yml",
"patch": "@@ -133,21 +133,22 @@ jobs:\n - name: Fetch and checkout PR code manually\n env:\n PR_HEAD_REPO_FULL_NAME: ${{ needs.get-pr-info.outputs.PR_HEAD_REPO_FULL_NAME }}\n+ PR_HEAD_REF: ${{ needs.get-pr-info.o... |
ollama/ollama | 10,042 | Adding Writeopia to Ollama in Readme | Adding Writeopia (https://writeopia.io) | e5d84fb90b21d71f8eb816656ca0b34191425216 | 071a9872cb76f07d09dc8a3c65046d35d921f4e6 | 5 | medium | [
{
"filename": "README.md",
"patch": "@@ -395,6 +395,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Ellama](https://github.com/zeozeozeo/ellama) (Friendly native app to chat with an Ollama instance)\n - [screenpipe](https://github.com/mediar-ai/screenpipe) Build agents powered by you... |
vuejs/vue | 9,667 | fix(scheduler): getNow detection can randomly fail (fix #9632) | The previous detection code compared time stamps based on Date.now()
which are not monotonic, so the check could fail due to clock skew or
adjustments.
This fix changes the check to compare against performance.now() if it is
supported, because it is monotonic (strictly increasing).
<!--
Please make sure to re... | da77d6a98bdccd8a2c8bfdfe6b9cb46efcb1193c | ef2a380c6eb6bd1a7ff516c357dafa717e75a745 | 3 | high | [
{
"filename": "src/core/observer/scheduler.js",
"patch": "@@ -51,7 +51,7 @@ if (\n inBrowser &&\n window.performance &&\n typeof performance.now === 'function' &&\n- getNow() > document.createEvent('Event').timeStamp\n+ document.createEvent('Event').timeStamp <= performance.now()\n ) {\n // if the... |
huggingface/transformers | 43,434 | fix `pr-repo-consistency-bot.yml` | # What does this PR do?
`check_modular_conversion` needs the repo. has the `main` branch info to compare against the PR changes. | a1306676e920c58ec0818059d59a71aed57f9f60 | 236a8e9d9dc72f97f227d7eab6675651d50d990f | 1 | high | [
{
"filename": ".github/workflows/pr-repo-consistency-bot.yml",
"patch": "@@ -145,6 +145,10 @@ jobs:\n git fetch --depth=1 pr-origin ${PR_HEAD_SHA}\n git checkout ${PR_HEAD_SHA}\n \n+ # Also fetch main branch from upstream for comparison (required by `check_modular_conversion`)\n... |
ggml-org/llama.cpp | 20,593 | ci : only save openvino caches on github-hosted master | cont #15307 | 9cd4ebcfb1ceb3b4af6276089252dc27690e98ba | b91d7dfe5bb3745147ee3a5f18be8d4f803b0e84 | 7 | medium | [
{
"filename": ".github/workflows/build-self-hosted.yml",
"patch": "@@ -222,15 +222,7 @@ jobs:\n id: checkout\n uses: actions/checkout@v6\n \n- - name: Use OpenVINO Toolkit Cache\n- uses: actions/cache@v5\n- id: cache-openvino\n- with:\n- path: ./openvino_to... |
facebook/react | 33,682 | Remove now dead argument from resolveClassComponentProps |
No longer used after https://github.com/facebook/react/pull/33648
| 602917c8cb521e6f9b8eae7070985e2a698fc0d0 | 73aa744b7029556430f409ec3887a714940698ba | 1 | medium | [
{
"filename": "packages/react-reconciler/src/ReactFiberBeginWork.js",
"patch": "@@ -2033,7 +2033,7 @@ function mountLazyComponent(\n \n if (typeof Component === 'function') {\n if (isFunctionClassComponent(Component)) {\n- const resolvedProps = resolveClassComponentProps(Component, props, false);... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.