repo stringclasses 10
values | pr_number int64 7 155k | title stringlengths 4 137 | body stringlengths 0 68.4k | buggy_commit stringlengths 40 40 ⌀ | fix_commit stringlengths 40 40 | buggy_distance int64 1 30 ⌀ | confidence stringclasses 3
values | files listlengths 1 5 |
|---|---|---|---|---|---|---|---|---|
facebook/react | 32,749 | Avoid double logging component render time | This got moved into the functional component and class component case statements here: https://github.com/facebook/react/commit/0de1233fd180969f7ffdfc98151922f2466ceb1f. So that we could separate the error case for class components.
However, due to a faulty rebase this got restored at the top as well. Leading to dou... | 42a57ea8027de8af55e6f4483c3b9a8f4cba31fb | f9e1b16098f2ff4ed483285219b07066525796b6 | 15 | medium | [
{
"filename": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -3095,25 +3095,6 @@ function commitPassiveMountOnFiber(\n const prevEffectStart = pushComponentEffectStart();\n const prevEffectErrors = pushComponentEffectErrors();\n \n- // If this component rendered in Profiling mode... |
nodejs/node | 60,802 | src: mark unused private field as such | Refs: https://github.com/nodejs/node/pull/59828
| null | 6706b22e350490d3e8e697377b5f388df9305aa0 | null | low | [
{
"filename": "src/node.h",
"patch": "@@ -1462,7 +1462,7 @@ class NODE_EXTERN CallbackScope {\n CallbackScope(CallbackScope&&) = delete;\n \n private:\n- void* resource_storage_global_;\n+ [[maybe_unused]] void* reserved_;\n union {\n v8::Local<v8::Object> local;\n v8::Global<v8::Object>* glo... |
vuejs/vue | 6,441 | fix #6263: $attrs is undefined when component has no props bug (#6263) | <!--
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... | 17130611261fdbab70d0e5ab45036e4b612b17fe | 59dbd4a414394a3ce581f9fbd9554da9af9e4b1d | 30 | medium | [
{
"filename": "flow/component.js",
"patch": "@@ -29,8 +29,8 @@ declare interface Component {\n $slots: { [key: string]: Array<VNode> };\n $scopedSlots: { [key: string]: () => VNodeChildren };\n $vnode: VNode; // the placeholder node for the component in parent's render tree\n- $attrs: ?{ [key: string... |
huggingface/transformers | 42,833 | Compatible with GPTQModel FORAMT.LLM_AWQ | # 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... | f8e8ddb0871a46d4baf80f9a3830221e4d1125b9 | b19844eef694bea15ba5b1a765997292a26ef6d2 | 15 | medium | [
{
"filename": "src/transformers/utils/quantization_config.py",
"patch": "@@ -69,6 +69,7 @@ class AwqFormat(str, Enum):\n GEMM = \"gemm\"\n GEMV = \"gemv\"\n GEMV_FAST = \"gemv_fast\"\n+ LLM_AWQ = \"llm-awq\"\n \n \n class AwqBackend(str, Enum):\n@@ -838,14 +839,13 @@ def post_init(self):\n ... |
facebook/react | 32,748 | [ci] Fix param casing |
Casing was incorrect.
Tested by running locally with a PAT.
```
$ scripts/release/download-experimental-build.js --commit=2d40460cf768071d3a70b4cdc16075d23ca1ff25
Command failed: gh attestation verify artifacts_combined.zip --repo=facebook/react
Error: failed to fetch attestations from facebook/react: HTTP 404: Not... | 553a175c90fd5c89a3c7398aec6edc226a370a95 | 4845e16c22caf27334a1eab712ed258a9ae09752 | 1 | medium | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -487,7 +487,7 @@ jobs:\n #\n # Note that this means that scripts/release/download-experimental-build.js must be run with\n # --no-verify when downloading a build from a fork.\n- if: github.event.pull_re... |
facebook/react | 32,746 | [ci] Fix incorrect condition |
Oops, missed this when I switched it from checking if its a fork to checking if its from this repo.
| 44c46935394c22bf69c1935cb0b708d178091024 | 553a175c90fd5c89a3c7398aec6edc226a370a95 | 2 | high | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -487,7 +487,7 @@ jobs:\n #\n # Note that this means that scripts/release/download-experimental-build.js must be run with\n # --no-verify when downloading a build from a fork.\n- if: github.event.pull_re... |
electron/electron | 48,600 | fix: devtools crashing on Linux in detach mode | #### Description of Change
Closes https://github.com/electron/electron/issues/48430
Refs CL:6633935
Fixes an issue where calling `webContents.openDevTools({ mode: 'detach' })` would cause a crash on Wayland.
#### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to [x]. -->
- ... | d920c82fc4603484f69c64d87a9baed2cc6af990 | 0b179f8f059f9afb2601277cacaa4bc7ea575a96 | 21 | medium | [
{
"filename": "shell/browser/ui/views/electron_views_delegate.cc",
"patch": "@@ -8,6 +8,7 @@\n \n #include \"ui/views/widget/desktop_aura/desktop_native_widget_aura.h\"\n #include \"ui/views/widget/native_widget_aura.h\"\n+#include \"ui/views/window/default_frame_view.h\"\n \n #if BUILDFLAG(IS_LINUX)\n #inc... |
ggml-org/llama.cpp | 18,784 | ggml-cpu: add RVV vec dot kernels for quantization types | ## Summary
This PR adds RVV vector dot kernels for a number of quantization types.
## Key Changes
- Added the following RVV kernels:
| Kernel | VLEN |
| --------- | -------- |
| ggml_vec_dot_iq1_s_q8_K | 256 |
| ggml_vec_dot_iq1_m_q8_K | 256 |
| ggml_vec_dot_iq2_s_q8_K | 128, 256 |
| ggml_vec_dot_iq3_s_q... | null | b908baf1825b1a89afef87b09e22c32af2ca6548 | null | low | [
{
"filename": "ggml/src/ggml-cpu/arch-fallback.h",
"patch": "@@ -171,15 +171,9 @@\n #elif defined(__riscv)\n // quants.c\n #define quantize_row_q8_K_generic quantize_row_q8_K\n-#define ggml_vec_dot_tq1_0_q8_K_generic ggml_vec_dot_tq1_0_q8_K\n-#define ggml_vec_dot_tq2_0_q8_K_generic ggml_vec_dot_tq2_0_q8_K\n... |
ollama/ollama | 7,213 | Update README.md, Linux AMD ROCm area | My small contribution for this amazing work here | null | 1a742f54c91a444295342cdaead2f3c4e5460de6 | null | low | [
{
"filename": "llama/README.md",
"patch": "@@ -55,7 +55,7 @@ go build -tags avx,cuda .\n \n ### ROCm\n \n-Install the [CUDA toolkit v11.3.1](https://developer.nvidia.com/cuda-11-3-1-download-archive):\n+Install [ROCm](https://rocm.docs.amd.com/en/latest/).\n \n ```shell\n make ggml_hipblas.so\n@@ -77,7 +77,... |
vercel/next.js | 87,255 | [turbopack] update warning message in the bundle analyzer | Point next/bundle-analyzer users at the new one when running with turbopack

| null | 1427bf872837c32d7d6edd7a5d9a05d5fee03fbe | null | low | [
{
"filename": "packages/next-bundle-analyzer/index.js",
"patch": "@@ -6,7 +6,9 @@ module.exports =\n }\n if (process.env.TURBOPACK) {\n console.warn(\n- 'The Next Bundle Analyzer is not compatible with Turbopack builds yet, no report will be generated.\\n\\n' +\n+ 'The Next Bundl... |
ollama/ollama | 7,221 | Update README.md | c5e238e8e53fe26a056854c94bac20377d3185b2 | 6a89dcf848b1d041c7c9959dfc46c8c9b037df89 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -333,6 +333,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [ARGO](https://github.com/xark-argo/argo) (Locally download and run Ollama and Huggingface models with RAG on Mac/Windows/Linux)\n - [G1](https://github.com/bklieger-groq/g1) (Prototype... | |
huggingface/transformers | 42,812 | Fix deepspeed sp loss due to missing labels | # What does this PR do?
This PR fixes `_deepspeed_sp_compute_loss`. [UlyssesSPDataLoaderAdapter](https://github.com/deepspeedai/DeepSpeed/blob/6eb98aaf03419d1a3a608b0955eb3eae5ad2dc27/deepspeed/runtime/sequence_parallel/ulysses_sp.py#L598) took `labels` out from `inputs` while inserting `shift_labels` so it doesn't ... | null | 780cc65907949a48d6d4908ec851c9dabe6ee455 | null | low | [
{
"filename": "src/transformers/trainer.py",
"patch": "@@ -3943,6 +3943,9 @@ def _deepspeed_sp_compute_loss(self, model, inputs, return_outputs, pc):\n # Both standard transformer models and Liger-patched models handle shift_labels correctly,\n # so we can directly use the computed loss from... |
vercel/next.js | 87,254 | bundle-analyzer: use <Select> and multiselect for top bar | The top bar is getting quite wide with all of its button toggle groups. This:
- Converts the Compressed/Uncompressed and Client/Server toggles to shadcn `<Select>`s
- Adds a custom `<MultiSelect>` implementation since this is missing in shadcn. This composes shadcn’s popovers and a series of checkboxes, along with ... | affb52dafc7ac99dcd3dd24cca684312d09d3ffa | 39c6cbb208f20ea7b1318e05906528d590040df3 | 1 | medium | [
{
"filename": "apps/bundle-analyzer/app/page.tsx",
"patch": "@@ -13,11 +13,28 @@ import { TreemapVisualizer } from '@/components/treemap-visualizer'\n \n import { Badge } from '@/components/ui/badge'\n import { TreemapSkeleton } from '@/components/ui/skeleton'\n-import { ToggleGroup, ToggleGroupItem } from ... |
vuejs/vue | 4,525 | Specify that tags with side-effects will not be parsed. | Where I work, it's not uncommon to come across `<script>` tags in templates that would not be trivial to move into separate files. If Vue will prevent the execution of the contents of these tags, I think the warning should say so. As it is, it reads more like a recommendation than a requirement:
`Templates should on... | null | fd55399ff9e41bea70a6e42312d8d92b1a87396c | null | low | [
{
"filename": "src/compiler/parser/index.js",
"patch": "@@ -91,7 +91,7 @@ export function parse (\n process.env.NODE_ENV !== 'production' && warn(\n 'Templates should only be responsible for mapping the state to the ' +\n 'UI. Avoid placing tags with side-effects in your template... |
electron/electron | 48,943 | test: fix types in chromium-spec | #### Description of Change
See https://github.com/electron/electron/actions/runs/19341206364
```
Error: electron/spec/chromium-spec.ts(918,54): error TS7006: Parameter '_wc' implicitly has an 'any' type.
Error: electron/spec/chromium-spec.ts(918,59): error TS7006: Parameter 'permission' implicitly has an 'any' ... | 32ae696ee04490e6076ebd90605bc28a960d405a | 40b673873534f4c4a7cf3cb633f977610857b773 | 5 | medium | [
{
"filename": "spec/chromium-spec.ts",
"patch": "@@ -915,7 +915,7 @@ describe('chromium features', () => {\n \n if (action !== 'none') {\n // Make the PermissionRequestHandler behave according to action variable passed for this test\n- testSession.setPermissionRequestHandler... |
nodejs/node | 60,762 | doc: add fullName property to SuiteContext | The fullName property exists on SuiteContext at runtime but was not documented.
Tested to verify behavior:
- Top-level suite: returns suite name
- Nested suite: returns "Parent > Child" format
- Implementation confirmed in lib/internal/test_runner/test.js (line 495)
Fixes: #60757 | null | 90980932a4c75d32f39d0afd31a41a8c2e01d796 | null | low | [
{
"filename": "doc/api/test.md",
"patch": "@@ -3667,7 +3667,9 @@ the path of the root test file.\n ### `context.fullName`\n \n <!-- YAML\n-added: v22.3.0\n+added:\n+ - v22.3.0\n+ - v20.16.0\n -->\n \n The name of the test and each of its ancestors, separated by `>`.\n@@ -3970,6 +3972,16 @@ The absolute pa... |
ggml-org/llama.cpp | 19,374 | WebUI hide models in router mode | When using `llama-server` with presets in router mode add the ability to completely hide certain models from the WebUI.
## Summary
Adding `no-webui = true` to a model's preset configuration will exclude it from the WebUI.
## Why?
I tend to use the preset capability to load a group of models for offline vibe co... | ea003229d30148d0cd268a25e93e57ba51bb354a | 10b26ee23a2d1b563a62db1ea4710cf8b723791a | 24 | medium | [
{
"filename": "tools/server/webui/src/lib/components/app/models/ModelsSelector.svelte",
"patch": "@@ -42,7 +42,13 @@\n \t\tuseGlobalSelection = false\n \t}: Props = $props();\n \n-\tlet options = $derived(modelOptions());\n+\tlet options = $derived(\n+\t\tmodelOptions().filter((option) => {\n+\t\t\tconst mo... |
huggingface/transformers | 42,201 | Fix checkpoint loading with DeepSpeed ZeRO3 | # What does this PR do?
With the [latest revision](https://github.com/huggingface/transformers/commit/6f6095e0cf509f7384d3ce0c1804013ef6cafd5f), loading weights fails with an error when DeepSpeed ZeRO3 is enabled.
This PR resolves the issue.
Here is the stack trace of the error.
```
File "/home/runner/work/D... | 6f6095e0cf509f7384d3ce0c1804013ef6cafd5f | eddd51ec3d01232572b6ef7ca02f8a15c42c7839 | 3 | high | [
{
"filename": "src/transformers/modeling_utils.py",
"patch": "@@ -4233,6 +4233,19 @@ def _load_pretrained_model(\n error_msgs = []\n \n if is_deepspeed_zero3_enabled() and not is_quantized:\n+ if state_dict is None:\n+ if checkpoint_files is None:\n+ ... |
facebook/react | 32,692 | [ci] Rename other stale branch workflow |
Makes it easier to tell what is what
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32692).
* __->__ #32692
* #32691 | null | b88898605427d1e6bb665d7c9261a9be180e5abd | null | low | [
{
"filename": ".github/workflows/shared_cleanup_merged_branch_caches.yml",
"patch": "@@ -1,6 +1,6 @@\n # https://github.com/actions/cache/blob/main/tips-and-workarounds.md#force-deletion-of-caches-overriding-default-cache-eviction-policy\n \n-name: (Shared) Cleanup Branch Caches\n+name: (Shared) Cleanup Mer... |
ollama/ollama | 7,705 | fix: typo in wintray messages const | Found small typo in const name | null | fce30f407a39804867c01b599953c221c17025ac | null | low | [
{
"filename": "app/tray/wintray/menus.go",
"patch": "@@ -39,7 +39,7 @@ func (t *winTray) UpdateAvailable(ver string) error {\n \t\tif err := t.addOrUpdateMenuItem(updateAvailableMenuID, 0, updateAvailableMenuTitle, true); err != nil {\n \t\t\treturn fmt.Errorf(\"unable to create menu entries %w\", err)\n \t... |
vercel/next.js | 87,259 | Update font data | This auto-generated PR updates font data with latest available | null | cb63cb6901253dbccdcb18455d2f5bbbbd1920ac | null | low | [
{
"filename": "packages/font/src/google/font-data.json",
"patch": "@@ -546,6 +546,19 @@\n \"styles\": [\"normal\", \"italic\"],\n \"subsets\": [\"latin\"]\n },\n+ \"Amarna\": {\n+ \"weights\": [\"100\", \"200\", \"300\", \"400\", \"500\", \"600\", \"700\", \"variable\"],\n+ \"styles\": [\"n... |
huggingface/transformers | 42,799 | Add requires_backends to the main init | Fixes https://github.com/huggingface/transformers/issues/42778 | 8ebfd84fa7f4d6c59f5059a439fad10ada26b3ff | 3fbd59b6f101375efef801430053aa22f4211317 | 21 | medium | [
{
"filename": "docs/source/en/internal/import_utils.md",
"patch": "@@ -97,3 +97,5 @@ You can specify the following operators: `==`, `>`, `>=`, `<`, `<=`, `!=`.\n [[autodoc]] utils.import_utils.define_import_structure\n \n [[autodoc]] utils.import_utils.requires\n+\n+[[autodoc]] utils.import_utils.requires_b... |
electron/electron | 47,970 | fix: restore window's canHide property on macOS | #### Description of Change
If calling `app.dock?.hide()` and hiding the window, even if the window is restored, window can no longer be hided.
It due to API set canHide property while calling `app.dock?.hide()`
https://github.com/electron/electron/blob/678fb400fdb465fbfccd77681f32728a5f86e9bd/shell/browser/browse... | null | 3d31030fc57eabf1d5d3993c7c5d52bab7f12c09 | null | low | [
{
"filename": "shell/browser/browser_mac.mm",
"patch": "@@ -543,6 +543,9 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n gin_helper::Promise<void> promise(isolate);\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n+ for (auto* const& window : WindowList::GetWindows())\n+ [window-... |
vuejs/vue | 6,359 | replace Firefix with Firefox | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [ ] Bugf... | null | 3cac5c766fc7b75cacf0a51dbfe10269eb3caf6a | null | low | [
{
"filename": "src/core/util/env.js",
"patch": "@@ -17,7 +17,7 @@ export const isAndroid = UA && UA.indexOf('android') > 0\n export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)\n export const isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge\n \n-// Firefix has a \"watch\" function on Object.proto... |
ggml-org/llama.cpp | 19,519 | test: mul_mat tests with huge batch size | tests for #19471.
vulkan fix is in #19509. | null | 77d6ae4ac89bb879ada3989a748276dfe4553674 | null | low | [
{
"filename": "tests/test-backend-ops.cpp",
"patch": "@@ -7791,6 +7791,10 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {\n test_cases.emplace_back(new test_mul_mat(GGML_TYPE_F16, GGML_TYPE_F32, 1056, 1, 67, {1, 1}, {4, 1}, {0, 2, 1, 3}));\n test_cases.emplace_back(new t... |
nodejs/node | 60,831 | test: replace deprecated regex test assertions in http trailers test | This PR updates `test/parallel/test-http-set-trailers.js` to align with the recent test modernization work happening across the Node.js codebase. Maintainers have been gradually replacing older `assert.ok(/regex/.test(...))` patterns with clearer, more explicit helpers such as `assert.match()` and `assert.doesNotMatch(... | null | 23c58f01e561f86c8913da9f4f446231e4f84a19 | null | low | [
{
"filename": "test/parallel/test-http-set-trailers.js",
"patch": "@@ -43,8 +43,9 @@ function testHttp10(port, callback) {\n \n c.on('end', common.mustCall(() => {\n c.end();\n- assert.ok(\n- !/x-foo/.test(res_buffer),\n+ assert.doesNotMatch(\n+ res_buffer,\n+ /x-foo/,\n `No... |
huggingface/transformers | 42,798 | [XPU] Fix UT errors in the sam3 and lfm series model. | # What does this PR do?
This PR:
1. Update the ground truth of `lfm_moe` to make it pass on XPU. (My local testing indicates that CUDA also requires the update)
2. Add deterministic algorithms to the `sam3` test on XPU (Correctness has higher priority. Our team will subsequently address determinism).
3. XPU's F... | 6217adc6c8f0be7b5374e6a46129ad2214e4c6ed | f80b0485feccccb8102ee788b7609e3ec98a1567 | 2 | medium | [
{
"filename": "tests/models/lfm2_moe/test_modeling_lfm2_moe.py",
"patch": "@@ -176,8 +176,8 @@ def test_model_1a8b_logits(self):\n # Expected mean on dim = -1\n EXPECTED_MEANS = Expectations(\n {\n- (\"cuda\", None): torch.tensor([[-1.3855, -0.5123, -1.3143, -1.214... |
facebook/react | 32,739 | [ci] Run stale cache cleanup every 6 hours |
Run this a bit more frequently so we don't thrash `main` caches as often.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32739).
* __->__ #32739
* #32738 | ab693a926f13cc2c4c4a3ab19d5405471f87236b | 740a4f7a02aee67495d086a46f92e72e2318cc45 | 27 | medium | [
{
"filename": ".github/workflows/shared_cleanup_stale_branch_caches.yml",
"patch": "@@ -3,7 +3,8 @@\n name: (Shared) Cleanup Stale Branch Caches\n on:\n schedule:\n- - cron: 0 0 * * *\n+ # Every 6 hours\n+ - cron: 0 */6 * * *\n workflow_dispatch:\n \n permissions: {}",
"additions": 2,
"... |
ollama/ollama | 7,767 | KV Cache Fixes | Users have reported a number of errors related to the KV cache such as:
- Error: "could not find a KV slot for the batch - try reducing the size of the batch or increase the context. code: 1"
- Hanging due to infinite loops
- Output that ends unexpectedly
- Slower performance than before when passing inputs that ar... | c3ff9164317940ec09534fd2370ec604a0de32ad | c4b34f2a2af5ce3fe7b05ae2d3334e155029ce6b | 1 | high | [
{
"filename": "llama/runner/runner.go",
"patch": "@@ -122,7 +122,10 @@ func (s *Server) NewSequence(prompt string, images []ImageData, params NewSequen\n \tparams.numKeep = min(params.numKeep, s.cache.numCtx-1)\n \n \tif len(inputs) > s.cache.numCtx {\n-\t\tslog.Warn(\"input exceeds context length\", \"prom... |
ggml-org/llama.cpp | 19,635 | common : fix Step-3.5-Flash format detection and thinking support | ## Summary
Step-3.5-Flash (196B MoE) uses the same XML tool call output format as Qwen3-Coder and Nemotron 3 Nano (\`<tool_call><function=...><parameter=...>\`), but its template lacks the bare \`<function>\` and plural \`<parameters>\` markers in the tool enumeration section. The previous detection logic required all... | 39e4b1dc9bd00eb21a4e9cc6950855f94bc66de0 | 3dadc88b589ca43b8fca0e1beb22d4b78a09b4dd | 1 | medium | [
{
"filename": "common/chat.cpp",
"patch": "@@ -3141,15 +3141,15 @@ static common_chat_params common_chat_templates_apply_jinja(\n }\n \n // Qwen3-Coder XML format detection (must come before Hermes 2 Pro)\n- // Detect via explicit XML markers unique to Qwen3-Coder to avoid false positives in othe... |
facebook/react | 32,738 | [ci] Dont sign builds originating from anything other than facebook/react |
We now generate attestations in `process_artifacts_combined` so we can verify the provenance of the build later in other workflows. However, this requires `write` permissions for `id-token` and `attestations` so PRs from forks cannot generate this attestation.
To get around this, I added a `--no-verify` flag to scrip... | 7e4c258e160d3a2ca690b44a5938271873919ee1 | 44c46935394c22bf69c1935cb0b708d178091024 | 6 | medium | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -481,6 +481,13 @@ jobs:\n ./build2.tgz\n if-no-files-found: error\n - uses: actions/attest-build-provenance@v2\n+ # We don't verify builds generated from pull requests not originating from facebook/... |
ollama/ollama | 5,931 | Add llm-axe to Community Libraries in ReadMe | b8c66d33070e2c7bf2fb2057c260742db11e15b6 | ecf41eed0595fb031f1addc179f6abb86d8405f8 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -418,6 +418,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Portkey](https://portkey.ai/docs/welcome/integration-guides/ollama)\n - [PromptingTools.jl](https://github.com/svilupp/PromptingTools.jl) with an [example](https://svilupp.github.io/Pr... | |
ggml-org/llama.cpp | 19,704 | common : fix gpt-oss Jinja error with content and thinking on tool-call messages | Erase the `content` from the adjusted message after copying `reasoning_content` to `thinking`.
Regression from #16937
Fixes #19703.
All four tests related to chat have passed in this fix:
- test-chat
- test-chat-parser
- test-chat-peg-parser
- test-chat-template
AI was used in an assistive capacity to help trace t... | c5897995a726dc9ebdafd91d4cd552b95f4ac199 | 39e4b1dc9bd00eb21a4e9cc6950855f94bc66de0 | 8 | medium | [
{
"filename": "common/chat.cpp",
"patch": "@@ -2043,6 +2043,7 @@ static common_chat_params common_chat_params_init_gpt_oss(const common_chat_temp\n if (has_reasoning_content && has_tool_calls) {\n auto adjusted_message = msg;\n adjusted_message[\"thinking\"] = msg.at(\"reason... |
ollama/ollama | 7,607 | feat: add vibe app to readme | Add [vibe](https://github.com/thewh1teagle/vibe) app which just added Ollama support | d2a25206b1dc4b13796bfdc2182f7e683ca8170c | 303f4bc79e2b38e0f5456304aa828c61d21b7d42 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -440,6 +440,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Raycast extension](https://github.com/MassimilianoPasquini97/raycast_ollama)\n - [Discollama](https://github.com/mxyng/discollama) (Discord bot inside the Ollama discord channel)\n - [... |
vercel/next.js | 87,258 | bundle-analyzer: make running the web server default | This removes `next experimental-analyze --serve` in favor of simply `next experimental-analyze`. This is by far the most common use case and should be the simplest to express.
Output-only mode can now be used with `next experimental-analyze --output` as well as `next experimental-analyze --output path/to/my/output`.... | null | e52159b12d611d2605a0ad4a6ee621b3f5f6af01 | null | low | [
{
"filename": "packages/next/src/bin/next.ts",
"patch": "@@ -202,7 +202,7 @@ program\n program\n .command('experimental-analyze')\n .description(\n- 'Analyze bundle output. Does not produce build artifacts. Only compatible with Turbopack.'\n+ 'Analyze production bundle output with an interactive w... |
ollama/ollama | 7,707 | Update README.md | This Chrome extension will help users interact with the UI. Users can download and delete models from the UI, along with many other features. | bfd30f428682cca87f8dcd953fdd2af754a19f89 | d2a25206b1dc4b13796bfdc2182f7e683ca8170c | 2 | high | [
{
"filename": "README.md",
"patch": "@@ -336,6 +336,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Perfect Memory AI](https://www.perfectmemory.ai/) (Productivity AI assists personalized by what you have seen on your screen, heard and said in the meetings)\n - [Hexabot](https://gith... |
electron/electron | 48,900 | fix: restore window's canHide property on macOS | Backport of #47970
See that PR for details.
Notes: Restored window's canHide property | null | 5e9c442b2afd2121c9aa4e9154f642e1b6292147 | null | low | [
{
"filename": "shell/browser/browser_mac.mm",
"patch": "@@ -531,6 +531,9 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n gin_helper::Promise<void> promise(isolate);\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n+ for (auto* const& window : WindowList::GetWindows())\n+ [window-... |
nodejs/node | 60,828 | tools: add temporal updater | <!--
Before submitting a pull request, please read:
- the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md
- the commit message formatting guidelines at
https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-requests.md#commit-message-guidelines
For code changes:
1. Inc... | null | 7955ef126f651eadaa2b39fd3e3262d7dc388517 | null | low | [
{
"filename": ".github/workflows/tools.yml",
"patch": "@@ -38,6 +38,7 @@ on:\n - root-certificates\n - simdjson\n - sqlite\n+ - temporal\n - undici\n - uvwasi\n - zlib\n@@ -255,6 +256,14 @@ jobs:\n cat temp-output\n ... |
ggml-org/llama.cpp | 19,700 | ggml-webgpu: Add unary op (SQR, SQRT, SIN, COS) support. | Hello. I have added support for some unary operations (SQR, SQRT, SIN, COS) to the WebGPU backend.
| e7f2f95c9a6d103d13bf25a1a2227ba8e51052b2 | 11c325c6e0666a30590cde390d5746a405e536b9 | 16 | medium | [
{
"filename": "docs/ops.md",
"patch": "@@ -31,7 +31,7 @@ Legend:\n | CONV_3D | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |\n | CONV_TRANSPOSE_1D | ❌ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ❌ | ❌ |\n | CONV_TRANSPOSE_2D | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ ... |
vercel/next.js | 87,235 | [ci] Fix releaseStats in build-and-deploy | Sames as for Generate PR stats (https://github.com/vercel/next.js/blob/ece6982fbcdd97d9b14cba3bd1c0b73ae6232155/.github/workflows/pull_request_stats.yml#L70) | ec20150b7fea0543dbd0650ad16ea120704329c2 | 5a44f652c983fb2b984bfae5c851b26a1d03e0d5 | 2 | high | [
{
"filename": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -707,6 +707,9 @@ jobs:\n env:\n PR_STATS_COMMENT_TOKEN: ${{ secrets.PR_STATS_COMMENT_TOKEN }}\n NEXT_SKIP_NATIVE_POSTINSTALL: 1\n+ # This uses the webpack bundle analyzer and for consistent results we n... |
vuejs/vue | 5,709 | Add handleError during event handling | Currently handleError is used to handle errors during lifecycle hooks and component rendering. This handles most errors thrown by the component however event handlers are not handled. So a component like:
```
<template>
<button @click="error()">I Throw Errors</button>
</template>
<script>
{
methods: ... | null | 11b7d5dff276caa54da3ef5b52444c0e2c5bbf41 | null | low | [
{
"filename": "src/core/instance/events.js",
"patch": "@@ -1,7 +1,13 @@\n /* @flow */\n \n+import {\n+ tip,\n+ toArray,\n+ hyphenate,\n+ handleError,\n+ formatComponentName\n+} from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n-import { toArray, tip, hyphenate, formatCompo... |
huggingface/transformers | 42,808 | Automatic release script | Automatic releases to pypi when a tag is pushed; the workflow will still need to be validated by a core maintainer. | null | 8a2a83d574fd461697a29410a36737ed112f8ba7 | null | low | [
{
"filename": ".github/workflows/release.yml",
"patch": "@@ -0,0 +1,60 @@\n+name: Release\n+on:\n+ push:\n+ tags:\n+ - v*\n+ branches:\n+ - 'v*-release'\n+\n+jobs:\n+ build_and_test:\n+ name: build release\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v4\n+\... |
facebook/react | 32,644 | [DevTools] Add fb local build command | <!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory.
Before submitting a pull request, please make sure the following is done:
1. Fork ... | null | dc9b74647e093b531dc876a2438f12dac776e480 | null | low | [
{
"filename": "packages/react-devtools-extensions/package.json",
"patch": "@@ -8,6 +8,7 @@\n \"build:chrome\": \"cross-env NODE_ENV=production node ./chrome/build\",\n \"build:chrome:fb\": \"cross-env NODE_ENV=production FEATURE_FLAG_TARGET=extension-fb node ./chrome/build --crx\",\n \"build:chr... |
huggingface/transformers | 42,807 | Raise conversion errors after loading | # What does this PR do?
As per the title. As discussed offline, it's very dangerous in general to NOT re-raise them, as it would make any bug in Converters invisible to us in tests (and to users not looking properly at logs) | a8f32a0e9c2fec0f196fab5d8316a03f35d0c528 | 464dfa04460cf2c2b3fad6ebca6f11b81f663d4f | 11 | medium | [
{
"filename": "src/transformers/core_model_loading.py",
"patch": "@@ -409,7 +409,7 @@ def convert(\n config=None,\n hf_quantizer=None,\n missing_keys: Optional[MutableSet[str]] = None,\n- misc: Optional[MutableMapping[str, str]] = None,\n+ conversion_errors: Optional[Mu... |
ollama/ollama | 7,764 | Fix minor typo in import.md | changed 'containg' to 'containing'. | null | 2f0a8c8778c9258dbe44c2d04b85fac82e3bf7b9 | null | low | [
{
"filename": "docs/import.md",
"patch": "@@ -81,7 +81,7 @@ If you have a GGUF based model or adapter it is possible to import it into Ollam\n * converting a Safetensors adapter with the `convert_lora_to_gguf.py` from Llama.cpp; or\n * downloading a model or adapter from a place such as HuggingFace\n \n... |
electron/electron | 48,902 | fix: restore window's canHide property on macOS | Backport of #47970
See that PR for details.
Notes: Restored window's canHide property | null | 35ed9f6c6a8b6c5476a46dd86427fbd9f1441c85 | null | low | [
{
"filename": "shell/browser/browser_mac.mm",
"patch": "@@ -531,6 +531,9 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n gin_helper::Promise<void> promise(isolate);\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n+ for (auto* const& window : WindowList::GetWindows())\n+ [window-... |
ggml-org/llama.cpp | 19,732 | vulkan: fix MMQ shader push constants and multi-dispatch | We forgot to update the mul_mmq shader in #19509. This should fix #19710. | null | abb9f3c42b5e6acee9e8e37836ef691d1a41bdb8 | null | low | [
{
"filename": "ggml/src/ggml-vulkan/vulkan-shaders/mul_mmq.comp",
"patch": "@@ -57,6 +57,8 @@ layout (push_constant) uniform parameter\n uint nbi1;\n uint ne11;\n #else\n+ uint base_work_group_z;\n+ uint num_batches;\n uint k_split;\n uint ne02;\n uint ne12;\n@@ -108,7 +110,7 @@ vo... |
ollama/ollama | 7,746 | Add Community Integration (Update README.md) | Added [Abbey](https://github.com/US-Artificial-Intelligence/abbey), an open source AI interface server, into community integrations | 0ef17ede89d01126dead58c81aafa4c63be233e3 | bfd30f428682cca87f8dcd953fdd2af754a19f89 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -338,6 +338,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Reddit Rate](https://github.com/rapidarchitect/reddit_analyzer) (Search and Rate Reddit topics with a weighted summation)\n - [VT](https://github.com/vinhnx/vt.ai) (A minimal multimoda... |
nodejs/node | 60,784 | 2025-11-25, Version 20.19.6 'Iron' (LTS), @marco-ippolito | ### Notable Changes
* \[[`6277910a15`](https://github.com/nodejs/node/commit/6277910a15)] - **crypto**: update root certificates to NSS 3.114 (Node.js GitHub Bot) [#59571](https://github.com/nodejs/node/pull/59571)
* \[[`082e50d4a2`](https://github.com/nodejs/node/commit/082e50d4a2)] - **doc**: update the instructi... | null | 6a530fe628b4cdbf4c96bf3acc37e76d86def1d0 | null | low | [
{
"filename": "CHANGELOG.md",
"patch": "@@ -35,7 +35,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.5\">20.19.5</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.19.6\">20.19.6</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V20.md#20... |
vercel/next.js | 87,231 | Update turbopack team members | null | a44f01b16614d2f08c77a9fb56ffa159fb230e92 | null | low | [
{
"filename": ".github/labeler.json",
"patch": "@@ -76,12 +76,10 @@\n { \"type\": \"user\", \"pattern\": \"icyJoseph\" }\n ],\n \"created-by: Turbopack team\": [\n+ { \"type\": \"user\", \"pattern\": \"andrewimm\" },\n { \"type\": \"user\", \"pattern\": \"bgw\" },\n- { \"type\"... | |
vuejs/vue | 6,180 | fix: checkbox v-model="array" ignore false-value, fix #6178 | <!--
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 | 3d14e855e422b656859d1b419af43b94320fcfce | null | low | [
{
"filename": "src/platforms/web/compiler/directives/model.js",
"patch": "@@ -93,7 +93,7 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$c){$$i<0&&(${value}=$$a.concat($... |
ollama/ollama | 7,728 | Improve crash reporting | Many model crashes are masked behind "An existing connection was forcibly closed by the remote host" This captures that common error message and wires in any detected errors from the log.
This also adds the deepseek context shift error to the known errors we capture. | 81d55d3e4d3e18404414900dd341438aad329656 | 909a88c5c0242d2dbaeb4b07ff643a9b6b6bada0 | 9 | medium | [
{
"filename": "llm/server.go",
"patch": "@@ -838,13 +838,15 @@ func (s *llmServer) Completion(ctx context.Context, req CompletionRequest, fn fu\n \t}\n \n \tif err := scanner.Err(); err != nil {\n-\t\tif strings.Contains(err.Error(), \"unexpected EOF\") {\n+\t\tif strings.Contains(err.Error(), \"unexpected ... |
facebook/react | 32,733 | [flow] Replace $PropertyType with indexed access type in ReactNativeTypes | ## Summary
Replace these deprecated types to prepare for removal of support in Flow.
## How did you test this change?
flow
| null | b59f18601179bb06a2c32a76547fd4929aa1ce9c | null | low | [
{
"filename": "packages/react-native-renderer/src/ReactNativeTypes.js",
"patch": "@@ -83,8 +83,8 @@ export type ViewConfig = $ReadOnly<{\n }>;\n \n export type PartialViewConfig = $ReadOnly<{\n- bubblingEventTypes?: $PropertyType<ViewConfig, 'bubblingEventTypes'>,\n- directEventTypes?: $PropertyType<ViewC... |
huggingface/transformers | 42,813 | update deprecation msg for `warmup_ratio` | # What does this PR do?
This PR updates the deprecation msg for `warmup_ratio` to have it less confusing. | 3f3cae74245cba80b5cc34c6c3e914940ac3f109 | 6a93635e1d6e5f94f15bdde84ac2477e86423e5e | 29 | medium | [
{
"filename": "src/transformers/training_args.py",
"patch": "@@ -860,7 +860,7 @@ class TrainingArguments:\n warmup_ratio: float | None = field(\n default=None,\n metadata={\n- \"help\": \"This argument is deprecated and will be removed in v5. Use `warmup_steps` instead as it a... |
ollama/ollama | 7,743 | expose underlying error on embedding failure | Avoid a round-trip asking users for logs to see what went wrong. | 4b8a2e341a9b4e713180b483f42316665c5faea3 | f602ab4de44756ebffa74a1e3c6e6bd0f3febab3 | 2 | high | [
{
"filename": "server/routes.go",
"patch": "@@ -507,7 +507,7 @@ func (s *Server) EmbeddingsHandler(c *gin.Context) {\n \tembedding, err := r.Embedding(c.Request.Context(), req.Prompt)\n \tif err != nil {\n \t\tslog.Info(fmt.Sprintf(\"embedding generation failed: %v\", err))\n-\t\tc.JSON(http.StatusInternalS... |
facebook/react | 32,730 | [ci] Pass GH_TOKEN to runtime_prereleases |
Seems like this also needs to be specified.
Note: #32732 needs to land first.
| ee0855f427832e899767f7659c5289364218ab9e | e5f275e72ac3c469845ca48452fca672e1427953 | 2 | medium | [
{
"filename": ".github/workflows/runtime_prereleases_manual.yml",
"patch": "@@ -35,6 +35,7 @@ jobs:\n dist_tag: canary,next\n secrets:\n NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n \n publish_prerelease_experimental:\n name: Publish to Experiment... |
huggingface/transformers | 42,058 | [kernels] adding RMSNorm kernel for mps devices | # What does this PR do?
Adds the mlx RMSnorm kernels for mps devices to transformers
<img width="1348" height="767" alt="image" src="https://github.com/user-attachments/assets/327ae2d6-736a-4ca7-9953-e04732bf3dab" />
| de055d6db06d906cdd82030ef1e6776a2be3d6b5 | 0c18820c51fecbfeeeb788602d6a8062a321f57c | 2 | high | [
{
"filename": "src/transformers/integrations/hub_kernels.py",
"patch": "@@ -111,6 +111,12 @@ def use_kernel_func_from_hub(func_name: str):\n layer_name=\"RMSNorm\",\n )\n },\n+ \"mps\": {\n+ Mode.INFERENCE: LayerRepository(\n+ ... |
facebook/react | 32,732 | [ci] Add GH_TOKEN as secret input to prereleases |
Seems like this also needs to be specified
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32732).
* #32730
* __->__ #32732 | ee0855f427832e899767f7659c5289364218ab9e | 1cdf6b95901381e30afee8200be60f895c589267 | 1 | high | [
{
"filename": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -14,6 +14,8 @@ on:\n required: true\n type: string\n secrets:\n+ GH_TOKEN:\n+ required: true\n NPM_TOKEN:\n required: true\n \n@@ -51,6 +53,6 @@ jobs:\n - run: yarn install --frozen-lo... |
ggml-org/llama.cpp | 19,686 | CUDA: fix kernel selection logic for tile FA | Fixes https://github.com/ggml-org/llama.cpp/issues/19652 .
The problem is that the kernel selection logic is slightly wrong so the host code runs into an abort. | null | c78e682245f856ab5cfc2ffc0f8c20e8e12f163f | null | low | [
{
"filename": "ggml/src/ggml-cuda/fattn-tile.cuh",
"patch": "@@ -1186,8 +1186,10 @@ static void launch_fattn_tile_switch_ncols2(ggml_backend_cuda_context & ctx, ggm\n GGML_ASSERT(Q->ne[2] % K->ne[2] == 0);\n const int gqa_ratio = Q->ne[2] / K->ne[2];\n \n+ // On NVIDIA (Pascal and older) the GQA ... |
vuejs/vue | 6,107 | fix merge strategy function of option props, methods, inject & computed | fix #6093 .
<!--
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)
... | 606666d5a9008ab72f7cce9803b26310c636eef8 | f41773fb307ce4d0df7ecb4729a2bb351ece18f7 | 17 | medium | [
{
"filename": "src/core/instance/inject.js",
"patch": "@@ -1,7 +1,6 @@\n /* @flow */\n \n import { warn } from '../util/index'\n-import { hasOwn } from 'shared/util'\n import { hasSymbol } from 'core/util/env'\n import { defineReactive, observerState } from '../observer/index'\n \n@@ -56,7 +55,7 @@ export f... |
huggingface/transformers | 42,776 | fix awq | # What does this PR do?
This PR simplifies a bit the AWQ integration. cc @Qubitium
Also, I fixed some issues with gptq tests as the hub tests are failiing due to them | 8ebfd84fa7f4d6c59f5059a439fad10ada26b3ff | f8e8ddb0871a46d4baf80f9a3830221e4d1125b9 | 8 | medium | [
{
"filename": "src/transformers/integrations/awq.py",
"patch": "@@ -15,12 +15,13 @@\n \n from typing import Optional, Union\n \n-from ..utils import is_gptqmodel_available, is_llm_awq_available, is_torch_available, logging\n-from ..utils.quantization_config import (\n- AwqBackend,\n-)\n+from ..quantizers... |
vercel/next.js | 87,215 | [turbopack] Flag `turbopackInferModuleSideEffects` so it is only enabled in canary builds | Since we are aiming for a release this week, lets flag this off since it probably won't get enough dogfooding before then.
Also this will unblock landing #86675 | null | 266f2c7d6a4187ce1801a16394470963bf49b9dc | null | low | [
{
"filename": "packages/next/src/server/config-shared.ts",
"patch": "@@ -469,7 +469,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 ... |
ollama/ollama | 7,749 | fix(runner): Set logits to 0 if false on Batch.Add | Closes: https://github.com/ollama/ollama/issues/7656
This was a fun bunch of bug hunting to try to chase down nondeterministic behavior with the Granite 3 models that shows up with the switch to the go-based runner. | 5b3393b6a2920c4f410ee636777533c77752106e | 807ace5b1f4fc9de7347297b3c8a695c566d9fd9 | 25 | medium | [
{
"filename": "llama/llama.go",
"patch": "@@ -384,6 +384,8 @@ func (b *Batch) Add(token int, embed []float32, pos int, logits bool, seqIds ...\n \n \tif logits {\n \t\tunsafe.Slice(b.c.logits, b.allocSize())[b.c.n_tokens] = 1\n+\t} else {\n+\t\tunsafe.Slice(b.c.logits, b.allocSize())[b.c.n_tokens] = 0\n \t}... |
nodejs/node | 60,818 | tools: update nixpkgs-unstable to a8d610af3f1a5fb71e23e08434d8d61a466 | This is an automated update of nixpkgs-unstable to a8d610af3f1a5fb71e23e08434d8d61a466. | null | 1e7eb90b39f07303ac974dfd6680d737ae31a909 | null | low | [
{
"filename": "tools/nix/pkgs.nix",
"patch": "@@ -1,10 +1,10 @@\n arg:\n let\n repo = \"https://github.com/NixOS/nixpkgs\";\n- rev = \"71cf367cc2c168b0c2959835659c38f0a342f9be\";\n+ rev = \"a8d610af3f1a5fb71e23e08434d8d61a466fc942\";\n nixpkgs = import (builtins.fetchTarball {\n url = \"${repo}/ar... |
ggml-org/llama.cpp | 19,730 | models : fix qwen3.5 beta/gate shapes | fix #19728
cont #19660
Forgot to update the `beta` / `gate` shapes after the refactor. | 27326bfce1f2cc688c042e4a75522a9619c2c48f | da348c9dfbcfab16584f4640ee53146fdf85a741 | 10 | medium | [
{
"filename": "src/models/kimi-linear.cpp",
"patch": "@@ -149,17 +149,19 @@ llm_build_kimi_linear::llm_build_kimi_linear(const llama_model & model, const ll\n g1 = ggml_mul(ctx0, g1, A);\n cb(g1, \"kda_g1\", il);\n \n+ g1 = ggml_reshape_4d(ctx0, g1, head_dim, n_head, n_seq... |
electron/electron | 47,331 | feat: add bypassCustomProtocolHandlers option to net.request | #### Description of Change
This PR adds the `bypassCustomProtocolHandlers` option to `net.request()`, making it consistent with `net.fetch()` which already has this parameter.
Currently, when using custom protocol handlers registered via `protocol.handle()`, there's a potential issue with circular interception when ... | null | bc86e68a720011824d25a83c8ab401356c6ac513 | null | low | [
{
"filename": "docs/api/client-request.md",
"patch": "@@ -25,6 +25,11 @@ following properties:\n with which the request is associated. Defaults to the empty string. The\n `session` option supersedes `partition`. Thus if a `session` is explicitly\n specified, `partition` is ignored.\n+ * `bypass... |
facebook/react | 32,729 | [ci] Fix missing permissions for prereleases |
Missed these earlier.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32729).
* __->__ #32729
* #32728 | ab693a926f13cc2c4c4a3ab19d5405471f87236b | ee0855f427832e899767f7659c5289364218ab9e | 21 | medium | [
{
"filename": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -29,6 +29,9 @@ jobs:\n publish_prerelease:\n name: Publish prelease (${{ inputs.release_channel }}) ${{ inputs.commit_sha }} @${{ inputs.dist_tag }}\n runs-on: ubuntu-latest\n+ permissions:\n+ # We use github.token to ... |
ggml-org/llama.cpp | 19,729 | mtmd: clip_graph::build_attn flash-attn disabled changes | This PR extracts a small, self-contained change from [#17400](https://github.com/ggml-org/llama.cpp/pull/17400).
### Summary
* Refactors `clip_graph::build_attn`.
* setting _`flash_attn_type`_ via CLI params
* Adds a `--flash_off` option to `tools/mtmd/tests.sh` to exercise the updated code path.
### Testing... | eeef3cfcedf853a938e3a7ea7f537ff3b8499474 | e6267a935901313dc727ec74d159fc66e206e9c4 | 14 | medium | [
{
"filename": "tools/mtmd/clip.cpp",
"patch": "@@ -628,9 +628,6 @@ ggml_tensor * clip_graph::build_attn(\n ggml_tensor * v = ggml_permute(ctx0, v_cur, 1, 2, 0, 3);\n v = ggml_cont(ctx0, v);\n \n- const auto n_tokens = q->ne[1];\n- const auto n_head = q->ne[2];\n-\n gg... |
vercel/next.js | 87,002 | [ci] Only install Playwright dependencies for used browser | Installs much less via apt. | c18fb497bcffd75246045acb6c6c3cfad294fb39 | 9688b06c0bc10653fbffe85b0aea79f07bf69e59 | 19 | medium | [
{
"filename": ".github/workflows/build_and_test.yml",
"patch": "@@ -902,6 +902,7 @@ jobs:\n \n uses: ./.github/workflows/build_reusable.yml\n with:\n+ browser: 'firefox webkit'\n afterBuild: |\n pnpm playwright install\n ",
"additions": 1,
"deletions": 0
},
{
"file... |
vuejs/vue | 6,127 | feat(warnings): Suggest casting boolean keys | Closes #6126
<!--
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 on... | null | 7583844d0b6b8e5880b98aafed2af90de6e9f735 | null | low | [
{
"filename": "src/shared/util.js",
"patch": "@@ -22,7 +22,11 @@ export function isFalse (v: any): boolean %checks {\n * Check if value is primitive\n */\n export function isPrimitive (value: any): boolean %checks {\n- return typeof value === 'string' || typeof value === 'number'\n+ return (\n+ typeo... |
huggingface/transformers | 42,783 | Fix integration test in Owlv2 image processing tests | Checked on a CI runner
Cc @ydshieh | null | dfe6e4c0efe47a4e0770b346a332f4a3423e7ca7 | null | low | [
{
"filename": "tests/models/owlv2/test_image_processing_owlv2.py",
"patch": "@@ -127,7 +127,7 @@ def test_image_processor_integration_test(self):\n pixel_values = processor(image, return_tensors=\"pt\").pixel_values\n \n mean_value = round(pixel_values.mean().item(), 4)\n- ... |
ollama/ollama | 7,676 | server: allow mixed-case model names on push, pull, cp, and create | This change allows for mixed-case model names to be pushed, pulled, copied, and created, which was previously disallowed because the Ollama registry was backed by a Docker registry that enforced a naming convention that disallowed mixed-case names, which is no longer the case.
This does not break existing, intended,... | null | 4b8a2e341a9b4e713180b483f42316665c5faea3 | null | low | [
{
"filename": "server/images.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"log/slog\"\n+\t\"net\"\n \t\"net/http\"\n \t\"net/url\"\n \t\"os\"\n@@ -1071,6 +1072,21 @@ func makeRequestWithRetry(ctx context.Context, method string, requestURL *url.UR\n \treturn nil, errUnauthorized\n }\... |
ggml-org/llama.cpp | 19,731 | webui: Fix Attachments not being included in completion request | Fix #19717 | ea003229d30148d0cd268a25e93e57ba51bb354a | 03fd9d3bb43f7d5132ded9d7a47740c07cffc76d | 13 | medium | [
{
"filename": "tools/server/webui/src/lib/stores/chat.svelte.ts",
"patch": "@@ -498,7 +498,8 @@ class ChatStore {\n \t\t\t\tMessageRole.USER,\n \t\t\t\tcontent,\n \t\t\t\tMessageType.TEXT,\n-\t\t\t\tparentIdForUserMessage ?? '-1'\n+\t\t\t\tparentIdForUserMessage ?? '-1',\n+\t\t\t\textras\n \t\t\t);\n \t\t\t... |
ollama/ollama | 7,739 | Better error suppression when getting terminal colours | Fixes #7737 | 5c18e66384de7f8106fc3b26bfafe0145ed5f7a9 | e66c29261a8b8db6214ddebdc727e7b247be74df | 3 | high | [
{
"filename": "scripts/install.sh",
"patch": "@@ -4,8 +4,8 @@\n \n set -eu\n \n-red=\"$( (/usr/bin/tput bold; /usr/bin/tput setaf 1; :) 2>&-)\"\n-plain=\"$( (/usr/bin/tput sgr0; :) 2>&-)\"\n+red=\"$( (/usr/bin/tput bold || :; /usr/bin/tput setaf 1 || :) 2>&-)\"\n+plain=\"$( (/usr/bin/tput sgr0 || :) 2>&-)\"... |
facebook/react | 32,728 | [scripts] Verify artifact integrity when downloading |
Uses https://cli.github.com/manual/gh_attestation_verify to verify that the downloaded artifact matches the attestation generated during the build process in runtime_commit_artifacts.
Example:
On a workflow run of runtime_build_and_test.yml with no attestations:
```
$ scripts/release/download-experimental-build.js -... | null | 7e4c258e160d3a2ca690b44a5938271873919ee1 | null | low | [
{
"filename": "scripts/release/shared-commands/download-build-artifacts.js",
"patch": "@@ -3,8 +3,9 @@\n const {join} = require('path');\n const theme = require('../theme');\n const {exec} = require('child-process-promise');\n-const {existsSync, readFileSync} = require('fs');\n+const {existsSync, mkdtempSyn... |
vuejs/vue | 6,072 | perf: remove src directory from npm module | **What kind of change does this PR introduce?**
- [ ] Bugfix
- [ ] Feature
- [ ] Code style update
- [ ] Refactor
- [x] Build-related changes
- [ ] Other, please describe:
**Does this PR introduce a breaking change?**
- [x] Yes
- [ ] No
Breaking change is only for users, who uses undocumented requires... | b0b6b7e97297f95a170e4dd7dac40f9041867eb1 | e7615737f142e3350b53d09d3a46d7ec143d1ef4 | 12 | medium | [
{
"filename": "package.json",
"patch": "@@ -7,7 +7,6 @@\n \"unpkg\": \"dist/vue.js\",\n \"typings\": \"types/index.d.ts\",\n \"files\": [\n- \"src\",\n \"dist/*.js\",\n \"types/*.d.ts\"\n ],",
"additions": 0,
"deletions": 1
}
] |
electron/electron | 48,883 | feat: add bypassCustomProtocolHandlers option to net.request | Backport of #47331
See that PR for details.
Notes: Add bypassCustomProtocolHandlers option to net.request
| null | 7a5e34e6ca7e318b8d9fb8028c466ac852e203a0 | null | low | [
{
"filename": "docs/api/client-request.md",
"patch": "@@ -25,6 +25,11 @@ following properties:\n with which the request is associated. Defaults to the empty string. The\n `session` option supersedes `partition`. Thus if a `session` is explicitly\n specified, `partition` is ignored.\n+ * `bypass... |
nodejs/node | 59,791 | deps: update uvwasi to 0.0.23 | This is an automated update of uvwasi to 0.0.23. | null | 4302d247ad5d8a51973ae9ebf7aca727db190a74 | null | low | [
{
"filename": "deps/uvwasi/include/uvwasi.h",
"patch": "@@ -11,7 +11,7 @@ extern \"C\" {\n \n #define UVWASI_VERSION_MAJOR 0\n #define UVWASI_VERSION_MINOR 0\n-#define UVWASI_VERSION_PATCH 21\n+#define UVWASI_VERSION_PATCH 23\n #define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \\\n ... |
ollama/ollama | 6,693 | Notify the user if systemd is not running during install | Fixes: https://github.com/ollama/ollama/issues/6636 | 4759d879f2376ffb9b82f296e442ec8ef137f27b | 5c18e66384de7f8106fc3b26bfafe0145ed5f7a9 | 10 | medium | [
{
"filename": "scripts/install.sh",
"patch": "@@ -4,9 +4,12 @@\n \n set -eu\n \n+red=\"$( (/usr/bin/tput bold; /usr/bin/tput setaf 1; :) 2>&-)\"\n+plain=\"$( (/usr/bin/tput sgr0; :) 2>&-)\"\n+\n status() { echo \">>> $*\" >&2; }\n-error() { echo \"ERROR $*\"; exit 1; }\n-warning() { echo \"WARNING: $*\"; }\... |
vercel/next.js | 87,212 | [ci] Stop running explicit build when creating release | Follow-up to https://github.com/vercel/next.js/pull/87178. I thought Lerna was invoking the `release` script but we're actually explicitly invoking it in a top-level `version` script.
Also removes the `pnpm build` step from the Job which I meant to include in the original PR.
## test plan
- [x] release with th... | adf019651312bb776ec7f6bde5a1324c9ccd421c | 0812317fb99908e8ad84e2d775544600e376d066 | 26 | medium | [
{
"filename": ".github/workflows/trigger_release.yml",
"patch": "@@ -104,8 +104,6 @@ jobs:\n \n - run: pnpm install\n \n- - run: pnpm run build\n-\n - run: node ./scripts/start-release.js --release-type ${{ github.event.inputs.releaseType || 'canary' }} --semver-type ${{ github.event.inputs... |
facebook/react | 32,711 | [ci] Add artifact attestation to build |
Adds a signed build provenance attestations via https://github.com/actions/attest-build-provenance
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32711).
* #32729
* #32728
* __->__ #32711 | ab693a926f13cc2c4c4a3ab19d5405471f87236b | 07276b8682059cd310cedf574c7f3ecddce68f5c | 19 | medium | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -426,6 +426,10 @@ jobs:\n process_artifacts_combined:\n name: Process artifacts combined\n needs: [build_and_lint, runtime_node_modules_cache]\n+ permissions:\n+ # https://github.com/actions/attest-build-provenance\... |
ollama/ollama | 7,724 | Update README.md | Add [Alfred Ollama](https://github.com/zeitlings/alfred-ollama) to Extensions & Plugins.
- Manage local models
- Perform local inference | a14f76491d694b2f5a0dec6473514b7f93beeea0 | 6cdf27d154e7df12d6b39cc059364a37f78679a2 | 4 | medium | [
{
"filename": "README.md",
"patch": "@@ -467,6 +467,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [QodeAssist](https://github.com/Palm1r/QodeAssist) (AI-powered coding assistant plugin for Qt Creator)\n - [Obsidian Quiz Generator plugin](https://github.com/ECuiDev/obsidian-quiz-gene... |
huggingface/transformers | 42,714 | Fix failing `owlv2` image processor integration test | # What does this PR do?
Fixes [failing Owlv2ImageProcessingTest](https://github.com/huggingface/transformers/actions/runs/19983883282/job/57315088143#step:14:2390)
<img width="1320" height="115" alt="image" src="https://github.com/user-attachments/assets/8317e26b-1a60-48d9-af18-c5d61961925f" />
## Before submi... | null | ec37fc88097423e2950d7ad74fe9e652ab001ca9 | null | low | [
{
"filename": "tests/models/owlv2/test_image_processing_owlv2.py",
"patch": "@@ -151,7 +151,9 @@ def test_image_processor_integration_test_resize(self):\n with torch.no_grad():\n outputs = model(**inputs)\n \n- results = processor.post_process_object_detection(outputs,... |
vuejs/vue | 6,084 | remove references to gitter; use chat.vuejs.org for discourse | <!--
Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
-->
<!-- PULL REQUEST TEMPLATE -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
**What kind of change does this PR introduce?** (check at least one)
- [ ] Bugf... | null | 754e041b919540f7a9dce6a75aee4e83f9a7d918 | null | low | [
{
"filename": "README.md",
"patch": "@@ -6,8 +6,7 @@\n <a href=\"https://www.npmjs.com/package/vue\"><img src=\"https://img.shields.io/npm/dm/vue.svg\" alt=\"Downloads\"></a>\n <a href=\"https://www.npmjs.com/package/vue\"><img src=\"https://img.shields.io/npm/v/vue.svg\" alt=\"Version\"></a>\n <a hre... |
electron/electron | 48,882 | feat: add bypassCustomProtocolHandlers option to net.request | Backport of #47331
See that PR for details.
Notes: Add bypassCustomProtocolHandlers option to net.request
| null | b5f19ce974588a9f76a614d546631f1e8a2e5043 | null | low | [
{
"filename": "docs/api/client-request.md",
"patch": "@@ -25,6 +25,11 @@ following properties:\n with which the request is associated. Defaults to the empty string. The\n `session` option supersedes `partition`. Thus if a `session` is explicitly\n specified, `partition` is ignored.\n+ * `bypass... |
ggml-org/llama.cpp | 19,595 | mtmd : chat : Fix extra \n between text and media marker | Thanks to @tugot17 for detecting and reporting the issue.
For vision models (e.g. LFM2.5-VL-1.6B and Qwen/Qwen3-VL-4B-Instruct) `llama-mtmd-cli` produces identical output to HF implementation.
However `llama-server` doesn't. I traced it down to extra newline inserted after `<__media__>`.
This happens in `to_js... | null | c5897995a726dc9ebdafd91d4cd552b95f4ac199 | null | low | [
{
"filename": "common/chat.cpp",
"patch": "@@ -65,14 +65,25 @@ json common_chat_msg::to_json_oaicompat(bool concat_typed_text) const {\n } else if (!content_parts.empty()) {\n if (concat_typed_text) {\n std::string text;\n+ bool last_was_media_marker = false;\n+ ... |
nodejs/node | 60,811 | doc: add additional codemods for deprecation | ## Description
Adding new codemod clocked by userland migrations team. This time we can merge without waiting for other codemod to be released we had lack of reviewer so it's need to wait. | 93c25815eeb23bf18f64dfd517c1462766e1b3da | bed8e2aa7480fa612599cb66b5741a01276d868e | 19 | medium | [
{
"filename": "doc/api/buffer.md",
"patch": "@@ -5189,6 +5189,12 @@ For code running using Node.js APIs, converting between base64-encoded strings\n and binary data should be performed using `Buffer.from(str, 'base64')` and\n `buf.toString('base64')`.**\n \n+An automated migration is available ([source](htt... |
facebook/react | 32,727 | [ci] Make maintainer check always remote |
To prevent local modification of the MAINTAINERS file we now always fetch from `main` instead.
| ab693a926f13cc2c4c4a3ab19d5405471f87236b | ea5f065745b777cb41cc9e54a3b29ed8c727a574 | 18 | medium | [
{
"filename": ".github/workflows/shared_check_maintainer.yml",
"patch": "@@ -6,10 +6,6 @@ on:\n actor:\n required: true\n type: string\n- is_remote:\n- required: false\n- type: boolean\n- default: false\n outputs:\n is_core_team:\n value: ${{... |
vercel/next.js | 87,145 | Reflect runtime type of `resHeaders` in static types | `resHeaders` could be `undefined` at runtime. All usages accounted for that but the TS types claimed it was non-nullable.
It's now nullable and I adjusted usages to be exact. | null | f754a00c1ec00c95e531474aa25e1c1070dc3df0 | null | low | [
{
"filename": "packages/next/src/server/lib/router-server.ts",
"patch": "@@ -414,7 +414,7 @@ export async function initialize(opts: {\n req.url = removePathPrefix(origUrl, config.assetPrefix)\n }\n \n- if (resHeaders) {\n+ if (resHeaders !== null) {\n for (const key... |
vuejs/vue | 6,022 | fix: the first LF following pre and textarea tag should be ignored, fix #5992 | <!--
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... | e4da249ab8ef32a0b8156c840c9d2b9773090f8a | 4d680794a5a345078827a3fee3db8658bd35ec3a | 18 | medium | [
{
"filename": "src/compiler/parser/html-parser.js",
"patch": "@@ -59,6 +59,10 @@ const decodingMap = {\n const encodedAttr = /&(?:lt|gt|quot|amp);/g\n const encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10);/g\n \n+// #5992\n+const isIgnoreNewlineTag = makeMap('pre,textarea', true)\n+const shouldIgnoreFirs... |
vercel/next.js | 87,209 | [ci] Stop using restore-keys for package manager stores | Package manager stores are append-only. If you cache them with restore keys based on prefixes, you can cause indefinite growth if packages are added more frequent than the cache eviction policy.
Brings the pnpm store down from 695MB to 665MB ([after](https://github.com/vercel/next.js/actions/runs/20245085503/job/581... | 0812317fb99908e8ad84e2d775544600e376d066 | ec20150b7fea0543dbd0650ad16ea120704329c2 | 3 | medium | [
{
"filename": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -108,10 +108,8 @@ jobs:\n id: cache-pnpm-store\n with:\n path: ${{ steps.get-store-path.outputs.STORE_PATH }}\n- key: pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}\n- restore-keys: |\n- ... |
ollama/ollama | 7,727 | win: add right click menu support | Enable both left and right click on the pop-up menu
Reference: https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-trackpopupmenu
Fixes #7704 | null | 35096a7eff0bc19e50def69f75138b55244d31c5 | null | low | [
{
"filename": "app/tray/wintray/tray.go",
"patch": "@@ -361,7 +361,7 @@ func (t *winTray) showMenu() error {\n \n \tboolRet, _, err = pTrackPopupMenu.Call(\n \t\tuintptr(t.menus[0]),\n-\t\tTPM_BOTTOMALIGN|TPM_LEFTALIGN,\n+\t\tTPM_BOTTOMALIGN|TPM_LEFTALIGN|TPM_RIGHTBUTTON,\n \t\tuintptr(p.X),\n \t\tuintptr(p... |
facebook/react | 32,725 | [ci] fix notify/label actions for forks | Need this to run against target for forks to get the notification.
This job does not checkout the code in the PR, so it's safe to run from the target.
Also fixes failing checks on PRs:
<img width="870" alt="Screenshot 2025-03-24 at 3 28 30 PM" src="https://github.com/user-attachments/assets/add78287-6449-4e48-... | 156f0eca20d37f1f5aa2e0f518489f23684c89de | 2d40460cf768071d3a70b4cdc16075d23ca1ff25 | 13 | medium | [
{
"filename": ".github/workflows/compiler_discord_notify.yml",
"patch": "@@ -1,7 +1,7 @@\n name: (Compiler) Discord Notify\n \n on:\n- pull_request:\n+ pull_request_target:\n types: [opened, ready_for_review]\n paths:\n - compiler/**",
"additions": 1,
"deletions": 1
},
{
"fil... |
vercel/next.js | 87,187 | [ci] Downgrade Lerna to 4.0.0 | This reverts commit https://github.com/vercel/next.js/commit/88c02582a2c59589a795c7029e626f5883b275d7.
Fixes
> lerna ERR! ENOVERSION A version field is required in module-cost's package.json file
-- https://github.com/vercel/next.js/actions/runs/20229575667/job/58069058454#step:14:63
5.x is not compatible wit... | 88c02582a2c59589a795c7029e626f5883b275d7 | 7c7db139ec2c65522f716c2f570549ffb9fc4ea2 | 1 | medium | [
{
"filename": "bench/fuzzponent/package.json",
"patch": "@@ -1,6 +1,5 @@\n {\n \"name\": \"fuzzponent\",\n- \"version\": \"0.0.1\",\n \"bin\": {\n \"fuzzponent\": \"./bin/fuzzponent.js\"\n },",
"additions": 0,
"deletions": 1
},
{
"filename": "bench/next-minimal-server/package.json... |
electron/electron | 48,881 | feat: add bypassCustomProtocolHandlers option to net.request | Backport of #47331
See that PR for details.
Notes: Add bypassCustomProtocolHandlers option to net.request
| null | c550d938c41175eb6605c5a12d70b0debc60e362 | null | low | [
{
"filename": "docs/api/client-request.md",
"patch": "@@ -25,6 +25,11 @@ following properties:\n with which the request is associated. Defaults to the empty string. The\n `session` option supersedes `partition`. Thus if a `session` is explicitly\n specified, `partition` is ignored.\n+ * `bypass... |
vuejs/vue | 5,973 | improve Vue.set/Vue.delete API to support multi type of array index | To complement PR #5889 that fixed issue #5884 .
<!--
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... | 00a3085628e78176fe02a3c5eb58bb0199c6ca91 | eea0920f14d0ea63d1b94c648eeb36ac7dfb4b05 | 12 | medium | [
{
"filename": "src/core/observer/index.js",
"patch": "@@ -6,6 +6,7 @@ import {\n def,\n isObject,\n isPlainObject,\n+ isValidArrayIndex,\n hasProto,\n hasOwn,\n warn,\n@@ -189,7 +190,7 @@ export function defineReactive (\n * already exist.\n */\n export function set (target: Array<any> | Obje... |
huggingface/transformers | 42,811 | fix backward pass test in tensor parallel for Dense model | null | 5f548ed9601463acac4ac1f4819577b3991c9c4b | null | low | [
{
"filename": "tests/tensor_parallel/test_tensor_parallel.py",
"patch": "@@ -26,7 +26,7 @@\n from safetensors import safe_open\n \n from transformers import AutoModelForCausalLM, AutoTokenizer, is_torch_available\n-from transformers.integrations.tensor_parallel import get_packed_weights, get_tensor_shard, r... | |
vercel/next.js | 87,188 | [ci] Bump Lerna to latest | The intermediate Lerna releases are not compatible with how we want to release. Some packages in our pnpm workspace are public but their version not handled by Lerna. That's incompatible with v5 and v6.
1. https://github.com/lerna/lerna/releases/tag/v5.0.0
1. https://github.com/lerna/lerna/releases/tag/v6.0.0
1. h... | 7c7db139ec2c65522f716c2f570549ffb9fc4ea2 | adf019651312bb776ec7f6bde5a1324c9ccd421c | 1 | medium | [
{
"filename": "lerna.json",
"patch": "@@ -1,6 +1,5 @@\n {\n \"npmClient\": \"pnpm\",\n- \"useWorkspaces\": true,\n \"packages\": [\n \"packages/*\"\n ],",
"additions": 0,
"deletions": 1
},
{
"filename": "package.json",
"patch": "@@ -230,7 +230,7 @@\n \"kleur\": \"^4.1.0\",... |
nodejs/node | 60,274 | test_runner: fix line feed escaping in JUnit | Fixes #59593 (a part related to the XML `failure:message` attribute value)
## Cause
In `escapeAttribute` line feed characters were simply removed, so multi-line messages were distorted in the report, like:
```text
The value must be 01 !== 0
```
However, the original message is:
```text
The value must ... | null | d255fc7baee0d7fd014627e00d095adb81dcd23b | null | low | [
{
"filename": "lib/internal/test_runner/reporter/junit.js",
"patch": "@@ -19,11 +19,11 @@ const inspectOptions = { __proto__: null, colors: false, breakLength: Infinity }\n const HOSTNAME = hostname();\n \n function escapeAttribute(s = '') {\n- return escapeContent(RegExpPrototypeSymbolReplace(/\"/g, RegEx... |
ggml-org/llama.cpp | 19,692 | model-conversion : add option to print tensor values | This commit updates the tensor-info.py script to support the option to print the first N values of a tensor when displaying its information.
The motivation for this is that it can be useful to inspect some actual values in addition to the shapes of the tensors.
----
Example usage:
```console
./scripts/utils/te... | null | 2b089c77580d347767f440205103e4da8ec33d89 | null | low | [
{
"filename": "examples/model-conversion/scripts/utils/tensor-info.py",
"patch": "@@ -78,7 +78,7 @@ def list_all_tensors(model_path: Path, unique: bool = False):\n print(tensor_name)\n \n \n-def print_tensor_info(model_path: Path, tensor_name: str):\n+def print_tensor_info(model_path: Path, tens... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.