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 |
|---|---|---|---|---|---|---|---|---|
ollama/ollama | 8,767 | readme: add MinimalNextOllamaChat to community-integrations | 2ef3c803a151a0a9b1776c9ebe6a7e86b3971660 | f4321a421caf4df3ebe4bfdacc3b2e27e911761b | 9 | medium | [
{
"filename": "README.md",
"patch": "@@ -370,6 +370,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [aidful-ollama-model-delete](https://github.com/AidfulAI/aidful-ollama-model-delete) (User interface for simplified model cleanup)\n - [Perplexica](https://github.com/ItzCrazyKns/Perple... | |
ggml-org/llama.cpp | 20,119 | convert : register Qwen 3.5 ForCausalLM for text only | Support text only versions of Qwen 3.5.
Fixes #20116
Fixes #20102 | 92f7da00b49ad814b95832dd6610a825bbdd3033 | cf232515c9b1e08dbf65cd7f756124cfd14cd2b2 | 2 | high | [
{
"filename": "convert_hf_to_gguf.py",
"patch": "@@ -4842,12 +4842,12 @@ def modify_tensors(self, data_torch: Tensor, name: str, bid: int | None) -> Iter\n yield from super().modify_tensors(data_torch, name, bid)\n \n \n-@ModelBase.register(\"Qwen3_5ForConditionalGeneration\")\n+@ModelBase.register(... |
ollama/ollama | 8,737 | fix docker build-args | `env` context is not accessible from `job.*.strategy`. since it's in the environment, just tell Docker to use the environment variable
> You can also use the --build-arg flag without a value, in which case the daemon propagates the value from the local environment into the Docker container it's building
https://d... | 39fd89308c0bbe26311db583cf9729f81ffa9a94 | 475333d533e088538e5d77c0ba65ea60833b2c77 | 1 | high | [
{
"filename": ".github/workflows/release.yaml",
"patch": "@@ -312,16 +312,18 @@ jobs:\n - flavor: 'latest=false'\n platforms: linux/amd64,linux/arm64\n build-args: |\n- CGO_CFLAGS=${{ env.CGO_CFLAGS }}\n- CGO_CXXFLAGS=${{ env.CGO_CXXFLAGS }}\n- ... |
electron/electron | 49,232 | build: disallow non-maintainer changes to GitHub Actions workflows | Backport of #48038.
See that PR for details.
Notes: none | null | bc8ecdf96ffd2648735a50702e594cb53275fe89 | null | low | [
{
"filename": ".github/workflows/non-maintainer-dependency-change.yml",
"patch": "@@ -1,16 +1,18 @@\n-name: Check for Non-Maintainer Dependency Change\n+name: Check for Disallowed Non-Maintainer Change\n \n on:\n pull_request_target:\n paths:\n - 'yarn.lock'\n - 'spec/yarn.lock'\n+ - ... |
vercel/next.js | 88,224 | Tests: Reduce loglines from apply patch delay | Apply #83800 without merge conflicts. | null | 16c7ed28a27522e41f8efaee69c877a4ad4383fd | null | low | [
{
"filename": "test/lib/next-modes/next-dev.ts",
"patch": "@@ -150,7 +150,7 @@ export class NextDevInstance extends NextInstance {\n }\n }\n \n- console.log('running', shellQuote(startArgs))\n+ require('console').log('running', shellQuote(startArgs))\n await new Promise<void>((resolve, r... |
ollama/ollama | 8,715 | build: set CFLAGS for cpu | `CPPFLAGS` doesn't get inserted into the right place and gets overwritten by the default `CFLAGS='-O2 -g'`. Set `CFLAGS` in the place it matters most in code and optionally configure it globally through `CGO_CFLAGS` and `CGO_CXXFLAGS` for release | 548a9f56a6315316481a9a901f77922cb77e0f68 | 39fd89308c0bbe26311db583cf9729f81ffa9a94 | 1 | medium | [
{
"filename": ".github/workflows/release.yaml",
"patch": "@@ -5,6 +5,10 @@ on:\n tags:\n - 'v*'\n \n+env:\n+ CGO_CFLAGS: '-O3'\n+ CGO_CXXFLAGS: '-O3'\n+\n jobs:\n setup-environment:\n runs-on: ubuntu-latest\n@@ -291,7 +295,7 @@ jobs:\n - uses: docker/setup-buildx-action@v3\n - ... |
nodejs/node | 61,050 | tools: simplify `notify-on-push` | Now that we have the repo setup to reject commits that do not contain any metadata, we can remove the custom logic that was trying to catch commits merged using the default commit message.
This will also make invalid message being reported as a failure, which IMO makes more sense that the current setting that always... | null | 25947d6504c0e01d8897be5b78292e3e01d16fc9 | null | low | [
{
"filename": ".github/workflows/notify-on-push.yml",
"patch": "@@ -27,36 +27,20 @@ jobs:\n SLACK_USERNAME: nodejs-bot\n SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}\n \n- notifyOnMissingMetadata:\n- name: Notify on Push on `main` that lacks metadata\n+ validateCommitMessage:\n+ n... |
ggml-org/llama.cpp | 20,101 | opencl: add `set`, i32 for `cpy` | Add `set` and support i32 for `cpy`. Also some minor refactoring for `cpy` host code. | 24350fdf9bc53aaf28d695f60a7bf5641d370698 | 69fd345335a5d637f72ccb765c9b5fe0b848da48 | 12 | medium | [
{
"filename": "ggml/src/ggml-opencl/ggml-opencl.cpp",
"patch": "@@ -416,7 +416,6 @@ struct ggml_backend_opencl_context {\n cl_program program_add;\n cl_program program_add_id;\n cl_program program_clamp;\n- cl_program program_cpy;\n cl_program program_cvt;\n cl_program program_diag_ma... |
huggingface/transformers | 42,850 | Add `.on_push_begin()` callback to Trainer and implement for `TrackioCallback` | # 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... | 780cc65907949a48d6d4908ec851c9dabe6ee455 | 7f52a2a4ea8ab49b7f069df7fac58a5b280d4919 | 25 | medium | [
{
"filename": "src/transformers/integrations/integration_utils.py",
"patch": "@@ -940,6 +940,8 @@ class TrackioCallback(TrainerCallback):\n ```\n \"\"\"\n \n+ SPACE_URL = \"https://huggingface.co/spaces/{space_id}\"\n+\n def __init__(self):\n has_trackio = is_trackio_available()\n ... |
ollama/ollama | 8,706 | build: set goflags in linux release | GOFLAGS is set in the environment but need to tell docker to forward it to the build context | dcfb7a105c455ae8d44a06b3380731d8b1ffcc22 | 3f0cb36bdbe4dd6ac35a39598c7253cb0cf1349a | 4 | medium | [
{
"filename": ".github/workflows/release.yaml",
"patch": "@@ -291,7 +291,7 @@ jobs:\n - uses: docker/setup-buildx-action@v3\n - run: |\n apt-get update && apt-get install pigz\n- for TARGET in ${{ matrix.targets }}; do docker buildx build --platform $PLATFORM --target $TARGET ... |
facebook/react | 33,068 | [Fizz] Ignore error if content node is gone | We normally expect the segment to exist whatever the client does while streaming. However, when hydration errors at the root of the shell for a whole document render, then we clear nodes from body which can include our segments. We don't need them anymore because we switched to client rendering.
It triggers an error... | null | 71797c871b6bfa45988cba38f3388bac095b26cf | null | low | [
{
"filename": "packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineCodeStrings.js",
"patch": "@@ -4,7 +4,7 @@\n export const clientRenderBoundary =\n '$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data=\"$!\",a=a.dataset,c&&(a.dg... |
ollama/ollama | 8,702 | discover: fix default LibOllamaPath value | dcfb7a105c455ae8d44a06b3380731d8b1ffcc22 | 5d75d837efc9315c19f538f2b2130baf5fbc242a | 2 | high | [
{
"filename": "discover/path.go",
"patch": "@@ -24,30 +24,34 @@ var LibOllamaPath string = func() string {\n \t\treturn \"\"\n \t}\n \n-\tlibPath := filepath.Dir(exe)\n+\tvar libPath string\n \tswitch runtime.GOOS {\n \tcase \"windows\":\n \t\tlibPath = filepath.Join(filepath.Dir(exe), \"lib\", \"ollama\")\... | |
vuejs/vue | 7,676 | fix(refs): allow ref key to be zero (fix #7669) | prevents missing elements when :ref value is "0"
fix #7669
<!--
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 ch... | null | e396eb3445904f11232f2355f03e8356173d0e31 | null | low | [
{
"filename": "src/core/vdom/modules/ref.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { remove } from 'shared/util'\n+import { remove, isDef } from 'shared/util'\n \n export default {\n create (_: any, vnode: VNodeWithData) {\n@@ -19,7 +19,7 @@ export default {\n \n export function registerRef... |
nodejs/node | 61,115 | doc: add @avivkeller to collaborators | Fixes: #60937
(Re-open of #61113 with the correct branch. Sorry for my first mistake as a collaborator xD) | 240382451df116493185db5fe3ca2d08d23bd6c9 | 4e1f39b678b37017ac9baa0971e3aeecd3b67b51 | 4 | medium | [
{
"filename": "README.md",
"patch": "@@ -287,6 +287,8 @@ For information about the governance of the Node.js project, see\n **Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him) - [Support me](https://github.com/sponsors/anonrig)\n * [atlowChemi](https://github.com/atlowChemi) -\n **Chemi Atlow** <<chemi@atl... |
ggml-org/llama.cpp | 20,068 | ggml-webgpu: Add the support of `GGML_OP_CONCAT` | Hello. This PR adds `GGML_OP_CONCAT` support to the WebGPU backend. This op is used by models such as DeepSeek-V2.
This change supports two types `F32`, `I32` to match the types covered by `test_concat` in `test-backend-ops`. | 49a7564ac1e845d7d7d61e9236242282dc5d8248 | 541bf376229d6c5cb61e4eb59b3c7629755b8271 | 10 | medium | [
{
"filename": "docs/ops.md",
"patch": "@@ -24,7 +24,7 @@ Legend:\n | ARGSORT | ❌ | ✅ | ✅ | ✅ | ✅ | 🟡 | 🟡 | ✅ | ✅ | ❌ | ❌ |\n | CEIL | ❌ | ❌ | ✅ | 🟡 | ❌ | ❌ | ✅ | 🟡 | ✅ | ❌ | ❌ |\n | CLAMP | ❌ | ✅ | ✅ | ✅ | 🟡 | 🟡 | ✅ | 🟡 |... |
vuejs/vue | 7,600 | Edit documentation for grammar and consistency | <!--
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... | 8053eb1fba4202274efed11044679e011a1e525b | 39d58e521a4a6bc4c0d42f17453421ae155ec04f | 2 | medium | [
{
"filename": ".github/CONTRIBUTING.md",
"patch": "@@ -131,10 +131,10 @@ As a pure community-driven project without major corporate backing, we also welc\n \n ### What's the difference between Patreon and OpenCollective?\n \n-Funds donated via Patreon goes directly to support Evan You's full-time work on Vu... |
ollama/ollama | 8,449 | parser: fix parsing Modelfiles with multiple FROM commands | Fixes https://github.com/ollama/ollama/issues/8448 | 2539f2dbf99ec1b8f44ece884bf2c8678fca3127 | 42cf4db6017a949c2decd1bb9b6cac2468aceeaf | 3 | medium | [
{
"filename": "parser/parser.go",
"patch": "@@ -62,7 +62,13 @@ func (f Modelfile) CreateRequest(relativeDir string) (*api.CreateRequest, error)\n \t\t\t\treturn nil, err\n \t\t\t}\n \n-\t\t\treq.Files = digestMap\n+\t\t\tif req.Files == nil {\n+\t\t\t\treq.Files = digestMap\n+\t\t\t} else {\n+\t\t\t\tfor k,... |
vercel/next.js | 88,313 | Time logs: Show full millisecond instead of 1 decimal | ## Fix: Remove unnecessary decimal place in millisecond duration formatting
### What
Fixed `durationToString` to display whole milliseconds (e.g., "193ms") instead of showing a redundant decimal place (e.g., "193.0ms").
### Why
The "Ready in X" message was displaying durations like "Ready in 193.0ms" which looks in... | null | 6caeccb1fea08e14bfd07456c18abb2cf90519ea | null | low | [
{
"filename": "packages/next/src/build/duration-to-string.ts",
"patch": "@@ -21,7 +21,7 @@ const MILLISECONDS_THRESHOLD_NANOSECONDS = 2_000_000 // 2 milliseconds in nanose\n * - >= 2 minutes: show in minutes with 1 decimal place (e.g., \"2.5min\")\n * - >= 40 seconds: show in whole seconds (e.g., \"45s\")... |
electron/electron | 49,233 | build: disallow non-maintainer changes to GitHub Actions workflows | Backport of #48038.
See that PR for details.
Notes: none | null | 919f4110af532326299d04f7021ee4d8917fd136 | null | low | [
{
"filename": ".github/workflows/non-maintainer-dependency-change.yml",
"patch": "@@ -1,16 +1,18 @@\n-name: Check for Non-Maintainer Dependency Change\n+name: Check for Disallowed Non-Maintainer Change\n \n on:\n pull_request_target:\n paths:\n - 'yarn.lock'\n - 'spec/yarn.lock'\n+ - ... |
vuejs/vue | 7,597 | test(types): update TS version and fix types test | <!--
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... | 782b66c790cee4a4998f48704bd0b8f643a43aca | 2d168f1ba11d77cb2f2caa3356de86e99aba8da6 | 9 | medium | [
{
"filename": "package-lock.json",
"patch": "@@ -9580,9 +9580,9 @@\n \"dev\": true\n },\n \"typescript\": {\n- \"version\": \"2.6.2\",\n- \"resolved\": \"https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz\",\n- \"integrity\": \"sha1-PFtv1/beCRQmkCfwPAlGdY92c6Q=\",\n+ ... |
ollama/ollama | 8,604 | readme: add AI Toolkit for VSCode to community integrations | Add [AI Toolkit for VSCode](https://marketplace.visualstudio.com/items?itemName=ms-windows-ai-studio.windows-ai-studio) to community integrations.
AI Toolkit for VSCode ollama support: https://aka.ms/ai-tooklit/ollama-docs | 453e4d090bd00692c59b79a483c355ec1e57065c | 2ef3c803a151a0a9b1776c9ebe6a7e86b3971660 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -369,6 +369,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Minima](https://github.com/dmayboroda/minima) (RAG with on-premises or fully local workflow)\n - [aidful-ollama-model-delete](https://github.com/AidfulAI/aidful-ollama-model-delete) (U... |
huggingface/transformers | 42,959 | Fix infinity in JSON serialized files | Currently, there are configuration classes like Mamba2 that serialize non-JSON floats like +/- Infinity or NaN.
This adds an encode/decode attribute at JSON load and save.
This prevents situations such as https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16 where the config.json cannot be parsed by t... | a81e04a92371a6b1ba80018f012b2467bab5d61f | d14d99eadf41fd6702522eaea2f17b346fc5800a | 21 | medium | [
{
"filename": "src/transformers/configuration_utils.py",
"patch": "@@ -16,6 +16,7 @@\n \n import copy\n import json\n+import math\n import os\n import warnings\n from typing import TYPE_CHECKING, Any, Optional, TypeVar, Union\n@@ -50,6 +51,9 @@\n # type hinting: specifying the type of config class that inhe... |
ggml-org/llama.cpp | 20,095 | hexagon: add llama-completion windows runner script | *Make sure to read the [contributing guidelines](https://github.com/ggml-org/llama.cpp/blob/master/CONTRIBUTING.md) before submitting a PR*
| null | 1a29907d2e67b42cd0359911c1b02315481ab107 | null | low | [
{
"filename": "scripts/snapdragon/windows/run-cli.ps1",
"patch": "@@ -46,8 +46,8 @@ if ($null -ne $env:NDEV) {\n \n $env:ADSP_LIBRARY_PATH=\"$basedir\\lib\"\n \n-& \"$basedir\\bin\\llama-completion.exe\" `\n- --no-mmap -no-cnv -m $basedir\\..\\..\\gguf\\$model `\n+& \"$basedir\\bin\\llama-cli.exe\" `\n+ ... |
facebook/react | 33,047 | [compiler][bugfix] Returned functions are not always frozen |
Fixes an edge case in React Compiler's effects inference model.
Returned values should only be typed as 'frozen' if they are (1) local and (2) not a function expression which may capture and mutate this function's outer context. See test fixtures for details
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapl... | null | 12f4cb85c5847758ece81fc95b7eaedc1fb9ebd0 | null | low | [
{
"filename": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -111,7 +111,10 @@ export default function inferReferenceEffects(\n * Initial state contains function params\n * TODO: include module declarations here as well\n */\n- const initialSta... |
ggml-org/llama.cpp | 20,096 | [WebGPU] Fix wait logic for inflight jobs | Fix WebGPU wait logic incorrectly removing futures. WaitAny returns when any future completes, but the previous implementation erased the entire submission entry (aka a vector of futures). Flatten the nested futures structure to a single vector and remove only the futures that are completed.
| 541bf376229d6c5cb61e4eb59b3c7629755b8271 | 24d2ee052795063afffc9732465ca1b1c65f4a28 | 1 | medium | [
{
"filename": "ggml/src/ggml-webgpu/ggml-webgpu.cpp",
"patch": "@@ -123,11 +123,6 @@ struct webgpu_pool_bufs {\n wgpu::Buffer dev_buf;\n };\n \n-// The futures to wait on for a single queue submission\n-struct webgpu_submission_futures {\n- std::vector<wgpu::FutureWaitInfo> futures;\n-};\n-\n // Hold... |
ollama/ollama | 8,551 | Readme - add LlmTornado to libraries | There is already [OllamaSharp](https://github.com/awaescher/OllamaSharp) for .NET, however, business applications often need to rely on a mixture of open-weights and commercial models, hence why I created [LlmTornado](https://github.com/lofcz/LlmTornado) about a year ago. We provide an Ollama demo in our readme and hav... | 021817e59ace5e351b35b2e6881f83a09f038546 | 453e4d090bd00692c59b79a483c355ec1e57065c | 4 | medium | [
{
"filename": "README.md",
"patch": "@@ -481,6 +481,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [GoLamify](https://github.com/prasad89/golamify)\n - [Ollama for Haskell](https://github.com/tusharad/ollama-haskell)\n - [multi-llm-ts](https://github.com/nbonamy/multi-llm-ts) (A Type... |
ollama/ollama | 8,524 | Remove reference to the deleted examples folder | The documentation links the reader to an examples folder which no longer exists. | 294b6f5a220e8678c2b08fd2ab783a99e25c5215 | ca2f9843c8c71491d5abf626c73508e5a1685cea | 1 | high | [
{
"filename": "docs/modelfile.md",
"patch": "@@ -67,8 +67,6 @@ To use this:\n 3. `ollama run choose-a-model-name`\n 4. Start using the model!\n \n-More examples are available in the [examples directory](../examples).\n-\n To view the Modelfile of a given model, use the `ollama show --modelfile` command.\n \... |
ggml-org/llama.cpp | 20,107 | tools : add missing clocale include in mtmd-cli | cont #17331
Fixes #20106 | cb8f4fa3f8e359e61ed570adb8a3c2ce74be5179 | d969e933e172821b4519f66aa4b660bc0846b320 | 4 | medium | [
{
"filename": "tools/mtmd/mtmd-cli.cpp",
"patch": "@@ -13,6 +13,7 @@\n #include <vector>\n #include <limits.h>\n #include <cinttypes>\n+#include <clocale>\n \n #if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__))\n #include <signal.h>",
"additions": 1,
"deletions": 0
}
] |
vercel/next.js | 86,346 | Turbopack: improve error message for incompatible swc plugins | Before:
```
Module not found: Can't resolve 'next/dist/esm/build/templates/helpers'
failed to analyze ecmascript module '[project]/node_modules/.pnpm/next@file+..+next-repo-2bf56e024dbccc85257a8c308492f2375d690b206153b02d3bea2029707d4c38+packa_tacnzof7rtmb5bwqa7bdnfcdbq/node_modules/next/dist/esm/build/templates/hel... | null | 77c69a7115cf0befcb0b3ad0e97419ff9e8989fe | null | low | [
{
"filename": "Cargo.lock",
"patch": "@@ -9903,6 +9903,7 @@ dependencies = [\n \"anyhow\",\n \"async-trait\",\n \"bincode 2.0.1\",\n+ \"either\",\n \"indexmap 2.9.0\",\n \"rustc-hash 2.1.1\",\n \"serde\",",
"additions": 1,
"deletions": 0
},
{
"filename": "crates/next-core/src/next_shar... |
nodejs/node | 61,073 | build: skip build-ci on actions with a separate test step | When run `make run-ci` with CONFIG_FLAGS only set in prior
`make build-ci`, `make run-ci` will try to rebuild everything, instead
of re-use the built result from prior `make build-ci`.
https://github.com/nodejs/node/blob/05f8772096f974190b11eabce0ea657bc5c8c1b1/.github/workflows/test-linux.yml#L77-L80
For examp... | null | b1c01fc8b33c1f7c3d0f5927ef86ff89a9d65461 | null | low | [
{
"filename": ".github/workflows/build-tarball.yml",
"patch": "@@ -138,4 +138,4 @@ jobs:\n - name: Build\n run: make -C \"$TAR_DIR\" build-ci -j4 V=1\n - name: Test\n- run: make -C \"$TAR_DIR\" run-ci -j4 V=1 TEST_CI_ARGS=\"-p dots --measure-flakiness 9\"\n+ run: make -C \"... |
facebook/react | 33,045 | [mdn] Initial experiment for adding performance tool | ## Summary
Add a way for the agent to get some data on the performance of react code
## How did you test this change?
Unit tests | bb74190c2635990ee6dd754c596a5c409b50ccda | 90a124a9802a5ab6509d5838e65b9f4d4fbbc16b | 20 | medium | [
{
"filename": "compiler/packages/react-mcp-server/package.json",
"patch": "@@ -17,13 +17,22 @@\n \"@babel/parser\": \"^7.26\",\n \"@babel/plugin-syntax-typescript\": \"^7.25.9\",\n \"@modelcontextprotocol/sdk\": \"^1.9.0\",\n+ \"@types/jest\": \"^29.5.14\",\n \"algoliasearch\": \"^5.23.3\... |
ollama/ollama | 8,515 | Remove tfs_z from documentation. | tfs_z was removed from llama.cpp in https://github.com/ggerganov/llama.cpp/pull/10071 and the vendor sync in https://github.com/ollama/ollama/pull/7875 propagated it into ollama.
Fixes: https://github.com/ollama/ollama/issues/8514 | 42cf4db6017a949c2decd1bb9b6cac2468aceeaf | 294b6f5a220e8678c2b08fd2ab783a99e25c5215 | 4 | medium | [
{
"filename": "docs/modelfile.md",
"patch": "@@ -155,7 +155,6 @@ PARAMETER <parameter> <parametervalue>\n | temperature | The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8) ... |
huggingface/transformers | 33,389 | Add T5 GGUF loading support | # 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 | dd267fca729621cec18b6199b31671ed9513a82c | null | low | [
{
"filename": "docs/source/en/gguf.md",
"patch": "@@ -85,6 +85,7 @@ For now the supported model architectures are the architectures that have been v\n - StableLM\n - GPT2\n - Starcoder2\n+- T5\n \n ## Example usage\n ",
"additions": 1,
"deletions": 0
},
{
"filename": "src/transformers/integr... |
electron/electron | 49,193 | ci: disallow non-maintainer changes to Yarn files | Backport of #49186
See that PR for details.
Notes: none <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->
| null | ce0850e4f6525531ec2d44b508f9af626d5bec61 | null | low | [
{
"filename": ".github/workflows/non-maintainer-dependency-change.yml",
"patch": "@@ -7,6 +7,8 @@ on:\n - 'spec/yarn.lock'\n - '.github/workflows/**'\n - '.github/actions/**'\n+ - '.yarn/**'\n+ - '.yarnrc.yml'\n \n permissions: {}\n ",
"additions": 2,
"deletions": 0
}
] |
vuejs/vue | 7,391 | Fix transitions on v-show cancelled on next frame (fix #7390) | <!--
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] Bugfix
- [ ] F... | null | 5191f13472d1fc37bdd601079970201fde6bf13e | null | low | [
{
"filename": "src/platforms/web/runtime/modules/transition.js",
"patch": "@@ -149,13 +149,15 @@ export function enter (vnode: VNodeWithData, toggleDisplay: ?() => void) {\n addTransitionClass(el, startClass)\n addTransitionClass(el, activeClass)\n nextFrame(() => {\n- addTransitionClass(el... |
vercel/next.js | 87,216 | [turbopack] Enable inferring module side effects by default | This was disabled for the 16.1 release. so re-enable it just to get rid of the slightly odd `!isStableBuild` pattern and also ensure i don't forget to ship it for 16.2 | a85d888a77707e60c55f1880b7307e4ba285e7a7 | 9aaa75f801b72e1bcb60da2a9bd3bcec9acb110f | 17 | medium | [
{
"filename": "packages/next/src/server/config-shared.ts",
"patch": "@@ -484,7 +484,7 @@ export interface ExperimentalConfig {\n * analyze module code to determine if it has side effects. This can improve tree shaking\n * and bundle size at the cost of some additional analysis.\n *\n- * Defaults ... |
ggml-org/llama.cpp | 20,092 | ggml: fix ggml_is_contiguous_n for ne == 1 | While debugging a test failure for https://github.com/ggml-org/llama.cpp/pull/19802 I found what I believe to be a bug in `ggml_is_contiguous_n`. A test case using the new fused experts from https://github.com/ggml-org/llama.cpp/pull/19139 fails on an assert like `GGML_ASSERT(ggml_is_contiguous_1(a))`. This assertion f... | null | 7f5ee549683d600ad41db6a295a232cdd2d8eb9f | null | low | [
{
"filename": "ggml/src/ggml.c",
"patch": "@@ -1410,16 +1410,14 @@ static bool ggml_is_contiguous_n(const struct ggml_tensor * tensor, int n) {\n }\n next_nb *= tensor->ne[0]/ggml_blck_size(tensor->type);\n for (int i = 1; i < GGML_MAX_DIMS; i++) {\n- if (tensor->ne[i] != 1) {\n- ... |
nodejs/node | 61,082 | doc: warn about short GCM tags visibly | As was pointed out by Félix Charette (@Sideni), the existing runtime deprecation warning may not provide enough visibility of the underlying issue. This commit adds a (not so pretty) warning to the documentation of the relevant API function `setAuthTag()`. The warning will be removed when `DEP0182` will be moved to End... | 159f9c203b16b9cbdb1252c9b90353e3e8ceb6c9 | e20175993a4dc7090ab5419edfb3c4c74cf826c8 | 26 | medium | [
{
"filename": "doc/api/crypto.md",
"patch": "@@ -962,6 +962,15 @@ for `CCM` mode or before [`decipher.final()`][] for `GCM` and `OCB` modes and\n `chacha20-poly1305`.\n `decipher.setAuthTag()` can only be called once.\n \n+Because the `node:crypto` module was originally designed to closely mirror\n+OpenSSL'... |
vuejs/vue | 7,350 | fix(vdom): svg inside foreignObject should be rendered with correct namespace (fix #7330) | **What kind of change does this PR introduce?** (check at least one)
- [x] Bugfix
- [ ] Feature
- [ ] Code style update
- [ ] Refactor
- [ ] Build-related changes
- [ ] Other, please describe:
**Does this PR introduce a breaking change?** (check one)
- [ ] Yes
- [x] No
If yes, please describe the impa... | 956756b1be7084daf8b6afb92ac0da7c24cde2a5 | 05299610ea3e89ddbcfe4d8ede0c298223766423 | 16 | medium | [
{
"filename": "src/core/vdom/create-element.js",
"patch": "@@ -139,7 +139,8 @@ function applyNS (vnode, ns, force) {\n if (isDef(vnode.children)) {\n for (let i = 0, l = vnode.children.length; i < l; i++) {\n const child = vnode.children[i]\n- if (isDef(child.tag) && (isUndef(child.ns) || i... |
facebook/react | 33,030 | [Flight] Defer Elements if the parent chunk is too large | Same principle as #33029 but for Flight.
We pretty aggressively create separate rows for things in Flight (every Server Component that's an async function create a microtask). However, sync Server Components and just plain Host Components are not. Plus we should ideally ideally inline more of the async ones in the s... | null | 49ea8bf5698f017022517be79f5f53e6f6a4dad3 | null | low | [
{
"filename": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMEdge-test.js",
"patch": "@@ -160,6 +160,61 @@ describe('ReactFlightDOMEdge', () => {\n });\n }\n \n+ function dripStream(input) {\n+ const reader = input.getReader();\n+ let nextDrop = 0;\n+ let controller = null;\n... |
electron/electron | 49,180 | build: upgrade yarn to 4.12.0 | Backport of #49176
See that PR for details.
Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
| 78a10033a3e0ef5586ca9355e29a6b896705b9f3 | 866aa1176c39cf435efc7107296c31a057ed3227 | 1 | medium | [
{
"filename": ".yarnrc.yml",
"patch": "@@ -9,4 +9,4 @@ npmMinimalAgeGate: 10080\n npmPreapprovedPackages:\n - \"@electron/*\"\n \n-yarnPath: .yarn/releases/yarn-4.11.0.cjs\n+yarnPath: .yarn/releases/yarn-4.12.0.cjs",
"additions": 1,
"deletions": 1
},
{
"filename": "DEPS",
"patch": "@@ ... |
huggingface/transformers | 42,955 | Add runner specification to CodeQL workflow | # 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 | d54d78f76f4fa5a38f01636c51c99f00e989cf12 | null | low | [
{
"filename": ".github/workflows/codeql.yml",
"patch": "@@ -20,3 +20,4 @@ jobs:\n with:\n languages: '[\"actions\"]'\n queries: 'security-extended,security-and-quality'\n+ runner: 'ubuntu-latest'",
"additions": 1,
"deletions": 0
}
] |
ollama/ollama | 8,487 | Update gpu.md | changed Laptop to Linux since it does not only affect laptop user but Linux user in general | null | 7bb356c6807c8dd2f06a28645cfac307e1e19a50 | null | low | [
{
"filename": "docs/gpu.md",
"patch": "@@ -38,7 +38,7 @@ Numeric IDs may be used, however ordering may vary, so UUIDs are more reliable.\n You can discover the UUID of your GPUs by running `nvidia-smi -L` If you want to\n ignore the GPUs and force CPU usage, use an invalid GPU ID (e.g., \"-1\")\n \n-### Lap... |
electron/electron | 49,176 | build: upgrade yarn to 4.12.0 | > [!IMPORTANT]
> Please note that code reviews and merges will be delayed during our [quiet period in December](https://www.electronjs.org/blog/dec-quiet-period-25) and might not happen until January.
- Resolves #49170
This PR upgrades yarn from 4.11.0 to 4.12.0.
#### Description of Change
<!--
Thank you for ... | fe477ce3aa65316f4e63b0907d117723a1d4c8bc | 8cefc8425c179b1c412b10291fa0ad15ab6409fc | 1 | medium | [
{
"filename": ".yarnrc.yml",
"patch": "@@ -9,4 +9,4 @@ npmMinimalAgeGate: 10080\n npmPreapprovedPackages:\n - \"@electron/*\"\n \n-yarnPath: .yarn/releases/yarn-4.11.0.cjs\n+yarnPath: .yarn/releases/yarn-4.12.0.cjs",
"additions": 1,
"deletions": 1
},
{
"filename": "DEPS",
"patch": "@@ ... |
vercel/next.js | 88,301 | Update Rspack development test manifest | This auto-generated PR updates the development integration test manifest used when testing Rspack. | 3dc0366cc691dbd9cf05ff43bbd238b38578e4f6 | d767729240a2d0269b2bb5f8059cb8dc9af9eb59 | 22 | medium | [
{
"filename": "test/rspack-dev-tests-manifest.json",
"patch": "@@ -2006,12 +2006,12 @@\n },\n \"test/development/jsconfig-path-reloading/index.test.ts\": {\n \"passed\": [\n+ \"jsconfig-path-reloading jsconfig added after starting dev should automatically fast refresh content when path is added... |
vuejs/vue | 7,369 | fix(types): contravariant generic default in ComponentOption | **What kind of change does this PR introduce?** (check at least one)
- [x] Bugfix
**Does this PR introduce a breaking change?** (check one)
- [ ] Yes
- [x] No
**Other information:**
Fix bugs spotted in https://github.com/vuejs/vue-test-utils/pull/317#discussion_r159149553.
Some type theory shenanig... | 49aae6bb157e0650507974b7a9a1b0f2215e400b | 6ee684983b1f3384a4050d7c47cee7c6a325db8b | 17 | medium | [
{
"filename": "types/options.d.ts",
"patch": "@@ -6,16 +6,17 @@ type Constructor = {\n }\n \n // we don't support infer props in async component\n-export type Component<Data=DefaultData<Vue>, Methods=DefaultMethods<Vue>, Computed=DefaultComputed, Props=DefaultProps> =\n+// N.B. ComponentOptions<V> is contra... |
electron/electron | 49,182 | build: upgrade yarn to 4.12.0 | Backport of #49176
See that PR for details.
Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
| 6b2861d0638227388514f4cc3094ba279b2adb63 | 4c06de632ecfaaf27c4fdb4baa6475e6ae5a7531 | 1 | medium | [
{
"filename": ".yarnrc.yml",
"patch": "@@ -9,4 +9,4 @@ npmMinimalAgeGate: 10080\n npmPreapprovedPackages:\n - \"@electron/*\"\n \n-yarnPath: .yarn/releases/yarn-4.11.0.cjs\n+yarnPath: .yarn/releases/yarn-4.12.0.cjs",
"additions": 1,
"deletions": 1
},
{
"filename": "DEPS",
"patch": "@@ ... |
ggml-org/llama.cpp | 20,074 | ggml : use a simple std::thread in AMX without OpenMP | Disabling OpenMP generally provides better inference performance (at least in my testing) but the loading becomes slightly slower.
Benchmark results for `convert_B_packed_format()`:
Before this commit:
N K | No OpenMP OpenMP | Diff | Speedup
-----------------------------------------... | null | 66199c9f03af450df47440998ebf005eae202163 | null | low | [
{
"filename": "ggml/src/ggml-cpu/amx/common.h",
"patch": "@@ -9,6 +9,8 @@\n \n #if defined(GGML_USE_OPENMP)\n #include <omp.h>\n+#else\n+#include <thread>\n #endif\n \n #define TILE_M 16\n@@ -56,18 +58,40 @@ inline void balance211(T n, T nth, T ith, T& n_start, T& n_end) {\n }\n \n template <typename func_t... |
electron/electron | 49,181 | build: upgrade yarn to 4.12.0 | Backport of #49176
See that PR for details.
Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
| 5db7fd8fcaee5e4a8091d149a849f306c7bf552a | 1c856685583dc09d0dee12051e5fdcbd0375871e | 1 | medium | [
{
"filename": ".yarnrc.yml",
"patch": "@@ -9,4 +9,4 @@ npmMinimalAgeGate: 10080\n npmPreapprovedPackages:\n - \"@electron/*\"\n \n-yarnPath: .yarn/releases/yarn-4.11.0.cjs\n+yarnPath: .yarn/releases/yarn-4.12.0.cjs",
"additions": 1,
"deletions": 1
},
{
"filename": "DEPS",
"patch": "@@ ... |
huggingface/transformers | 42,802 | fix error: 'BlockMask' object has no attribute 'dtype' for lasr model | It returns error `AttributeError: 'BlockMask' object has no attribute 'dtype'` when running test case:
`pytest -rA tests/models/lasr/test_modeling_lasr.py::LasrEncoderModelTest::test_flex_attention_with_grads`. This PR will fix this bug.
@eustlb @ebezzam @vasqu pls help review | 537c2e3d7e4e2df84e0f3c1148b85fffcf684110 | 789226c1afe0f1cc9a7696684feddb9263ddc8d2 | 11 | medium | [
{
"filename": "src/transformers/models/lasr/modeling_lasr.py",
"patch": "@@ -421,7 +421,8 @@ class LasrPreTrainedModel(PreTrainedModel):\n _no_split_modules = [\"LasrEncoderBlock\"]\n _supports_flat_attention_mask = True\n _supports_sdpa = True\n- _supports_flex_attn = True\n+ # padding is... |
electron/electron | 49,179 | build: upgrade yarn to 4.12.0 | Backport of #49176
See that PR for details.
Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
| 8282c07a0f0eb9e16036eefd1738e1ccf128d726 | 03121eeaef3d707d934dfd8f96355544e0b995e2 | 1 | medium | [
{
"filename": ".yarnrc.yml",
"patch": "@@ -9,4 +9,4 @@ npmMinimalAgeGate: 10080\n npmPreapprovedPackages:\n - \"@electron/*\"\n \n-yarnPath: .yarn/releases/yarn-4.11.0.cjs\n+yarnPath: .yarn/releases/yarn-4.12.0.cjs",
"additions": 1,
"deletions": 1
},
{
"filename": "DEPS",
"patch": "@@ ... |
facebook/react | 33,065 | [Fizz] Remove globals from external runtime | We never emit any inline functions when we use external runtime so this global shouldn't be needed. | null | 9a52ad9fd9c6211d056942a455435c2804869854 | null | low | [
{
"filename": "packages/react-dom-bindings/src/server/ReactDOMServerExternalRuntime.js",
"patch": "@@ -14,13 +14,6 @@ import {\n completeSegment,\n } from './fizz-instruction-set/ReactDOMFizzInstructionSetExternalRuntime';\n \n-if (!window.$RC) {\n- // TODO: Eventually remove, we currently need to set th... |
facebook/react | 33,042 | [devtools] Restore all Transitions for Tree updates | Stacked on https://github.com/facebook/react/pull/33039
## Summary
Restores all the Transitions removed in https://github.com/facebook/react/pull/33039. We now kick of the fetch when we change the Owner instead of kicking it off in an Effect (you-might-not-need-an-effect).
## How did you test this change?
... | fbf29ccaa3598c6443d8d550aa406f9c6f654076 | fa8e3a251e7840fa220a1649dec616e72658473e | 2 | medium | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/Element.js",
"patch": "@@ -23,6 +23,7 @@ import type {Element as ElementType} from 'react-devtools-shared/src/frontend/ty\n \n import styles from './Element.css';\n import Icon from '../Icon';\n+import {useChangeOwnerAction} from '.... |
huggingface/transformers | 42,946 | fix concat order | # What does this PR do?
Had one in two chances, picked the wrong order 😅
here's[ the original code for reference](https://github.com/facebookresearch/perception_models/blob/3e352cca660658d4b5c90f42a7808b11469e4c66/core/audio_visual_encoder/pe.py#L436-L447)
| 537c2e3d7e4e2df84e0f3c1148b85fffcf684110 | a4d6229197f5be783eb5c951d4850d93110e652a | 10 | medium | [
{
"filename": "src/transformers/models/pe_audio_video/modeling_pe_audio_video.py",
"patch": "@@ -830,24 +830,32 @@ def forward(\n raise ValueError(\"At least two of input_ids, pixel_values_videos, or input_values must be provided\")\n \n if pixel_values_videos is None:\n- audi... |
vercel/next.js | 88,300 | Update Rspack production test manifest | This auto-generated PR updates the production integration test manifest used when testing Rspack. | null | 778c53130db48de3db2afb3e948b45dd4e96ecd2 | null | low | [
{
"filename": "test/rspack-build-tests-manifest.json",
"patch": "@@ -3467,6 +3467,25 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/e2e/app-dir/javascript-urls/javascript-urls.test.ts\": {\n+ \"passed\": [\n+ \"javascript-urls should prevent javascript URLs in link `as`\",\... |
electron/electron | 49,152 | build: upgrade github-app-auth to 3.2.0 | > [!IMPORTANT]
> Please note that code reviews and merges will be delayed during our [quiet period in December](https://www.electronjs.org/blog/dec-quiet-period-25) and might not happen until January.
#### Description of Change
Upgrades our usage of github-app-auth to pickup the latest dependency updates.
<!--
... | 1ff8e8014ab4a6e152e357b62665a7f917a6c541 | 8d5b104c17f9a4ceb7c031ffd2f1e8a7bac31545 | 15 | medium | [
{
"filename": "package.json",
"patch": "@@ -9,7 +9,7 @@\n \"@electron/asar\": \"^4.0.1\",\n \"@electron/docs-parser\": \"^2.0.0\",\n \"@electron/fiddle-core\": \"^1.3.4\",\n- \"@electron/github-app-auth\": \"^2.2.1\",\n+ \"@electron/github-app-auth\": \"^3.2.0\",\n \"@electron/lint-rol... |
nodejs/node | 61,057 | tools: update nixpkgs-unstable to f997fa0f94fb1ce55bccb97f60d41412ae8 | This is an automated update of nixpkgs-unstable to f997fa0f94fb1ce55bccb97f60d41412ae8. | bd426739dcc17ecfef833d81638cf76b4357b0ba | dcb9573d0f90ee0d66001d26514bbdcfd8e0610e | 29 | medium | [
{
"filename": "tools/nix/pkgs.nix",
"patch": "@@ -1,10 +1,10 @@\n arg:\n let\n repo = \"https://github.com/NixOS/nixpkgs\";\n- rev = \"a672be65651c80d3f592a89b3945466584a22069\";\n+ rev = \"f997fa0f94fb1ce55bccb97f60d41412ae8fde4c\";\n nixpkgs = import (builtins.fetchTarball {\n url = \"${repo}/ar... |
ollama/ollama | 8,215 | added source.go for syntax highlighting on code blocks | the code blocks were just shown as raw preformatted text with the `golang` code block.
I changed the code block info string to the value of the `go` language `tm_scope` from linguist in https://github.com/github-linguist/linguist/blob/main/lib/linguist/languages.yml which works fine on my end.
I hope the highligh... | null | b68e8e5727d7df99bccae142cf470f8437afa48a | null | low | [
{
"filename": "docs/template.md",
"patch": "@@ -111,7 +111,7 @@ Keep the following tips and best practices in mind when working with Go template\n \n ChatML is a popular template format. It can be used for models such as Databrick's DBRX, Intel's Neural Chat, and Microsoft's Orca 2.\n \n-```gotmpl\n+```go\n... |
vuejs/vue | 7,314 | fix(compiler): change /<!--/ to /<!\--/ (fix #7298) | need escape '-' to prevent being parsed to comment tag in script tag
fix #7298
<!--
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) -->
... | null | dccd182b6763d8ef1871949029c85495ca958246 | null | low | [
{
"filename": "src/compiler/parser/html-parser.js",
"patch": "@@ -22,7 +22,8 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)\n const startTagClose = /^\\s*(\\/?)>/\n const endTag = new RegExp(`^<\\\\/${qnameCapture}[^>]*>`)\n const doctype = /^<!DOCTYPE [^>]+>/i\n-const comment = /^<!--/\n+// #7298:... |
ggml-org/llama.cpp | 20,094 | impl : use 6 digits for tensor dims | Many models have vocabulary sizes, and thus tensor shapes, with more than 5 digits (ex: Gemma 3's vocab size is 262,208).
I already fixed this for `llama_format_tensor_shape` (tensor) but missed it for `llama_format_tensor_shape` (vector) until now. Oops.
*Make sure to read the [contributing guidelines](https://g... | null | c99909dd0b6589070e2a129fa172c40fa1675453 | null | low | [
{
"filename": "src/llama-impl.cpp",
"patch": "@@ -100,9 +100,9 @@ std::string format(const char * fmt, ...) {\n \n std::string llama_format_tensor_shape(const std::vector<int64_t> & ne) {\n char buf[256];\n- snprintf(buf, sizeof(buf), \"%5\" PRId64, ne.at(0));\n+ snprintf(buf, sizeof(buf), \"%6\" ... |
electron/electron | 49,177 | build: upgrade github-app-auth to 3.2.0 | Backport of #49152
See that PR for details.
Notes: none | 245e70aedd8a43ccce2cddd56f30d5d35d79b117 | 8282c07a0f0eb9e16036eefd1738e1ccf128d726 | 10 | medium | [
{
"filename": "package.json",
"patch": "@@ -9,7 +9,7 @@\n \"@electron/asar\": \"^3.2.13\",\n \"@electron/docs-parser\": \"^2.0.0\",\n \"@electron/fiddle-core\": \"^1.3.4\",\n- \"@electron/github-app-auth\": \"^2.2.1\",\n+ \"@electron/github-app-auth\": \"^3.2.0\",\n \"@electron/lint-ro... |
vuejs/vue | 7,308 | Correct the eslint script statement in package.json and correct the f… | …ormat.
<!--
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)
... | 144a4dd860b20ca48263bac150286f627e08d953 | 44420b7bbcd9f6f4b0df3263e19ad19a974fa7f1 | 3 | medium | [
{
"filename": "package.json",
"patch": "@@ -33,7 +33,7 @@\n \"test:ssr\": \"npm run build:ssr && jasmine JASMINE_CONFIG_PATH=test/ssr/jasmine.json\",\n \"test:sauce\": \"npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2\",\n \"test:types\": \"tsc -p ./types/test/tsconfig.json\",\n- ... |
ollama/ollama | 8,428 | Fix absolute path names + gguf detection | This change fixes two issues with the model creation:
1. Absolute pathnames for GGUF files were being treated as a relative pathname; and
2. The GGUF image detection wasn't able to correctly determine if a GGUF file w/o the correct extension was actually a GGUF file.
This change fixes both issues and adds additi... | 32bd37adf805f5224a4fa18c2d4e7f33d9a972d8 | 2539f2dbf99ec1b8f44ece884bf2c8678fca3127 | 9 | medium | [
{
"filename": "parser/expandpath_test.go",
"patch": "@@ -4,21 +4,37 @@ import (\n \t\"os\"\n \t\"os/user\"\n \t\"path/filepath\"\n+\t\"runtime\"\n \t\"testing\"\n )\n \n func TestExpandPath(t *testing.T) {\n \tmockCurrentUser := func() (*user.User, error) {\n \t\treturn &user.User{\n \t\t\tUsername: \"testu... |
electron/electron | 49,178 | build: upgrade github-app-auth to 3.2.0 | Backport of #49152
See that PR for details.
Notes: none
| 2d97f02aa1cdf96bcbc9045ac0fc9ace1c6540e5 | 78a10033a3e0ef5586ca9355e29a6b896705b9f3 | 3 | medium | [
{
"filename": "package.json",
"patch": "@@ -9,7 +9,7 @@\n \"@electron/asar\": \"^3.2.13\",\n \"@electron/docs-parser\": \"^2.0.0\",\n \"@electron/fiddle-core\": \"^1.3.4\",\n- \"@electron/github-app-auth\": \"^2.2.1\",\n+ \"@electron/github-app-auth\": \"^3.2.0\",\n \"@electron/lint-ro... |
vercel/next.js | 88,293 | Turbopack: Use `format!` instead of `anyhow!` inside of `anyhow::Context::with_context` calls | `anyhow!` works here because we just need something that implements `Display`, but `format!` is better. | f7ea163a1c1b3e06a679f038d3a44e3e38bd99b1 | ee9e68872eaffd2c974103503e928d60c83e7075 | 15 | medium | [
{
"filename": "turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs",
"patch": "@@ -5,7 +5,7 @@ use std::{\n sync::{Arc, LazyLock, Mutex, PoisonError, Weak},\n };\n \n-use anyhow::{Context, Result, anyhow};\n+use anyhow::{Context, Result};\n use turbo_bincode::{\n TurboBincodeBuffer, turbo... |
huggingface/transformers | 42,953 | [kernels] Fix failling tests | # What does this PR do?
After moving the use of `get_kernel` from `kernels` to using a wrapper around it from `hub_kernels.py`, we need to adapt the tests to override `get_kernel` inside `integrations/hub_kernels.py` | null | cf0f071eb8d820d29bb90b19e28da7b3a2c2692b | null | low | [
{
"filename": "tests/kernels/test_kernels.py",
"patch": "@@ -44,6 +44,8 @@\n import kernels as kernels_pkg\n from kernels import Device, Mode, kernelize\n \n+ import transformers.integrations.hub_kernels as hub_kernels_pkg\n+\n \n @require_kernels\n @slow\n@@ -95,6 +97,7 @@ def test_forward(self)... |
facebook/react | 33,039 | [devtools] Restore "double-click to view owners tree" functionality |
## Summary
Double clicking an element to view the Owner tree is currently broken. We change the Owner in a Transition and suspend while we fetch the new Owners list. However, we only resolve that Promise in an Effect and Effects don't commit anywhere until the Transition is finished.
We'd have to refactor `Owne... | null | fbf29ccaa3598c6443d8d550aa406f9c6f654076 | null | low | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/TreeContext.js",
"patch": "@@ -891,19 +891,22 @@ function TreeContextController({\n ? store.getIndexOfElementID(store.lastSelectedHostInstanceElementId)\n : null,\n });\n- const dispatchWrapper = useMemo(\n- ... |
electron/electron | 49,162 | build: upgrade github-app-auth to 3.2.0 | Backport of #49152
See that PR for details.
Notes: none
| 32fcfe45052ad55ac069635886adc083f03ba799 | 6b2861d0638227388514f4cc3094ba279b2adb63 | 5 | medium | [
{
"filename": "package.json",
"patch": "@@ -9,7 +9,7 @@\n \"@electron/asar\": \"^3.2.13\",\n \"@electron/docs-parser\": \"^2.0.0\",\n \"@electron/fiddle-core\": \"^1.3.4\",\n- \"@electron/github-app-auth\": \"^2.2.1\",\n+ \"@electron/github-app-auth\": \"^3.2.0\",\n \"@electron/lint-ro... |
nodejs/node | 61,028 | tools: improve log output of `create-release-proposal` | It was bothering me that we were logging out the `BOT_TOKEN`, the solution was simply to move `set -ex` after the preliminary checks. We were also not checking for the presence of `git-node` in the dependency checks, and not explicitly listing the missing deps.
<!--
Before submitting a pull request, please read:
-... | null | 6322071efea46c8f8caf02c8ed504cee194cd661 | null | low | [
{
"filename": "tools/actions/create-release-proposal.sh",
"patch": "@@ -1,7 +1,5 @@\n #!/bin/sh\n \n-set -xe\n-\n GITHUB_REPOSITORY=${GITHUB_REPOSITORY:-nodejs/node}\n BOT_TOKEN=${BOT_TOKEN:-}\n \n@@ -19,10 +17,16 @@ if [ -z \"$GITHUB_REPOSITORY\" ] || [ -z \"$BOT_TOKEN\" ]; then\n exit 1\n fi\n \n-if ! c... |
huggingface/transformers | 42,951 | [Quantization] CI green by end of year | # What does this PR do?
Fixing some tests related to `compute_model_sizes` in bnb, and other tests for `compressed-tensors` | dd8057afa6b2dcc8f3d7c657f612bb0e494c43c5 | b5eea3472f8db9d8a257bf5cb94d280c75bdc480 | 10 | medium | [
{
"filename": "src/transformers/integrations/compressed_tensors.py",
"patch": "@@ -0,0 +1,48 @@\n+# coding=utf-8\n+# Copyright 2025 The HuggingFace Inc. team. All rights reserved.\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance wit... |
ggml-org/llama.cpp | 20,082 | completion : Fix a typo in warning message | resuse -> reuse
| null | 54910bd4f3762b716e90b658beb68d349571057e | null | low | [
{
"filename": "tools/completion/completion.cpp",
"patch": "@@ -376,7 +376,7 @@ int main(int argc, char ** argv) {\n // remove any \"future\" tokens that we might have inherited from the previous session\n if (session_tokens.size() > n_match) {\n if (!llama_memory_seq_... |
vuejs/vue | 7,200 | fix(patch): warn error when children with duplicate key | fix #7199
<!--
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)
... | 604e081d0456ed136b24b5f759c608d153dfae93 | 023f171f58f7f1b36f0b3e69fc6d330366bfdf43 | 25 | medium | [
{
"filename": "src/core/vdom/patch.js",
"patch": "@@ -263,6 +263,9 @@ export function createPatchFunction (backend) {\n \n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n+ if (process.env.NODE_ENV !== 'production') {\n+ checkDuplicateKeys(... |
electron/electron | 49,161 | build: upgrade github-app-auth to 3.2.0 | Backport of #49152
See that PR for details.
Notes: none | 9ec95c0c02c87d05b8967fb8cf0833f105c29c8e | 5db7fd8fcaee5e4a8091d149a849f306c7bf552a | 9 | medium | [
{
"filename": "package.json",
"patch": "@@ -9,7 +9,7 @@\n \"@electron/asar\": \"^3.2.13\",\n \"@electron/docs-parser\": \"^2.0.0\",\n \"@electron/fiddle-core\": \"^1.3.4\",\n- \"@electron/github-app-auth\": \"^2.2.1\",\n+ \"@electron/github-app-auth\": \"^3.2.0\",\n \"@electron/lint-ro... |
vuejs/vue | 7,311 | fixes gold / platinum sponsors on open collective | Fixes https://github.com/opencollective/opencollective/issues/777
| 24947729477c199900115b10bff07f397801fbc1 | c05bbdfc36d0a2777c5721932a06f098860536b9 | 2 | high | [
{
"filename": "README.md",
"patch": "@@ -143,16 +143,16 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h4 align=\"center\">Platinum</h4>\n \n-<a href=\"https://opencollective.com/vuejs/tiers/platinumsponsors/0/website\" target=\"_blank\"><img src=\"https://opencolle... |
vercel/next.js | 88,126 | Fix pack-next script for next-swc | Specifying a folder in `files` didn't work:
https://github.com/vercel/next.js/blob/3bbb2e61d54c46df2b5bb0a4ecd7f0765ff93a72/packages/next-swc/package.json#L6
Previously, that folder wasn't in the tar:
```
tar -tf /Users/niklas/code/next.js-other/tarballs/next-swc.tar
./README.md
... | null | 10213b360b665a0a5ea034d6340c3db7aee7f095 | null | low | [
{
"filename": "scripts/pack-util.ts",
"patch": "@@ -168,11 +168,11 @@ export async function packageFiles(path: string): Promise<string[]> {\n // We add the full path, but check for parent directories too.\n // This catches the case where the whole directory is added and then a single file from the d... |
ollama/ollama | 8,411 | llama: move grammar tests to llama_test.go | null | 61676fb5066fe42f4586d8f951548fcb55cd75bf | null | low | [
{
"filename": "llama/grammar/grammar_test.go",
"patch": "@@ -1,107 +0,0 @@\n-package grammar\n-\n-import (\n-\t\"bufio\"\n-\t\"bytes\"\n-\t\"strings\"\n-\t\"testing\"\n-\n-\t\"github.com/ollama/ollama/llama\"\n-)\n-\n-// https://github.com/ollama/ollama/issues/7978\n-const issue7978JSONSchema = `{\n- \"typ... | |
facebook/react | 32,736 | Use console.timeStamp instead of performance.measure in Component Performance Track | This is a new extension that Chrome added to the existing `console.timeStamp` similar to the extensions added to `performance.measure`. This one should be significantly faster because it doesn't have the extra object indirection, it doesn't return a `PerformanceMeasure` entry and doesn't register itself with the global... | null | cd4e4d759975916a503d14abe46052f9f5826048 | null | low | [
{
"filename": "packages/react-client/src/ReactFlightPerformanceTrack.js",
"patch": "@@ -7,52 +7,35 @@\n * @flow\n */\n \n+/* eslint-disable react-internal/no-production-logging */\n+\n import type {ReactComponentInfo} from 'shared/ReactTypes';\n \n import {enableProfilerTimer} from 'shared/ReactFeatureFla... |
facebook/react | 33,029 | [Fizz] Outline if a boundary would add too many bytes to the next completion | Follow up to #33027.
This enhances the heuristic so that we accumulate the size of the currently written boundaries. Starting from the size of the root (minus preamble) for the shell.
This ensures that if you have many small boundaries they don't all continue to get inlined. For example, you can wrap each paragra... | 8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec | 18212ca960ee2f0acf538c2198f7ba36c3042ecd | 5 | medium | [
{
"filename": "fixtures/ssr/server/render.js",
"patch": "@@ -19,7 +19,7 @@ class ThrottledWritable extends Writable {\n constructor(destination) {\n super();\n this.destination = destination;\n- this.delay = 150;\n+ this.delay = 10;\n }\n \n _write(chunk, encoding, callback) {\n@@ -49,10... |
nodejs/node | 61,035 | tools: fix update-nghttp2 signature verification | Detached signatures must be passed to [`gpgv`](https://www.gnupg.org/documentation/manuals/gnupg/gpgv.html) as a filename before the datafile (which can be stdin but the detached signature file cannot be stdin and cannot be piped in).
Refs: https://github.com/nodejs/node/pull/60113
---
The nghttp2 updater has ... | null | 05f8772096f974190b11eabce0ea657bc5c8c1b1 | null | low | [
{
"filename": "tools/dep_updaters/update-nghttp2.sh",
"patch": "@@ -50,12 +50,13 @@ echo \"Fetching nghttp2 source archive\"\n curl -sL -o \"$NGHTTP2_TARBALL\" \"https://github.com/nghttp2/nghttp2/releases/download/$NGHTTP2_REF/$NGHTTP2_TARBALL\"\n \n echo \"Verifying PGP signature\"\n-curl -sL \"https://gi... |
electron/electron | 49,159 | build(deps): bump actions/stale from 10.1.0 to 10.1.1 | Bumps [actions/stale](https://github.com/actions/stale) from 10.1.0 to 10.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/stale/releases">actions/stale's releases</a>.</em></p>
<blockquote>
<h2>v10.1.1</h2>
<h2>What's Changed</h2>
<h3>Bug Fix</h3>
<ul>
<li>Add Mis... | null | 33f69425651629234103bcf51cf1380d18d61fb6 | null | low | [
{
"filename": ".github/workflows/stale.yml",
"patch": "@@ -17,7 +17,7 @@ jobs:\n id: generate-token\n with:\n creds: ${{ secrets.ISSUE_TRIAGE_GH_APP_CREDS }}\n- - uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # tag: v10.1.0\n+ - uses: actions/stale@99718546... |
ggml-org/llama.cpp | 20,040 | Fix intel documentation link | null | ecd99d6a9acbc436bad085783bcd5d0b9ae9e9e9 | null | low | [
{
"filename": "docs/build.md",
"patch": "@@ -108,7 +108,7 @@ Building through oneAPI compilers will make avx_vnni instruction set available f\n - Using oneAPI docker image:\n If you do not want to source the environment vars and install oneAPI manually, you can also build the code using intel docker conta... | |
vuejs/vue | 7,287 | fix(types): make VNodeChildrenArrayContents type more accurate | <!--
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 | 49aae6bb157e0650507974b7a9a1b0f2215e400b | null | low | [
{
"filename": "types/test/options-test.ts",
"patch": "@@ -1,4 +1,4 @@\n-import Vue from \"../index\";\n+import Vue, { VNode } from \"../index\";\n import { AsyncComponent, ComponentOptions, FunctionalComponentOptions } from \"../index\";\n import { CreateElement } from \"../vue\";\n \n@@ -277,6 +277,19 @@ V... |
huggingface/transformers | 42,928 | fix(tvp): add missing type_vocab_size parameter to TvpConfig | ## Summary
- Fixes #42925
- The `type_vocab_size` parameter was missing from `TvpConfig`, causing `AttributeError` when instantiating `TvpModel`
- Added the parameter with default value of 2, which matches all TVP models on Hugging Face Hub
## Test plan
- [x] Existing tests should pass (this adds a default value that ... | null | b62e5b3e4060c07b0e595f670135d85bb51673fe | null | low | [
{
"filename": "src/transformers/models/tvp/configuration_tvp.py",
"patch": "@@ -68,6 +68,8 @@ class TvpConfig(PreTrainedConfig):\n vocab_size (`int`, *optional*, defaults to 30522):\n Vocabulary size of the Tvp text model. Defines the number of different tokens that can be represented by... |
electron/electron | 49,157 | build(deps): bump actions-cool/issues-helper from 3.7.2 to 3.7.3 | Bumps [actions-cool/issues-helper](https://github.com/actions-cool/issues-helper) from 3.7.2 to 3.7.3.
<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.7.3</h2>
<p><code... | fe0caa0e0d9f5ff3f6238460d448870ed092e178 | a1b2e82778dfa2a08efce8b3e99204edb7e9f993 | 2 | 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@9861779a695cf1898bd... |
vuejs/vue | 7,286 | fix(weex): default value for editor, fix #7165 | /cc @Hanks10100 🌝
<!--
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 le... | 7cc0b559e9e57fcb3baeae5d8d4c8964aa335b5e | e055df82fec0e76e4bc65e5a265b42e208595430 | 1 | medium | [
{
"filename": "test/weex/cases/recycle-list/components/editor.vue",
"patch": "@@ -10,7 +10,7 @@\n props: ['message'],\n data () {\n return {\n- output: this.message | ''\n+ output: this.message || ''\n }\n }\n }",
"additions": 1,
"deletions": 1
},
{
"f... |
ollama/ollama | 8,408 | convert: qwen2 from safetensors | Add native support for converting Qwen2 family models (including Qwen2.5) from safetensors to gguf format so we can run it.
Here is an example of the output model:
https://ollama.com/brxce/qwen2
How to run:
```
./ollama create my-qwen2 -f path/to/Modelfile
```
| null | f6f3713001d8afd0c443ba9eaee2116deab540e5 | null | low | [
{
"filename": "convert/convert.go",
"patch": "@@ -187,6 +187,8 @@ func ConvertModel(fsys fs.FS, ws io.WriteSeeker) error {\n \t\tconv = &gemma2Model{}\n \tcase \"Phi3ForCausalLM\":\n \t\tconv = &phi3Model{}\n+\tcase \"Qwen2ForCausalLM\":\n+\t\tconv = &qwen2Model{}\n \tcase \"BertModel\":\n \t\tconv = &bertM... |
nodejs/node | 60,974 | module: preserve URL in the parent created by createRequire() | Previously, createRequire() does not preserve the URL it gets passed in the mock parent module created, which can be observable if it's used together with module.registerHooks(). This patch adds preservation of the URL if createRequire() is invoked with one.
Fixes: https://github.com/nodejs/node/issues/60973
<!--... | 32ea48d74993c323664e9f62acafba3c8661ad37 | 4f24aff94ad9160bceaf9dcc9cf5235a65f01029 | 22 | medium | [
{
"filename": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -135,7 +135,7 @@ const { BuiltinModule } = require('internal/bootstrap/realm');\n const {\n maybeCacheSourceMap,\n } = require('internal/source_map/source_map_cache');\n-const { pathToFileURL, fileURLToPath, isURL } = require('internal/url')... |
vercel/next.js | 88,296 | Backport (16.1.x): Turbopack: Update to swc_core v50.2.3 (#87841) | This is a backport of https://github.com/vercel/next.js/pull/87841 to the `next-16-1` branch. | null | da37eeebffb73c0aa5434e2b706325b9c506d242 | null | low | [
{
"filename": "Cargo.lock",
"patch": "@@ -600,9 +600,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"47.0.0\"\n+version = \"48.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2159cdc2d6045a129534d16e842e63bf46ccd53a04e079dbd89e2d6a24... |
facebook/react | 33,055 | Hack to recover from reading the wrong Fiber | `requestFormReset` incorrectly tries to get the current dispatch queue from the Fiber. However, the Fiber might be the workInProgress which is an inconsistent state.
This hack just tries the other Fiber if it detects one of the known inconsistent states but there can be more.
Really we should stash the dispatch q... | null | 88b976740467f9dfabae03c79a8eff9033c35050 | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -3355,8 +3355,16 @@ export function requestFormReset(formFiber: Fiber) {\n );\n }\n \n- const stateHook = ensureFormComponentIsStateful(formFiber);\n+ let stateHook: Hook = ensureFormComponentIsStateful(formFiber);\n co... |
huggingface/transformers | 42,922 | Load generation config from nested configs | # What does this PR do?
Fixes https://github.com/huggingface/transformers/issues/42794. The issue was that model's generation params are saved in text config, but we couldn't call `config.get_text_config()` on a dict object. We can delete the second `load_pretrained` because each model gets a default generation conf... | a81e04a92371a6b1ba80018f012b2467bab5d61f | f2c6d2ad358f2190cffdfdf40c6c81e724a2b431 | 12 | medium | [
{
"filename": "src/transformers/generation/configuration_utils.py",
"patch": "@@ -1150,20 +1150,25 @@ def from_model_config(cls, model_config: Union[\"PreTrainedConfig\", dict]) -> \"Ge\n \n # Removes all `None` from the model config dict -- this lets the generation config defaults to take hold\n ... |
vuejs/vue | 7,272 | feat(weex): adjust framework entry APIs and add flow annotations | **What kind of change does this PR introduce?**
- [x] Refactor
**Does this PR introduce a breaking change?**
- [x] No
**Other information:**
### Remove legacy framework APIs
Remove the `init`, `reset`, `getRoot` and `receiveTasks` APIs, which are already implemented in the new version of `weex-js-runt... | 661bfe552e16d3a7036012021ae3746cfc02710e | 472a2896bd4f156be168edfecb6ac432b853beb4 | 11 | medium | [
{
"filename": "flow/weex.js",
"patch": "@@ -1,6 +1,79 @@\n // global flag to be compiled away\n declare var __WEEX__: boolean;\n \n+declare type Weex = {\n+ config: Object;\n+ document: WeexDocument;\n+ requireModule: (name: string) => Object | void;\n+ supports: (condition: string) => boolean | void;\n... |
electron/electron | 49,153 | build: use powershell for Electron build step | Backport of #49144
See that PR for details.
Notes: none
| fe32528c5088fe98eef9c80c2fe95e6d30bb47bc | 46919aaa1b28b5d6cbe373e6f685d0afa4d299fa | 19 | medium | [
{
"filename": ".github/actions/build-electron/action.yml",
"patch": "@@ -45,6 +45,7 @@ runs:\n shell: bash\n run: echo \"::add-matcher::src/electron/.github/problem-matchers/clang.json\"\n - name: Build Electron ${{ inputs.step-suffix }}\n+ if: ${{ inputs.target-platform != 'win' }}\n ... |
electron/electron | 49,155 | build(deps): bump github/codeql-action from 4.31.6 to 4.31.7 | Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.6 to 4.31.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p>
<blockquote>
<h2>v4.31.7</h2>
<h1>CodeQL Action Changelog</... | fe0caa0e0d9f5ff3f6238460d448870ed092e178 | 1e06b74cd2fad391f43dd772bf79353f8cd20ff2 | 1 | high | [
{
"filename": ".github/workflows/scorecards.yml",
"patch": "@@ -50,6 +50,6 @@ jobs:\n \n # Upload the results to GitHub's code scanning dashboard.\n - name: \"Upload to code-scanning\"\n- uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v3.29.5\n+ ... |
ggml-org/llama.cpp | 20,043 | kleidiai : add sme fp16 compute path for q4_0 gemm on aarch64 | This patch introduce an SME2-based FP16 compute path for Q4_0 GEMM to improve performance on AARCH64.
Benchmark result for Llama-3.2-1B-Instruct-Q4_0 — pp512 (t/s) (Mac M4 Pro, GGML_KLEIDIAI_SME=1)
| Threads | w/o fp16q4 | w/ fp16q4 | Improvement |
| ------- | ---------------- | --------------- | ----------- |
|... | null | 137435ff154f8d96bb79986dda9ea4dc1b43d2c3 | null | low | [
{
"filename": "ggml/src/ggml-cpu/CMakeLists.txt",
"patch": "@@ -566,9 +566,9 @@ function(ggml_add_cpu_backend_variant_impl tag_name)\n \n # Fetch KleidiAI sources:\n include(FetchContent)\n- set(KLEIDIAI_COMMIT_TAG \"v1.16.0\")\n+ set(KLEIDIAI_COMMIT_TAG \"v1.22.0\")\n ... |
ggml-org/llama.cpp | 19,988 | vulkan: tune MMVQ for Intel Windows | Tune MMVQ use for Intel Windows according to https://github.com/ggml-org/llama.cpp/issues/17628#issuecomment-3897132360
@savvadesogle Please try it and see if performance is good. | 319146247e643695f94a558e8ae686277dd4f8da | feefb928367a01c1912975f0b277a48a14bbcadf | 3 | high | [
{
"filename": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -7574,6 +7574,18 @@ static bool ggml_vk_should_use_mmvq(const vk_device& device, uint32_t m, uint32_\n return false;\n }\n \n+ if (device->driver_id == vk::DriverId::eIntelProprietaryWindows) {\n+ // Int... |
ollama/ollama | 8,413 | remove .prettierrc.json | null | 74ea4fb6046d1ae3454dfd00254259f45263318b | null | low | [
{
"filename": ".prettierrc.json",
"patch": "@@ -1,10 +0,0 @@\n-{\n- \"trailingComma\": \"es5\",\n- \"tabWidth\": 2,\n- \"useTabs\": false,\n- \"semi\": false,\n- \"singleQuote\": true,\n- \"jsxSingleQuote\": true,\n- \"printWidth\": 120,\n- \"arrowParens\": \"avoid\"\n-}",
"additions": 0,
"d... | |
vercel/next.js | 88,307 | Turbopack: use correct flags in tests | <!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Improving Documentation
- Run `pnpm prettier-f... | null | a6f23d8d309d3c0db1bb67fe8f0c3978ffaa7c50 | null | low | [
{
"filename": "turbopack/crates/turbopack-tests/tests/execution.rs",
"patch": "@@ -521,7 +521,7 @@ async fn run_test_operation(prepared_test: ResolvedVc<PreparedTest>) -> Result<V\n )\n .unused_references(\n options\n- .remove_unused_exports\n+ .remove_unused_imports\n ... |
facebook/react | 33,043 | [react-native] Pull up enableFastAddPropertiesInDiffing check | ## Summary
We don't need the isArray check for this experiment, as `fastAddProperties` already does the same. Also renaming slowAddProperties to make it clearer we can fully remove this codepath once fastAddProperties is fully rolled out.
## How did you test this change?
```
yarn test packages/react-native-re... | null | 0038c501a307e5ddc0cb80027e55740ddda09520 | null | low | [
{
"filename": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js",
"patch": "@@ -219,13 +219,13 @@ function addNestedProperty(\n return updatePayload;\n }\n \n+ if (enableFastAddPropertiesInDiffing) {\n+ return fastAddProperties(updatePayload, nextProp, validAttributes);\n+ ... |
ggml-org/llama.cpp | 19,965 | ggml webgpu: fix workgroup dispatch limit for large batch sizes | WebGPU limits workgroup counts to 65535 per dimension. MUL_MAT operations with batch sizes exceeding this limit would fail or corrupt memory.
This PR implements 2D workgroup dispatch to handle arbitrary batch sizes:
- Adds `compute_2d_workgroups()` helper to split workgroups across X/Y dimensions when exceeding t... | 4d828bd1ab52773ba9570cc008cf209eb4a8b2f5 | 49a7564ac1e845d7d7d61e9236242282dc5d8248 | 1 | medium | [
{
"filename": "ggml/src/ggml-webgpu/ggml-webgpu.cpp",
"patch": "@@ -31,6 +31,13 @@\n #define ROUNDUP_POW2(x, pow2) (((x) + ((pow2) - 1)) & ~((pow2) - 1))\n #define CEIL_DIV(M, N) (((M) + (N) - 1) / (N))\n \n+// Return a rectangular grid of workgroups with minimal over-provisioned workgroups.\n+// Ass... |
nodejs/node | 59,889 | repl: move completion logic to internal module | This PR moves the repl completion logic into its own internal module, my reasoning for proposing this change is that the repl completion logic currently occupies a big chunk of the repl module and it's hard to tell which functions are relevant to it and which are not.
So, also given the fact that the completion logi... | null | 200fe9e7f47c535c0704d4db78a35d5429698d12 | null | low | [
{
"filename": "lib/internal/repl/completion.js",
"patch": "@@ -0,0 +1,801 @@\n+'use strict';\n+\n+const {\n+ ArrayPrototypeFilter,\n+ ArrayPrototypeForEach,\n+ ArrayPrototypeIncludes,\n+ ArrayPrototypeJoin,\n+ ArrayPrototypeMap,\n+ ArrayPrototypePop,\n+ ArrayPrototypePush,\n+ ArrayPrototypePushApply... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.