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 | 10,141 | models: llama4 multimodal | This change adds Meta's [Llama 4](https://huggingface.co/collections/meta-llama/llama-4-67f0c30d9fe03840bc9d0164) model to Ollama. This has mainly been tested with the 16E Scout model.
Key model features:
* Mixture of expert
* Multimodal (vision, text)
Of note, there are a couple things of note:
* The visi... | f0c66e6dea7d79c0f6106540d20cea37f93bd97f | f0ad49ea17d587cce7f4b2c6a6ccb3139ec083c8 | 5 | medium | [
{
"filename": "fs/ggml/ggml.go",
"patch": "@@ -430,7 +430,7 @@ func (f GGML) GraphSize(context, batch uint64, numParallel int, kvCacheType stri\n \t}\n \n \tswitch f.KV().Architecture() {\n-\tcase \"llama\":\n+\tcase \"llama\", \"llama4\":\n \t\tfullOffload = max(\n \t\t\t4*batch*(1+4*embedding+context*(1+h... |
electron/electron | 49,672 | ci: use squash merge for apply patches workflow | Backport of #49667
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 -->
| ed8493c5b15903d21919ae520ce21f1b708327a9 | f63f875ee01c05504404451badf3effba2bf0cc3 | 16 | medium | [
{
"filename": ".github/workflows/apply-patches.yml",
"patch": "@@ -56,16 +56,16 @@ jobs:\n path: src/electron\n fetch-depth: 0\n persist-credentials: false\n- ref: ${{ github.event.pull_request.head.sha }}\n- - name: Rebase onto Base Branch\n+ ref: ${{ github.event.p... |
vuejs/vue | 9,405 | [automated] Patreon sponsors update | This is an automated pull request. | e1db2c5bf66fca3d219683682690cd33921dd5c5 | 9b33f206f82a9fcea6e78de37e7624cd4b7431b8 | 4 | 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/yakaz.png\">\n </a>\n </td>\n+ ... |
vercel/next.js | 88,834 | Decouple route stale time from segment-level data | ## Summary
Refactors segment cache entries to receive their stale time from the server response rather than inheriting from the parent route cache entry. This decouples the lifetime of segment data from the route tree, preparing for future optimizations.
When I say "route" here, what I'm referring to is the mapping o... | null | 3769252dd42f2f64f424a5e918419b9c91b67de7 | null | low | [
{
"filename": "packages/next/src/client/components/segment-cache/cache.ts",
"patch": "@@ -679,16 +679,17 @@ function createOptimisticRouteTree(\n export function readOrCreateSegmentCacheEntry(\n now: number,\n fetchStrategy: FetchStrategy,\n- route: FulfilledRouteCacheEntry,\n tree: RouteTree\n ): Se... |
ggml-org/llama.cpp | 20,381 | Reset graph on control vector change | This PR makes an existing context pick up a change to its control vector configuration via `llama_context::set_adapter_cvec`.
The issue in short:
- Initial call to `set_adapter_cvec` works, steering vector applies to generation.
- Any further calls to it after the initial generation, including attempting to unset... | null | a69d54f990d0cd88786d5943632d6426dc9660b7 | null | low | [
{
"filename": "src/llama-context.cpp",
"patch": "@@ -1165,9 +1165,11 @@ bool llama_context::set_adapter_cvec(\n int32_t il_end) {\n LLAMA_LOG_DEBUG(\"%s: il_start = %d, il_end = %d\\n\", __func__, il_start, il_end);\n \n- // TODO: should we reserve?\n+ bool res = cvec->apply(mode... |
ollama/ollama | 10,382 | fs: generic ggml.array | this updates ggml.array to use generics which makes it easier to use and avoids type asserting the array values | a53d744b01c65de77afb77aed4a576b317a90912 | 54055a6dae0588d178eb355a8c36051d1b6e98a5 | 14 | medium | [
{
"filename": "sample/samplers_test.go",
"patch": "@@ -74,7 +74,6 @@ func modelHelper(t testing.TB) model.BytePairEncoding {\n \t\tt.Fatal(err)\n \t}\n \n-\ttypes := make([]uint32, len(vocab))\n \ttokens := make([]string, len(vocab))\n \tfor token, id := range vocab {\n \t\ttokens[id] = token\n@@ -86,7 +85,... |
nodejs/node | 61,465 | doc: add CVE delay mention | null | d743431239c0e7c8e0e7ddb81be316d39c775bb5 | null | low | [
{
"filename": "SECURITY.md",
"patch": "@@ -348,6 +348,21 @@ Security notifications will be distributed via the following methods.\n * <https://groups.google.com/group/nodejs-sec>\n * <https://nodejs.org/en/blog/vulnerability>\n \n+### CVE publication timeline\n+\n+When security releases are published, there... | |
vuejs/vue | 9,622 | [automated] Patreon sponsors update | This is an automated pull request. | 2ec5b640f55a34df1b70aa9d59b08385c2f7ac20 | 0c4c78bfc026bed79e76d0d0009b6ed15b6bb008 | 16 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -145,28 +145,18 @@ 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/vuejobs.png\">\n </a>\n </td>\n-... |
electron/electron | 49,673 | ci: use squash merge for apply patches workflow | Backport of #49667
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 -->
| 1aa08a4de42984a92c3040d43a387d9258ba1405 | b07765b8c27b29561086a09c73f4e7ebc4cf6fb8 | 19 | medium | [
{
"filename": ".github/workflows/apply-patches.yml",
"patch": "@@ -56,16 +56,16 @@ jobs:\n path: src/electron\n fetch-depth: 0\n persist-credentials: false\n- ref: ${{ github.event.pull_request.head.sha }}\n- - name: Rebase onto Base Branch\n+ ref: ${{ github.event.p... |
vuejs/vue | 9,974 | [automated] Patreon backers update (May 2019 | This is an automated pull request. | bad3c326a3f8b8e0d3bcf07917dc0adf97c32351 | b47a7b820c1cf13b1abcf72adcbeb33e8a715f07 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -374,113 +374,106 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n - Shawn Wildermuth\n - Samuel Smith\n - donny\n-- Simon East\n+- Sean Washington\n - Keisuke Kita\n - kazupon\n-- Sean Washington\n - Lars Andreas Ness\n+- Simon E... |
huggingface/transformers | 43,523 | Tie the weights even if initializing from a config on meta device | # What does this PR do?
Fix https://github.com/huggingface/transformers/issues/43522.
TLDR we want to skip tying when inside `from_pretrained` (so we add the context manager), but always tie when initializing from config (even with meta device).
Consider the following:
```python
import torch
from transforme... | a30413b78feed68da5c486746f745db092bfdf9a | 00f886a9f435fa552bd2ab93f75c10685d1a9e67 | 29 | medium | [
{
"filename": "src/transformers/initialization.py",
"patch": "@@ -243,3 +243,25 @@ def empty_func(*args, **kwargs):\n setattr(module, func_name, func)\n # Set back `init_weights`\n PreTrainedModel.init_weights = original_init_weights\n+\n+\n+@contextmanager\n+def no_tie_weigh... |
ollama/ollama | 10,396 | fix superfluous call to WriteHeader | the first call to `http.ResponseWriter.Write` implicitly calls `WriteHeader` with `http.StatusOK` if it hasn't already been called. once `WriteHeader` has been called, subsequent calls has no effect. Write is called when JSON encoding `progressUpdateJSON{}`. calls to `http.ResponseWriter.WriteHeader` after the first en... | 4e535e618846ffb00a2a6714c07847d6d2951453 | 214a7678eab94a6acf88fd1682f8fe6733ba555d | 11 | medium | [
{
"filename": "server/internal/registry/server.go",
"patch": "@@ -73,8 +73,13 @@ type statusCodeRecorder struct {\n func (r *statusCodeRecorder) WriteHeader(status int) {\n \tif r._status == 0 {\n \t\tr._status = status\n+\t\tr.ResponseWriter.WriteHeader(status)\n \t}\n-\tr.ResponseWriter.WriteHeader(status... |
facebook/react | 33,752 | [compiler] Enable additional lints by default |
Enable more validations to help catch bad patterns, but only in the linter. These rules are already enabled by default in the compiler _if_ violations could produce unsafe output.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviews... | null | 0d39496eab710b5a3efc07d34c0db3f2475c04f8 | null | low | [
{
"filename": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts",
"patch": "@@ -107,6 +107,12 @@ const COMPILER_OPTIONS: Partial<PluginOptions> = {\n flowSuppressions: false,\n environment: validateEnvironmentConfig({\n validateRefAccessDuringRender: false,\n+ validat... |
vercel/next.js | 89,176 | Prettier-ignore changes in `next-env.d.ts` files in all top-level apps | Specifically, the `lint` job is currently failing in CI for `apps/bundle-analyzer/next-env.d.ts`, e.g.:
https://github.com/vercel/next.js/actions/runs/21444929031/job/61758061793?pr=89175 | null | 0aa41854a71366267d69ac2c78ea7ac9a9585033 | null | low | [
{
"filename": ".prettierignore",
"patch": "@@ -78,6 +78,7 @@ test/integration/typescript-app-type-declarations/next-env.strictRouteTypes.d.ts\n /turbopack/crates/turbopack-tracing/tests/node-file-trace/test/unit/tsx/lib.tsx\n \n /apps/docs/.source/*\n+/apps/*/next-env.d.ts\n \n # Symlink files\n readme.md",... |
facebook/react | 33,988 | [DevTools] Feature detect createSidebarPane | Same as #33987 but for the sidebar pane creation. | 3082604bdc03cfd8cee35e54dbb10caef956937e | 5020d48d2809c33db980f20726d1d0a7b2c8e31a | 1 | high | [
{
"filename": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -317,7 +317,7 @@ function createSourcesEditorPanel() {\n }\n \n const sourcesPanel = chrome.devtools.panels.sources;\n- if (!sourcesPanel) {\n+ if (!sourcesPanel || !sourcesPanel.createSidebarPane) {\n // Firefox do... |
vuejs/vue | 10,181 | [automated] Patreon sponsors update | This is an automated pull request. | b47a7b820c1cf13b1abcf72adcbeb33e8a715f07 | 3b8925bc7973bb71b33374281db10a945ca9854e | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -57,6 +57,11 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"222px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/nativescript.png\">\n </a>\n </td>\... |
electron/electron | 49,665 | revert(ci): use new case syntax in workflows | This reverts commit def7854848d7b2bed6cd96d8b31d2a5de91048ec.
- Reverts #49590. This PR seems to have caused an issue with our releases, so revert that change for now since it was just a refactor/readability improvement.
-
#### Description of Change
<!--
Thank you for your Pull Request. Please provide a descri... | def7854848d7b2bed6cd96d8b31d2a5de91048ec | 4ea2d816b8e7296c58111054fe9e0ecff253b7eb | 6 | medium | [
{
"filename": ".github/actions/build-electron/action.yml",
"patch": "@@ -40,7 +40,7 @@ runs:\n echo \"GN_EXTRA_ARGS=$GN_APPENDED_ARGS\" >> $GITHUB_ENV\n - name: Set GN_EXTRA_ARGS for Windows\n shell: bash\n- if: ${{ inputs.target-arch != 'x64' && inputs.target-platform == 'win' }}\n+ ... |
vuejs/vue | 10,556 | [automated] Patreon sponsors update | This is an automated pull request. | d2db6af1a55fdb4d65746fb67f7bfbced7d916f0 | b9b849255fe3199e94ff8ef09187a55521731c0c | 1 | high | [
{
"filename": "BACKERS.md",
"patch": "@@ -300,6 +300,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/earthlink.png\">\n </a>\n </td>\n... |
vercel/next.js | 89,175 | [ci] Silence `baseline-browser-mapping` warnings | The warnings from `baseline-browser-mapping` about outdated data fail some tests that don't expect the CLI output. By updating the dependency we avoid showing the warning for now, and by setting the environment variable `BASELINE_BROWSER_MAPPING_IGNORE_OLD_DATA` we should silence any future warnings as well.
related... | 02d8ff2cf3b3cdb0101981321ee7a31730d6a843 | 11e295089c5759891b82168c2cf7153731704519 | 5 | medium | [
{
"filename": ".github/workflows/build_reusable.yml",
"patch": "@@ -118,6 +118,10 @@ env:\n # defaults to 256, but we run a lot of tests in parallel, so the limit should be lower\n NEXT_TURBOPACK_IO_CONCURRENCY: 64\n \n+ # Disable warnings from baseline-browser-mapping\n+ # https://github.com/web-plat... |
ggml-org/llama.cpp | 20,602 | ggml blas: set mkl threads from thread context | Commit 1: Set number of threads for MKL
Commit 2: Add way to run blas builds through local CI.
| null | ee4801e5a6ee7ee4063144ab44ab4e127f76fba8 | null | low | [
{
"filename": "ci/run.sh",
"patch": "@@ -25,7 +25,13 @@\n # # with KLEIDIAI support\n # GG_BUILD_KLEIDIAI=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt\n #\n-# # with OPENVINO support\n+# # with BLAS support\n+# GG_BUILD_BLAS=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt\n+#\n+# with BLAS support (custom vendor)\... |
vuejs/vue | 10,534 | [automated] Patreon sponsors update | This is an automated pull request. | 77796596adc48d050beefd11e827e8e4d44c6b3c | d2db6af1a55fdb4d65746fb67f7bfbced7d916f0 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -231,6 +231,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/storekit.png\">\n </a>\n </td>\n+... |
facebook/react | 33,977 | [Flight] Use about: protocol instead of rsc: protocol for fake evals | Chrome DevTools Extensions has a silly problem where they block access to load Resources from all protocols except [an allow list](https://github.com/ChromeDevTools/devtools-frontend/blob/eb970fbc6482f281b95bbec1c33c1c539f6d50f0/front_end/models/extensions/ExtensionServer.ts#L60).
https://issues.chromium.org/issues/... | 0dca9c247182d7fc34aae7964c0856186e7d1f42 | 3d14fcf03f4e296d21b52b362f5adefd9e366375 | 8 | medium | [
{
"filename": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -3154,15 +3154,15 @@ function createFakeFunction<T>(\n }\n \n if (sourceMap) {\n- // We use the prefix rsc://React/ to separate these from other files listed in\n+ // We use the prefix about://React/ to separate these fro... |
nodejs/node | 61,464 | gyp: aix: change gcc version so CXX="ccache g++" works | Closes https://github.com/nodejs/node/issues/61443
<!--
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#... | null | b0ae89c6c553e9c4f41f1c9e34c6e07b7253c956 | null | low | [
{
"filename": "common.gypi",
"patch": "@@ -598,7 +598,7 @@\n ],\n }, { # else it's `AIX`\n 'variables': {\n- 'gcc_major': '<!(<(python) -c \"import os; import subprocess; CXX=os.environ.get(\\'CXX\\', \\'g++\\'); subp... |
huggingface/transformers | 43,529 | [kernels] Update cv_utils name | # What does this PR do?
We are standardizing kernel names in `kernels-community` to use `-` instead of `_`, this pr simply updates `cv_utils`
new kernel is here with the latest torch version 2.10: https://huggingface.co/kernels-community/cv-utils | c8561da82c42adca9325f01ce1ff5aabadea0c3f | 3f254fbf5fe0754e3183ea002740bb342edb419c | 22 | medium | [
{
"filename": "src/transformers/models/sam3_video/modeling_sam3_video.py",
"patch": "@@ -54,7 +54,7 @@ def _load_cv_utils_kernel_once():\n return\n \n try:\n- cv_utils_kernel = get_kernel(\"kernels-community/cv_utils\")\n+ cv_utils_kernel = get_kernel(\"kernels-community/cv-utils\"... |
vuejs/vue | 10,474 | [automated] Patreon backers update (Sep 2019 | This is an automated pull request. | 95d8afa07c4a84d6c178e220913cec4b1afcf21d | 77796596adc48d050beefd11e827e8e4d44c6b3c | 2 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -351,90 +351,88 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <!--10 start-->\n - Masahiro Tanaka\n - Shawn Wildermuth\n-- Samuel Smith\n-- donny\n-- Lars Andreas Ness\n - Sean Washington\n+- Lars Andreas Ness\n - Keisuke Kita\... |
ollama/ollama | 10,414 | convert: change to colmajor | currently the shape is updated to colmajor in fs/ggml/gguf which break the abstraction and prevents WriteGGUF from being round tripped. this moves the shaping up to convert | 2fec73eef6e9482f606f185ebb2ae4f75ad1a37c | 4892872c184a8fa81baaedf9669bf94e4a278964 | 21 | medium | [
{
"filename": "convert/convert.go",
"patch": "@@ -7,6 +7,7 @@ import (\n \t\"io\"\n \t\"io/fs\"\n \t\"log/slog\"\n+\t\"slices\"\n \t\"strings\"\n \n \t\"github.com/ollama/ollama/fs/ggml\"\n@@ -84,14 +85,6 @@ func (ModelParameters) specialTokenTypes() []string {\n \t}\n }\n \n-func (ModelParameters) writeFil... |
vuejs/vue | 10,467 | [automated] Patreon sponsors update | This is an automated pull request. | 1a43722e72f30841472432ec55000f4850a93644 | 95d8afa07c4a84d6c178e220913cec4b1afcf21d | 4 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -51,6 +51,13 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n </a>\n </td>\n </tr><tr></tr>\n+ <tr>\n+ <td align=\"center\" valign=\"middle\">\n+ <a href=\"https://retool.com/?utm_source=sponsor&ut... |
electron/electron | 48,922 | feat: import shared texture supports nv12. | #### Description of Change
Add NV12 support for import shared texture module.
#### Release Notes
Notes: Added NV12 support for import shared texture. | null | 2200a70e8d8debc59f7d8d315b17e208393def2a | null | low | [
{
"filename": "docs/api/structures/shared-texture-import-texture-info.md",
"patch": "@@ -4,6 +4,7 @@\n * `bgra` - 32bpp BGRA (byte-order), 1 plane.\n * `rgba` - 32bpp RGBA (byte-order), 1 plane.\n * `rgbaf16` - Half float RGBA, 1 plane.\n+ * `nv12` - 12bpp with Y plane followed by a 2x2 interleaved U... |
ggml-org/llama.cpp | 20,682 | ggml-cpu: fix RVV checks in quants and repacking | ## Summary
This PR adds macros for checking RVV availability in quantized vector-dot kernels and repack GEMM/GEMV.
(Fixes #20669)
## Key Changes
- Added `__riscv_v_intrinsic` checks for RVV vector-dot kernels
- Added `__riscv_zvfh` check for repack GEMM/GEMV. Repacking pathway is only enabled if `zvfh` is avai... | null | 054d8b0f24001eceb1d719f09fb78bd54494223e | null | low | [
{
"filename": "ggml/src/ggml-cpu/arch/riscv/quants.c",
"patch": "@@ -115,10 +115,10 @@ void quantize_row_q8_1(const float * GGML_RESTRICT x, void * GGML_RESTRICT vy, i\n \n void quantize_row_q8_K(const float * GGML_RESTRICT x, void * GGML_RESTRICT y, int64_t k) {\n assert(k % QK_K == 0);\n- block_q8_... |
vercel/next.js | 89,110 | React types update | Bumped `@types/react` and `@types/react-dom` to their latest versions.
Part of https://linear.app/vercel/issue/NAR-747/
---
[Slack Thread](https://vercel.slack.com/archives/D0A6SL1TGVA/p1769523001528019?thread_ts=1769523001.528019&cid=D0A6SL1TGVA)
<a href="https://cursor.com/background-agent?bcId=bc-6b77cf1f-... | null | 742a0674cec7c551c7639ab4ea8af70277980598 | null | low | [
{
"filename": "package.json",
"patch": "@@ -162,8 +162,8 @@\n \"@types/jest\": \"29.5.5\",\n \"@types/node\": \"20.17.6\",\n \"@types/node-fetch\": \"2.6.1\",\n- \"@types/react\": \"19.2.2\",\n- \"@types/react-dom\": \"19.2.1\",\n+ \"@types/react\": \"19.2.10\",\n+ \"@types/react-dom... |
huggingface/transformers | 43,442 | add trackio to training notebooks | @stevhliu I also need to remove IDEFICS example (too old) and fix image captioning one (dataset was taken down, although it's hard to find an unbroken image captioning dataset), will do on a follow-up PR | null | 83163c6cf65d875178478467b3235cfaee0bf5b0 | null | low | [
{
"filename": "docs/source/en/tasks/image_classification.md",
"patch": "@@ -38,7 +38,7 @@ To see all architectures and checkpoints compatible with this task, we recommend\n Before you begin, make sure you have all the necessary libraries installed:\n \n ```bash\n-pip install transformers datasets evaluate a... |
facebook/react | 33,976 | [Fiber] Don't throw away the Error object retaining the owner stack | We currently throw away the Error once we've used to the owner stack of a Fiber once. This maybe helps a bit with memory and redoing it but we really don't expect most Fibers to hit this at all. It's not very hot.
If we throw away the Error, then we can't use native debugger protocols to inspect the native stack. In... | null | 4f34cc4a2e1198493375867d1876509ae9771aee | null | low | [
{
"filename": "packages/react-devtools-shared/src/backend/fiber/DevToolsFiberComponentStack.js",
"patch": "@@ -199,7 +199,7 @@ export function getOwnerStackByFiberInDev(\n if (typeof owner.tag === 'number') {\n const fiber: Fiber = (owner: any);\n owner = fiber._debugOwner;\n- l... |
huggingface/transformers | 42,184 | Mark test_prompt_lookup_decoding as flaky | The CI seems a bit unstable and this test is the most common culprit! cc @ydshieh | a99a913e9520d5d263b50cf52f0ffa858def5bc8 | 14eed387ee6a546529711958731c4267a1f7d94a | 2 | high | [
{
"filename": "tests/generation/test_utils.py",
"patch": "@@ -40,6 +40,7 @@\n )\n from transformers.testing_utils import (\n CaptureLogger,\n+ is_flaky,\n require_accelerate,\n require_flash_attn,\n require_flash_attn_3,\n@@ -729,6 +730,7 @@ def test_assisted_decoding_matches_greedy_searc... |
ollama/ollama | 9,932 | ci: silence deprecated gpu targets warning | this quiets the nvcc warning when building for deprecated gpu targets. the build targets are set explicitly so there's no reason to show these warnings. setting it in CMakePresets allows quieter ci builds while giving any users the information they would need re: deprecated targets
```
nvcc warning : The 'compute_3... | null | 0b9198bf47d71b9cc1830beb29123d0d9f302f07 | null | low | [
{
"filename": "CMakePresets.json",
"patch": "@@ -21,14 +21,16 @@\n \"name\": \"CUDA 11\",\n \"inherits\": [ \"CUDA\" ],\n \"cacheVariables\": {\n- \"CMAKE_CUDA_ARCHITECTURES\": \"50;52;53;60;61;70;75;80;86\"\n+ \"CMAKE_CUDA_ARCHITECTURES\": \"50;52;53;60;61;70;75;80;86\",\n+ ... |
ggml-org/llama.cpp | 20,518 | vulkan: async and event fixes | I noticed incoherence with my multi-GPU setup as well when investigating issues like #20462. I found that they can be fixed by disabling `cpy_tensor_async`, so the problem is with the async path. I narrowed it down to these problems:
- events were set, but the wait command was never submitted to the queue, so the `eve... | 740a447fc38e6578a69bb578380c86998d75e286 | 3a5cb629b180a074e02056a40695528a2171254c | 3 | medium | [
{
"filename": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -191,6 +191,7 @@ struct vk_queue;\n \n struct vk_command_buffer {\n vk::CommandBuffer buf;\n+ uint64_t use_counter = 0;\n bool in_use = false;\n };\n \n@@ -938,19 +939,24 @@ struct vk_subbuffer {\n }\n };\n \n-// vk_event is u... |
nodejs/node | 61,438 | build,win: improve logs when ClangCL is missing | Fixes: https://github.com/nodejs/node/issues/61437
## Situation
If Visual Studio is installed without ClangCL on Node.js >= 24, the logs from executing `.\vcbuild` on Windows could be misinterpreted as suggesting that Visual Studio was missing, not ClangCL.
## Change
Make minor text changes in [vcbuild.bat]... | null | e9b0849606ccaa607698ccb2e88f7245113968c3 | null | low | [
{
"filename": "vcbuild.bat",
"patch": "@@ -246,7 +246,7 @@ call :getnodeversion || exit /b 1\n set NODE_MAJOR_VERSION=\n for /F \"tokens=1 delims=.\" %%i in (\"%NODE_VERSION%\") do set \"NODE_MAJOR_VERSION=%%i\"\n if %NODE_MAJOR_VERSION% GEQ 24 (\n- echo Using ClangCL because the Node.js version being comp... |
electron/electron | 49,040 | feat: import shared texture supports nv12. | Backport of #48922
See that PR for details.
Notes: Added NV12 support for import shared texture. | null | 8cd558f4390f22c4eb5445388fa99e659ed56377 | null | low | [
{
"filename": "docs/api/structures/shared-texture-import-texture-info.md",
"patch": "@@ -4,6 +4,7 @@\n * `bgra` - 32bpp BGRA (byte-order), 1 plane.\n * `rgba` - 32bpp RGBA (byte-order), 1 plane.\n * `rgbaf16` - Half float RGBA, 1 plane.\n+ * `nv12` - 12bpp with Y plane followed by a 2x2 interleaved U... |
vercel/next.js | 89,195 | Unlock swc binaries | Full run here https://github.com/vercel/next.js/actions/runs/21455905546/job/61796583243 | b2706db1e62c261ddfddaa040b2b26d93a091eca | 50060c9adec2b12ffb6ff88ec50a768bb3fad777 | 19 | medium | [
{
"filename": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -127,433 +127,433 @@ jobs:\n key: ${{ github.sha }}-${{ github.run_number }}-${{ github.run_attempt}}\n \n # Build binaries for publishing\n- # build-native:\n- # if: ${{ needs.deploy-target.outputs.value != 'skipped' }}\n-... |
facebook/react | 33,972 | [Release] Update build script to properly set React Native's renderers version | ## Summary
The React Native's renderers files for OSS that are produced by CI in the `combined_artifacts` artifact used to have a wrong version. In fact, when syncing React into React Native for React 19.1, I had to manually adjust the renderer's versions and sign them again to make them work.
With this change, the... | null | 3f178f55fc76debfef6883d74b8d3ace2ebe8176 | null | low | [
{
"filename": "scripts/rollup/build-all-release-channels.js",
"patch": "@@ -221,8 +221,7 @@ function processStable(buildDir) {\n );\n }\n \n- const rnVersionString =\n- ReactVersion + '-native-fb-' + sha + '-' + dateString;\n+ const rnVersionString = ReactVersion + '-native-fb-' + sha +... |
ggml-org/llama.cpp | 20,599 | vulkan: allow graphics queue only through env var | Improve #20551 to fix the reported issues. Only use graphics queue on RADV on larger GPUs.
Fixes #20597 | null | 740a447fc38e6578a69bb578380c86998d75e286 | null | low | [
{
"filename": "ggml/src/ggml-vulkan/ggml-vulkan.cpp",
"patch": "@@ -4981,8 +4981,9 @@ static vk_device ggml_vk_get_device(size_t idx) {\n std::vector<vk::QueueFamilyProperties> queue_family_props = device->physical_device.getQueueFamilyProperties();\n \n // Try to find a non-graphics compute... |
vuejs/vue | 10,380 | fix: set only flex-wrap | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
This PR replaces the shorthand `flex-flow` with the right long version `flex-wrap`.
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) --... | null | 369dbe711a037b04612bca2f2e961282bdbb9153 | null | low | [
{
"filename": "benchmarks/uptime/index.html",
"patch": "@@ -38,7 +38,7 @@\n .days {\n display: flex;\n flex-direction: row;\n- flex-flow: wrap;\n+ flex-wrap: wrap;\n }\n \n .uptime-day {",
"additions": 1,
"deletions": 1
}
] |
huggingface/transformers | 43,438 | batched_mm is slow on cpu | # 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 | a99a913e9520d5d263b50cf52f0ffa858def5bc8 | null | low | [
{
"filename": "docs/source/en/experts_interface.md",
"patch": "@@ -19,13 +19,14 @@ All Mixture-of-Experts (MoE) implementations perform the same high-level computa\n \n The [`ExpertsInterface`] provides optimized experts backends. It decouples the experts implementation from the model code to simplify exper... |
nodejs/node | 61,454 | doc: include OpenJSF handle for security stewards | cc: @nodejs/tsc | null | 931a292b9b19249137a29eb6a8eb84085be837fb | null | low | [
{
"filename": "README.md",
"patch": "@@ -889,15 +889,15 @@ releases on a rotation basis as outlined in the\n * [bengl](https://github.com/bengl) -\n **Bryan English** <<bryan@bryanenglish.com>> (he/him)\n * [HeroDevs](https://www.herodevs.com/)\n- * [marco-ippolito](https://github.com/marco-ippolito)... |
vercel/next.js | 89,173 | [nextjs] feat: removing length requirement | Not a hard requirement so removing in [response to request](https://github.com/vercel/next.js/pull/88958#discussion_r2735487290)
<!-- 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.
Choo... | 1cbd83bff6e0c44fc1d250f9c5163ab1141ed78e | 82ad0dd23e1fd7b12037a371fc9ba2ac0441d232 | 15 | medium | [
{
"filename": "errors/deploymentid-too-long.mdx",
"patch": "@@ -1,37 +0,0 @@\n----\n-title: '`deploymentId` exceeds maximum length'\n----\n-\n-## Why This Error Occurred\n-\n-The `deploymentId` in your `next.config.js` exceeds the maximum length of 32 characters.\n-\n-## Possible Ways to Fix It\n-\n-### Opt... |
ollama/ollama | 10,131 | server: improve spacing for JSON grammar | Pulled out from https://github.com/ollama/ollama/pull/10096 for improving whitespace in grammars
## Fixing `\n` with grammar
New gemma output
```
❯ go run . run gemma3
# github.com/ollama/ollama
ld: warning: ignoring duplicate libraries: '-lobjc'
>>> /set format json
Set format to 'json' mode.
>>> create a ... | null | 11dde418241a8f3d8a67206ae51229e30fa69695 | null | low | [
{
"filename": "llm/server.go",
"patch": "@@ -640,20 +640,20 @@ root ::= object\n value ::= object | array | string | number | (\"true\" | \"false\" | \"null\") ws\n object ::=\n \"{\" ws (\n- string \":\" ws value\n+ string \":\" ws value\n (\",\" ws string \":\" ws value)*\n- )... |
facebook/react | 33,965 | [DevTools] Allow file:/// urls to be opened in editor | If a `file:///` path is specified as the url of a file, like after source mapping into an ESM file, then we should be able to open it in a code editor.
| 7513996f20e34070141aa605fe282ca6986915a0 | 3586a7f9e8ffb80ff98f41daca0e8a4070878718 | 2 | high | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/OpenInEditorButton.js",
"patch": "@@ -4,6 +4,7 @@\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n+ * @flow\n */\n \n import * as React from 'r... |
electron/electron | 49,657 | fix: remove menu observer before destroying menu_controller_ | Backport of #49648
See that PR for details.
Notes: Fixed an application crash on MacOS where the menu observer was not being properly removed before garbage collection. | null | 94b18a54d0aa83dd35cc9281dfdf3094331d5b18 | null | low | [
{
"filename": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -68,6 +68,10 @@ Menu::Menu(gin::Arguments* args)\n }\n \n Menu::~Menu() {\n+ RemoveModelObserver();\n+}\n+\n+void Menu::RemoveModelObserver() {\n if (model_) {\n model_->RemoveObserver(this);\n }",
"additions": 4,
"deletio... |
vuejs/vue | 10,358 | a spelling mistake | <!--
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... | 085d188379af98e9f482d7e2009ebfd771bd7ca5 | d40b7ddb8177944d1dd50f4f780e6fd92c9455c2 | 26 | medium | [
{
"filename": "src/compiler/error-detector.js",
"patch": "@@ -57,9 +57,9 @@ function checkNode (node: ASTNode, warn: Function) {\n }\n \n function checkEvent (exp: string, text: string, warn: Function, range?: Range) {\n- const stipped = exp.replace(stripStringRE, '')\n- const keywordMatch: any = stipped.... |
ggml-org/llama.cpp | 20,671 | server : fix ctx checkpoint invalidation | fix #20532
We must not keep checkpoints that contain tokens with position beyond the position that we are about to generate next. This bug has been present for a while and mostly affects SWA models such as `gpt-oss`. | null | 8cc2d81264c6089ae86fc25a9f7e6e75114d3590 | null | low | [
{
"filename": "tools/server/server-context.cpp",
"patch": "@@ -2402,11 +2402,11 @@ struct server_context_impl {\n }\n \n {\n- // erase any checkpoints with pos_min > pos_min_thold\n+ // eras... |
vuejs/vue | 10,355 | [automated] Patreon sponsors update | This is an automated pull request. | 64fcad6476fa46419dcac34502d5592e1f3f08ff | 1a43722e72f30841472432ec55000f4850a93644 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -101,18 +101,23 @@ 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/html_burger.png\">\n </a>\n </td... |
nodejs/node | 61,406 | test: check new WebCryptoAPI enum values | While KeyUsage values are tested indirectly through existing tests, the `raw-private` value is not supported by any of the existing algorithms and as such this test change ensures that `raw-private` is a recognized KeyFormat value. | null | 70093c75723709e09b73254265115956cd3345b1 | null | low | [
{
"filename": "test/parallel/test-webcrypto-webidl.js",
"patch": "@@ -238,7 +238,16 @@ const opts = { prefix, context };\n \n // KeyFormat\n {\n- for (const good of ['jwk', 'spki', 'pkcs8', 'raw']) {\n+ for (const good of [\n+ 'jwk',\n+ 'spki',\n+ 'pkcs8',\n+ 'raw',\n+ 'raw-public',\n+ '... |
huggingface/transformers | 43,520 | fix: initialize BatchNorm2d buffers only on meta | # What does this PR do?
Commit 8dd9c999a6262d6ceb48f4a2da7acaccfa80e3bc introduced a regression by unconditionally reinitializing BatchNorm2d buffers (running_mean, running_var, num_batches_tracked) in the _init_weights() method.
The problem: When loading pretrained timm models, the flow is:
1. timm.create_model... | null | 0780b0b8ce71f090b866324b2e16a3804f9cdca4 | null | low | [
{
"filename": "src/transformers/models/timm_backbone/modeling_timm_backbone.py",
"patch": "@@ -117,10 +117,17 @@ def _init_weights(self, module):\n assume weights and persistent buffers will be part of checkpoint as we have no way to control timm inits)\"\"\"\n if hasattr(module, \"init_non_... |
vuejs/vue | 10,353 | [automated] Patreon backers update (Aug 2019 | This is an automated pull request. | f1d29d7f45022f0edd20081dea8387043c96b30d | 64fcad6476fa46419dcac34502d5592e1f3f08ff | 2 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -341,93 +341,88 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n - Shawn Wildermuth\n - Samuel Smith\n - donny\n-- Sean Washington\n - Lars Andreas Ness\n+- Sean Washington\n - Keisuke Kita\n - Benjamin Listwon\n - Kirk Lewis\n-- ... |
ollama/ollama | 10,386 | Comment fix: ImageData expecting image bytes (not base64 encoded) | Referring to the comment, I tried to provide base64 encoded image data but it didn't work. It seems that ImageData actually expect raw image bytes. | ef65174df23fb2efb499a18d7071348cc0ec58da | 40b10eee6d62a32578ca7e884fb73d4c8bc644a0 | 29 | medium | [
{
"filename": "api/types.go",
"patch": "@@ -76,7 +76,7 @@ type GenerateRequest struct {\n \t// this request.\n \tKeepAlive *Duration `json:\"keep_alive,omitempty\"`\n \n-\t// Images is an optional list of base64-encoded images accompanying this\n+\t// Images is an optional list of raw image bytes accompanyi... |
electron/electron | 49,648 | fix: remove menu observer before destroying menu_controller_ | #### Description of Change
Follow up to https://github.com/electron/electron/pull/48351
A previous refactor uncovered a long-standing bug in `MenuMac::~MenuMac() `'s lifetime cycle: When `MenuMac::~MenuMac()` was being destroyed by GC, during implicit destruction of `menu_controller_`, it could trigger callbacks ... | null | 431f77ca1c265a347ce3cc5376aed129bf4f0f89 | null | low | [
{
"filename": "shell/browser/api/electron_api_menu.cc",
"patch": "@@ -68,6 +68,10 @@ Menu::Menu(gin::Arguments* args)\n }\n \n Menu::~Menu() {\n+ RemoveModelObserver();\n+}\n+\n+void Menu::RemoveModelObserver() {\n if (model_) {\n model_->RemoveObserver(this);\n }",
"additions": 4,
"deletio... |
vercel/next.js | 85,611 | Turbopack: fix Scope holding Arc too long | ### What?
Turbo tasks Arc should be dropped before returning to the caller | null | 7d9c12591624dccd090cf5585f99d160c652a4c6 | null | low | [
{
"filename": "turbopack/crates/turbo-tasks/src/scope.rs",
"patch": "@@ -195,8 +195,17 @@ impl<'scope, 'env: 'scope, R: Send + 'env> Scope<'scope, 'env, R> {\n assert!(index < self.results.len(), \"Too many tasks spawned\");\n let result_cell: &Mutex<Option<R>> = &self.results[index];\n \n+ ... |
vuejs/vue | 10,319 | [automated] Patreon sponsors update | This is an automated pull request. | a99c6672d6e58183013be338cb7affe14a23c9d8 | f1d29d7f45022f0edd20081dea8387043c96b30d | 2 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -214,6 +214,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/daily.png\">\n </a>\n </td>\n+ ... |
electron/electron | 49,627 | 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.
| 356bba80607af85a49d95dc8c51154e2d409e765 | d4d1596d2ffab413a612fab27a85fb031a1d51a8 | 1 | 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... |
vercel/next.js | 83,273 | Add dedicated commands to run tests with experimental config | Adds
```
pnpm test-dev-experimental
pnpm test-dev-experimental-turbo
pnpm test-dev-experimental-rspack
pnpm test-start-experimental
pnpm test-start-experimental-turbo
pnpm test-start-experimental-rspack
``` | dc3aac613a8b8cd611c4bb63bd972ac5cbbebcd7 | 811db4b65e06e85a19497413209d0a1f5cecc153 | 1 | high | [
{
"filename": "package.json",
"patch": "@@ -18,11 +18,17 @@\n \"test-types\": \"tsc\",\n \"test-unit\": \"jest test/unit/ packages/next/ packages/font\",\n \"test-dev\": \"cross-env NEXT_TEST_MODE=dev pnpm testheadless\",\n+ \"test-dev-experimental\": \"cross-env NEXT_TEST_MODE=dev pnpm run w... |
facebook/react | 33,954 | [DevTools] Linkify Source View | This makes it so you can click the source location itself to view the source. This is similar styling as the link to jump to function props like events and actions. We're going to need a lot more linkifying to jump to various source locations. Also, I always was trying to click this file anyway.
Hover state:
<img... | null | bb4418d6470b95c7d487f3b73a9dc980edff6f06 | null | low | [
{
"filename": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSourcePanel.css",
"patch": "@@ -18,3 +18,18 @@\n max-width: 100%;\n margin-left: 1rem;\n }\n+\n+.Link {\n+ color: var(--color-link);\n+ white-space: pre;\n+ overflow: hidden;\n+ text-overflow: ellipsis;\n+ f... |
ggml-org/llama.cpp | 20,285 | Support refusal content for Responses API | Fixes #20280 (at least I hope so) | null | 2e4a6edd4ac6ebb2459fca373249298291acfc5e | null | low | [
{
"filename": "tools/server/server-common.cpp",
"patch": "@@ -1273,17 +1273,27 @@ json convert_responses_to_chatcmpl(const json & response_body) {\n \n for (const auto & output_text : item.at(\"content\")) {\n const std::string type = json_value(output_text, \"type\", std... |
facebook/react | 33,948 | [Flight] Use the Promise of the first await even if that is cut off | We need a "value" to represent the I/O that was loaded. We don't normally actually use the Promise at the callsite that started the I/O because that's usually deep inside internals. Instead we override the value of the I/O entry with the Promise that was first awaited in user space. This means that you could potentiall... | b9af1404eac698c943b52c466b9c2e4aff85cf70 | 0dca9c247182d7fc34aae7964c0856186e7d1f42 | 1 | medium | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -2327,6 +2327,21 @@ function visitAsyncNode(\n // then this gets I/O ignored, which is what we want because it means it was likely\n // just part of a previous component's rendering.\n match = io... |
facebook/react | 33,947 | [Flight] Use the JSX as the await stack if an await is not available | If you pass a promise to a client component to be rendered `<Client promise={promise} />` then there's an internal await inside Flight. There might also be user space awaits but those awaits may already have happened before we render this component. Conceptually they were part of the parent component and not this compo... | 28d4bc496b9c0dd2178caf894054ffce600311d3 | b9af1404eac698c943b52c466b9c2e4aff85cf70 | 2 | medium | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -1717,6 +1717,16 @@ function renderFunctionComponent<Props>(\n // Apply special cases.\n result = processServerComponentReturnValue(request, task, Component, result);\n \n+ if (__DEV__) {\n+ // From this point on, the paren... |
ggml-org/llama.cpp | 20,620 | kleidiai : fix MUL_MAT support for batched (3D) inputs | The supports_op() check incorrectly rejected MUL_MAT operations with 3D inputs (ne[2] > 1), but the actual compute_forward_qx() implementation handles batched inputs correctly via a loop over ne12.
This caused models with Q4_0/Q8_0 weights to crash during graph scheduling when n_seq_max > 1, because weights were pla... | cf21cdf36ceb456b5312aa7d9058da297f3bf574 | 627670601a64569d9d822c8d52a8ff39ed69cce5 | 8 | medium | [
{
"filename": "ggml/src/ggml-cpu/kleidiai/kleidiai.cpp",
"patch": "@@ -1461,7 +1461,7 @@ class extra_buffer_type : ggml::cpu::extra_buffer_type {\n return false;\n }\n if ((op->src[1]->type == GGML_TYPE_F32 || op->src[1]->type == GGML_TYPE_I32) &&\n- gg... |
nodejs/node | 61,191 | v8: add GCProfiler support for erm | Add GCProfiler support for explicit resource management | null | 363758c79917bb7f6cceced79b6fe49c51abb592 | null | low | [
{
"filename": "doc/api/v8.md",
"patch": "@@ -1471,6 +1471,7 @@ added:\n -->\n \n Create a new instance of the `v8.GCProfiler` class.\n+This API supports `using` syntax.\n \n ### `profiler.start()`\n \n@@ -1490,7 +1491,7 @@ added:\n - v18.15.0\n -->\n \n-Stop collecting GC data and return an object.The con... |
huggingface/transformers | 43,494 | Fix loading of Qwen3 FP8 | The Qwen3 MoE config was missing the mapping attribute for the num_expert_local config variable which made it impossible to load FP8 quantized models, due to the following exception:
```
Traceback (most recent call last):
File ".../exps/train-qwen3-lora.py", line 4, in <module>
base_model = AutoModelForCaus... | null | a1f63d55b9e3fc38e70a5d10df01b7a94f3cbd91 | null | low | [
{
"filename": "src/transformers/models/qwen3_moe/configuration_qwen3_moe.py",
"patch": "@@ -118,6 +118,10 @@ class Qwen3MoeConfig(PreTrainedConfig):\n model_type = \"qwen3_moe\"\n keys_to_ignore_at_inference = [\"past_key_values\"]\n \n+ attribute_map = {\n+ \"num_experts\": \"num_local_ex... |
facebook/react | 33,665 | [Flight] Make debug info and console log resolve in predictable order | Stacked on #33664.
This resolves an outstanding issue where it was possible for debug info and console logs to become out of order if they up blocked. E.g. by a future reference or a client reference that hasn't loaded yet. Such as if you console.log a client reference followed by one that doesn't. This encodes the ... | da7487b6816b19310b02bb69b35d72e3d7aed3b3 | 28d4bc496b9c0dd2178caf894054ffce600311d3 | 2 | medium | [
{
"filename": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -10,11 +10,10 @@\n import type {\n Thenable,\n ReactDebugInfo,\n+ ReactDebugInfoEntry,\n ReactComponentInfo,\n- ReactEnvironmentInfo,\n ReactAsyncInfo,\n ReactIOInfo,\n- ReactTimeInfo,\n ReactStackTrace,\n ReactFun... |
electron/electron | 49,637 | 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 | abc5d1280d922893e31d61b2a3b1b99e538bd754 | 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... |
vuejs/vue | 10,257 | fix(security) upgrade lodash.template | This is for vue-server-renderer
https://github.com/lodash/lodash/pull/4336
<!--
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 | b7c2d9366cf731a1551286b8ac712e6e0905070e | null | low | [
{
"filename": "packages/vue-server-renderer/package.json",
"patch": "@@ -22,7 +22,7 @@\n \"chalk\": \"^1.1.3\",\n \"hash-sum\": \"^1.0.2\",\n \"he\": \"^1.1.0\",\n- \"lodash.template\": \"^4.4.0\",\n+ \"lodash.template\": \"^4.5.0\",\n \"lodash.uniq\": \"^4.5.0\",\n \"resolve\": \"... |
ollama/ollama | 10,339 | cmd: added support for escaping ~ in filepath | #10333
<img width="552" alt="Screenshot 2025-04-18 at 11 36 55 PM" src="https://github.com/user-attachments/assets/1e42e43a-b805-4ce1-8be8-35d4674c08f9" />
| null | 08065216425ba73828805756118f26b61cd03f28 | null | low | [
{
"filename": "cmd/interactive.go",
"patch": "@@ -503,6 +503,7 @@ func normalizeFilePath(fp string) string {\n \t\t\"\\\\\\\\\", \"\\\\\", // Escaped backslash\n \t\t\"\\\\*\", \"*\", // Escaped asterisk\n \t\t\"\\\\?\", \"?\", // Escaped question mark\n+\t\t\"\\\\~\", \"~\", // Escaped tilde\n \t).Replace(... |
facebook/react | 25,713 | [Fix] properly track `useId` use in StrictMode in development | In `<StrictMode>` in dev hooks are run twice on each render.
For `useId` the re-render pass uses the `updateId` implementation rather than `mountId`. In the update path we don't increment the local id counter. This causes the render to look like no id was used which changes the tree context and leads to a different ... | f284d9fafac3af79c6901b6b63305cbd161304cd | 15557fa67fe3cbd4a9bc7bf7340594d3f7e8ab89 | 10 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMUseId-test.js",
"patch": "@@ -633,4 +633,68 @@ describe('useId', () => {\n </div>\n `);\n });\n+\n+ // https://github.com/vercel/next.js/issues/43033\n+ // re-rendering in strict mode caused the localIdCounter to be reset but it the reren... |
vuejs/vue | 10,242 | [automated] Patreon sponsors update | This is an automated pull request. | 024e4f2c768757872be6e25476e19c2c56057ddc | a99c6672d6e58183013be338cb7affe14a23c9d8 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -208,6 +208,13 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n </a>\n </td>\n </tr><tr></tr>\n+ <tr>\n+ <td align=\"center\" valign=\"middle\">\n+ <a href=\"https://www.dailynow.co/\" target=\"_bl... |
vercel/next.js | 88,125 | [backport] Turbopack: validate CSS without computing all paths (#83810) | Backports #83810
Mostly to reduce conflicts in https://github.com/vercel/next.js/pull/88124, but this is a nice perf improvement anyway | null | ce36aec70feab18e3e92165d6d0dc5fa41bb36f0 | null | low | [
{
"filename": "crates/next-api/src/module_graph.rs",
"patch": "@@ -16,8 +16,7 @@ use rustc_hash::FxHashMap;\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- CollectiblesSource, FxIndexMap, FxIndexSet, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt,\n- ValueToString... |
vuejs/vue | 10,233 | [automated] Patreon sponsors update | This is an automated pull request. | c236f56422ddc56cc6dc26c8d9e6a26429100748 | 024e4f2c768757872be6e25476e19c2c56057ddc | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -35,11 +35,6 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"222px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/bit.png\">\n </a>\n </td>\n- <... |
vuejs/vue | 10,232 | [automated] Patreon backers update (Jul 2019 | This is an automated pull request. | 3b8925bc7973bb71b33374281db10a945ca9854e | c236f56422ddc56cc6dc26c8d9e6a26429100748 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -366,10 +366,9 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n - Alex Balashov\n - Konstantin Levinski\n - Blaise Laflamme\n-- Dilettant\n - Sean Ferguson\n - Johnny Ray Austin\n-- IdealCoders\n+- Daniel\n <!--50 end-->\n \n <h2 ... |
nodejs/node | 61,447 | tools: copyedit Nix files | This PR removes two small inconsistencies that have been inherited from my personal config, but do not really make sense:
- `--without-npm` only matters when running `make install`, i.e. won't be relevant for most devs. However, since github.com/nodejs/devcontainer/pull/22 and https://github.com/nodejs/node/pull/614... | null | 9e201e61fd8e4b8bfb74409151cbcbbc7377ca67 | null | low | [
{
"filename": "shell.nix",
"patch": "@@ -6,7 +6,6 @@\n loadJSBuiltinsDynamically ? true, # Load `lib/**.js` from disk instead of embedding\n ninja ? pkgs.ninja,\n extraConfigFlags ? [\n- \"--without-npm\"\n \"--debug-node\"\n ],\n \n@@ -87,13 +86,9 @@ pkgs.mkShell {\n ++ pkgs.lib.optional... |
ggml-org/llama.cpp | 20,654 | ci : disable AMX jobs | The AMX runner in the Azure cloud stopped running for some reason. | b91d7dfe5bb3745147ee3a5f18be8d4f803b0e84 | 45172df4d6843a903ad7dcb84c83388094f896bb | 22 | medium | [
{
"filename": ".github/workflows/build-self-hosted.yml",
"patch": "@@ -97,19 +97,21 @@ jobs:\n vulkaninfo --summary\n GG_BUILD_VULKAN=1 bash ./ci/run.sh ~/results/llama.cpp /mnt/llama.cpp\n \n- ggml-ci-cpu-amx:\n- runs-on: [self-hosted, Linux, CPU, AMX]\n+ # TODO: provision AMX-comp... |
facebook/react | 33,798 | [Flight] Skip the stack frame of built-in wrappers that create or await Promises | We already do this with `"new Promise"` and `"Promise.then"`. There are also many helpers that both create promises and awaits other promises inside of it like `Promise.all`.
The way this is filtered is different from just filtering out all anonymous stacks since they're used to determine where the boundary is betwe... | eb7f8b42c92ed804bbf7f700d2bdda276d591007 | da7487b6816b19310b02bb69b35d72e3d7aed3b3 | 9 | medium | [
{
"filename": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -194,6 +194,49 @@ function devirtualizeURL(url: string): string {\n return url;\n }\n \n+function isPromiseCreationInternal(url: string, functionName: string): boolean {\n+ // Various internals of the JS VM can create Promises b... |
huggingface/transformers | 43,343 | fix `ShieldGemma2IntegrationTest::test_model` | …y::ShieldGemma2IntegrationTest::test_model crash
crash calltrack is
```
tests/models/shieldgemma2/test_modeling_shieldgemma2.py:49:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
src/transforme... | null | 2d5a6d03c8d1b9d796b6f5898c792e4cae7ba050 | null | low | [
{
"filename": "src/transformers/models/shieldgemma2/modeling_shieldgemma2.py",
"patch": "@@ -58,16 +58,16 @@ def __init__(self, config: ShieldGemma2Config):\n self.post_init()\n \n def get_input_embeddings(self):\n- return self.model.language_model.get_input_embeddings()\n+ return ... |
electron/electron | 49,365 | fix(squirrel.mac): clean up old staged updates before downloading new update | #### Description of Change
When checkForUpdates() is called while an update is already staged, Squirrel creates a new temporary directory for the download without cleaning up the old one. This can lead to disk usage growth when new versions are released while the app hasn't restarted.
This adds a force parameter ... | null | 233caf84695d56b6ffad83461e2728fe7588cddb | 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,342 | create tempdir in models directory | the models directory should have plenty of storage and also ensure there's no cross-device copy | null | 88738b357bcd25eea860b59bf7de2f6b94cfc352 | null | low | [
{
"filename": "server/create.go",
"patch": "@@ -225,7 +225,7 @@ func detectModelTypeFromFiles(files map[string]string) string {\n }\n \n func convertFromSafetensors(files map[string]string, baseLayers []*layerGGML, isAdapter bool, fn func(resp api.ProgressResponse)) ([]*layerGGML, error) {\n-\ttmpDir, err :... |
ollama/ollama | 10,326 | server/internal/registry: make pull send errors with Error field | Previously, the pull handler would send an error message in the Status field, this prevented the client from using the message as a signal to stop. In the case of the "run" command, it would follow the pull with a "show" which would print a nearly identical "not found" message for unresolved models.
Fixes #10307 | 1d99451ad705478c0a22262ad38b5a403b61c291 | 4e535e618846ffb00a2a6714c07847d6d2951453 | 2 | medium | [
{
"filename": "server/internal/registry/server.go",
"patch": "@@ -244,6 +244,7 @@ func (s *Local) handleDelete(_ http.ResponseWriter, r *http.Request) error {\n }\n \n type progressUpdateJSON struct {\n+\tError string `json:\"error,omitempty,omitzero\"`\n \tStatus string `json:\"status,omit... |
vercel/next.js | 89,038 | [test] Improve deployment skew test for Pages Router data routes | Actually test the behavior by switching between two builds, as opposed to selectively blocking some routes. | null | b9ee1db28318f6d5ffa7b8749c1a9cc8dd56f89e | null | low | [
{
"filename": "test/integration/ssg-data-404/next.config.js",
"patch": "@@ -0,0 +1,8 @@\n+/**\n+ * @type {import('next').NextConfig}\n+ */\n+const nextConfig = {\n+ distDir: process.env.DIST_DIR && '.next.' + process.env.DIST_DIR,\n+}\n+\n+module.exports = nextConfig",
"additions": 8,
"deletions": ... |
huggingface/transformers | 43,511 | Update `SamHQModelIntegrationTest::test_inference_mask_generation_batched_points_batched_images` for `XPU` | …onTest::test_inference_mask_generation_batched_points_batched_images pass in xpu
@ydshieh
| 89b8475d8951fd641726ac526dedbddddbc7e84a | 461cfb14b847def4b8cbf0b039a544b820145699 | 25 | medium | [
{
"filename": "tests/models/sam_hq/test_modeling_sam_hq.py",
"patch": "@@ -881,6 +881,7 @@ def test_inference_mask_generation_batched_points_batched_images(self):\n {\n (None, None): [-40.2445, -37.4300, -38.1577],\n (\"cuda\", 8): [-14.1195, -17.2663, -13.7805],\... |
vuejs/vue | 9,922 | fix #9920: fix function expression regex | <!--
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... | 3433ba5beef9a6dd97705943c3441ebbee222afd | 569b728ab19d1956bf935a98c9c65a03d92ac85f | 28 | medium | [
{
"filename": "src/compiler/codegen/events.js",
"patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*(?:[\\w$]+)?\\s*\\(/\n+const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function(?:\\s+[\\w$]+)?\\s*\\(/\n const fnInvokeRE = /\\([^)]*?\\);*$/\n const si... |
facebook/react | 33,797 | fix: log renders from passive effects for only newly finished work | This fixes displaying incorrect component render entries on a timeline, when we are reconnecting passive effects.
### Before
<img width="2318" height="1127" alt="1" src="https://github.com/user-attachments/assets/9b6b2824-d2de-43a3-8615-2c45d67c3668" />
The cloned nodes will persist original `actualStartTime`, w... | null | 9fec565a9b9f78558323adff1013291cf46f7de7 | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -4155,6 +4155,7 @@ export function reconnectPassiveEffects(\n if (\n enableProfilerTimer &&\n enableComponentPerformanceTrack &&\n+ includeWorkInProgressEffects &&\n (finishedWork.mode & ProfileMode) !== NoM... |
ggml-org/llama.cpp | 20,507 | Fix data race in CUDA's "cpy" kernel (influences GGML's DUP, CONT operations). | # What is it?
There is a data race at particular kernel, which influences DUP and CONT operations.
See [ggml/src/ggml-cuda/cpy.cu](https://github.com/Exile333/llama.cpp/blob/master/ggml/src/ggml-cuda/cpy.cu#L61-L88) at lines 61-88. In this loop, one first loads a part of input matrix into shared memory, then loads... | null | 5a32a9b8a5bddf3c6234fd2eb17b0a7315328f93 | null | low | [
{
"filename": "ggml/src/ggml-cuda/cpy.cu",
"patch": "@@ -56,7 +56,8 @@ static __global__ void cpy_scalar_transpose(const char * cx, char * cdst, const\n const int tx = blockIdx.y * CUDA_CPY_TILE_DIM_2D + threadIdx.x; // transpose block offset\n const int ty = blockIdx.x * CUDA_CPY_TILE_DIM_2D + thr... |
nodejs/node | 61,140 | test: add implicit test for fs dispose handling with using | Add test for implicit fs calls with `await using` syntax | null | 98d23317f02a9b853968a5c2fe090ec314ca06c6 | null | low | [
{
"filename": "test/parallel/test-fs-promises-file-handle-dispose.js",
"patch": "@@ -22,5 +22,29 @@ async function explicitCall() {\n assert.throws(() => dhSync.readSync(), { code: 'ERR_DIR_CLOSED' });\n }\n \n+async function implicitCall() {\n+ let fh;\n+ {\n+ await using openHandle = await fs.open(... |
vuejs/vue | 10,158 | [automated] Patreon sponsors update | This is an automated pull request. | 8f7133c8fa64a11fa12ee7ec511f174c48051570 | bad3c326a3f8b8e0d3bcf07917dc0adf97c32351 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -21,7 +21,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"260px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/stdlib.png\">\n </a>\n </p>\n-\n+ \n <!--special end-... |
electron/electron | 49,638 | 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 | 394d4cf60c9e66f329e0d00d94eff60ca873da6a | 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,302 | ml: add arange method | arange is a utility method to create a 1D tensor with values within an interval `(start, stop]`. since ggml arange does not support `int32` (it first creates `float32` then casts to the desired data type), create it manually | f50d691254e671e69975c4e54fc4d0469b538f10 | 40b8fdbdcacb41b9cf42869051df765f66750036 | 19 | medium | [
{
"filename": "kvcache/causal_test.go",
"patch": "@@ -424,6 +424,17 @@ func (c *testContext) FromIntSlice(s []int32, shape ...int) (ml.Tensor, error) {\n \treturn out, nil\n }\n \n+func (c *testContext) Arange(start, stop, step float32, dtype ml.DType) ml.Tensor {\n+\ts := make([]float32, 0, int((stop-start... |
nodejs/node | 61,429 | src: add missing override specifier to Clean() | The `CallbackInfo::Clean()` method overrides `Cleanable::Clean()` and should be marked as `override`, both because it is good practice to do so and for consistency with the rest of the code base.
<!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/H... | dc04bf6761e3860d9000f4b5bb3bcd73afc5f5a2 | 32ed3cc44a31511b8d7fbf3ae428c41479e50235 | 1 | high | [
{
"filename": "src/node_buffer.cc",
"patch": "@@ -98,7 +98,7 @@ class CallbackInfo : public Cleanable {\n CallbackInfo& operator=(const CallbackInfo&) = delete;\n \n private:\n- void Clean();\n+ void Clean() override;\n inline void OnBackingStoreFree();\n inline void CallAndResetCallback();\n inl... |
vuejs/vue | 10,136 | [automated] Patreon sponsors update | This is an automated pull request. | d09355c5101bcaaa8ff1ff66032fd984a8a14664 | bbdaaf480c00b25d7d900cae79c03ef8d5ca7d53 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -236,6 +236,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/fastcoding_inc.svg\">\n </a>\n </... |
vuejs/vue | 10,130 | [automated] Patreon sponsors update | This is an automated pull request. | 3819af5c9dedde4d1ea81f9caa127e611c8752e3 | d09355c5101bcaaa8ff1ff66032fd984a8a14664 | 1 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -231,6 +231,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/devexpress.png\">\n </a>\n </td>\... |
ollama/ollama | 10,317 | server/internal/client/ollama: handle some network errors gracefully |
In some cases, the client may encounter network errors that are
temporary in nature, such as connection resets or timeouts. In these
cases, the client should retry the operation instead of failing
immediately.
Hopefully this helps users who are experiencing intermittent network
errors in the middle of large downloads... | 369de832cdca7680c8f50ba196d39172a895fcad | 1d99451ad705478c0a22262ad38b5a403b61c291 | 5 | medium | [
{
"filename": "server/internal/client/ollama/registry.go",
"patch": "@@ -223,8 +223,21 @@ type Registry struct {\n \tChunkingThreshold int64\n \n \t// Mask, if set, is the name used to convert non-fully qualified names\n-\t// to fully qualified names. If empty, [DefaultMask] is used.\n+\t// to fully qualifi... |
vuejs/vue | 10,113 | [automated] Patreon sponsors update | This is an automated pull request. | ff911c9ffef16c591b25df05cb2322ee737d13e0 | 3819af5c9dedde4d1ea81f9caa127e611c8752e3 | 2 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -30,11 +30,6 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <table>\n <tbody>\n <tr>\n- <td align=\"center\" valign=\"middle\">\n- <a href=\"https://moduscreate.com/?utm_source=Vue&utm_medium=Partnership&utm_ca... |
ollama/ollama | 10,314 | ml/backend/ggml: use default CUDA compression mode | dc264be6ffa39cc2cb02565fd8674a894b066936 | 09bb2e30f69489b2bd5138fa81d9dbb54c1d2f19 | 1 | high | [
{
"filename": "CMakeLists.txt",
"patch": "@@ -24,7 +24,7 @@ set(GGML_LLAMAFILE ON)\n set(GGML_CUDA_PEER_MAX_BATCH_SIZE 128)\n set(GGML_CUDA_GRAPHS ON)\n set(GGML_CUDA_FA ON)\n-set(GGML_CUDA_COMPRESSION_MODE none)\n+set(GGML_CUDA_COMPRESSION_MODE default)\n \n if((CMAKE_OSX_ARCHITECTURES AND NOT CMAKE_OSX_AR... | |
vercel/next.js | 89,065 | CC Guide: Fix filenames, reduce line breaks | Follow-up | d1cf4e69427d4c914748ea211ccdb095eb539cee | cbea93f43f67a91a207fd2fd08a08ef959039dab | 23 | medium | [
{
"filename": "docs/01-app/02-guides/public-static-pages.mdx",
"patch": "@@ -1,7 +1,7 @@\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_ti... |
facebook/react | 33,796 | Allow runtime_build_and_test action to trigger manually | null | 996d0eb05596ac40209a0a82810741a01442e97e | null | low | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -6,6 +6,12 @@ on:\n pull_request:\n paths-ignore:\n - compiler/**\n+ workflow_dispatch:\n+ inputs:\n+ commit_sha:\n+ required: false\n+ type: string\n+ default: ''\n \n permissions: {}\n \n@@... | |
vuejs/vue | 10,064 | [automated] Patreon sponsors update | This is an automated pull request. | 06d4ad40a49e85e678ce2aa8fac0ecf2176f86e2 | ff911c9ffef16c591b25df05cb2322ee737d13e0 | 2 | medium | [
{
"filename": "BACKERS.md",
"patch": "@@ -226,6 +226,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/jqwidgets_ltd.png\">\n </a>\n </t... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.