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
nodejs/node
60,980
tools: update nixpkgs-unstable to a672be65651c80d3f592a89b3945466584a
This is an automated update of nixpkgs-unstable to a672be65651c80d3f592a89b3945466584a.
null
bd426739dcc17ecfef833d81638cf76b4357b0ba
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 = \"59b6c96beacc898566c9be1052ae806f3835f87d\";\n+ rev = \"a672be65651c80d3f592a89b3945466584a22069\";\n nixpkgs = import (builtins.fetchTarball {\n url = \"${repo}/ar...
facebook/react
32,997
[forgive] Emit AutoDepsDecoration event when inferring effect deps
Emits a new event for decorating inferred effect dependencies. Co-authored-by: Jordan Brown <jmbrown@meta.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32997). * #33002 * #33001 * #33000 * #32...
b8bedc267f79db375f3147db4d766e09de599b68
cd7d236682ff3ba4996a5e1568f148bd6ac91862
16
medium
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts", "patch": "@@ -182,7 +182,8 @@ export type LoggerEvent =\n | CompileDiagnosticEvent\n | CompileSkipEvent\n | PipelineErrorEvent\n- | TimingEvent;\n+ | TimingEvent\n+ | AutoDepsDecorations;\n \n export type Compi...
ggml-org/llama.cpp
19,944
server: add missing #pragma once to server-context.h
**Summary** This PR adds a `#pragma once` guard to `server-context.h`. **Reasoning** The header currently lacks an include guard. While it may not cause issues in standard build configurations, it leads to `redefinition` errors in scenarios where the header is included multiple times within the same translation un...
2e7e6385230ede73135191e83c81cc9f138c2d65
3e6ab244ad32a2fa9c36372dc741079fa4c0c8e8
5
medium
[ { "filename": "tools/server/server-context.h", "patch": "@@ -1,3 +1,5 @@\n+#pragma once\n+\n #include \"server-http.h\"\n #include \"server-task.h\"\n #include \"server-queue.h\"", "additions": 2, "deletions": 0 } ]
electron/electron
49,045
fix: only call popup closecallback for top-level menu
Backport of #49017 See that PR for details. Notes: Fixed an issue where the close callback param for `menu.popup` would fire when any arbitrary submenu of the given menu closed, and not the menu itself.
null
c2c1d40294d5e092e3138adf93e00d536dd949f4
null
low
[ { "filename": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -563,16 +563,22 @@ - (void)menuWillOpen:(NSMenu*)menu {\n }\n \n - (void)menuDidClose:(NSMenu*)menu {\n- if (isMenuOpen_) {\n- isMenuOpen_ = NO;\n- if (model_)\n- model_->MenuWillClose();\n- // Post async task so...
vuejs/vue
7,024
fix(weex): donot rethrow the captured error on weex platform
**What kind of change does this PR introduce?** - [x] Bugfix **Does this PR introduce a breaking change?** - [x] No **Other information:** If the `Vue.config.errorHandler` is not specified, captured errors will be rethrown on the Weex platform. Add more reliable env check in the `logError` could fix it. ...
null
c2b1cfe9ccd08835f2d99f6ce60f67b4de55187f
null
low
[ { "filename": "src/core/util/env.js", "patch": "@@ -1,16 +1,19 @@\n /* @flow */\n+declare var WXEnvironment: any;\n \n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n \n // Browser environment sniffing\n export const inBrowser = typeof window !== 'undefined'\n+export const inWeex = ty...
ggml-org/llama.cpp
19,873
Mirroring /v1/responses to /responses
This one-line PR enables /responses route to match other routes such as /chat/completions. I noticed that some agents drop /v1/ prefix when making API calls. Most OAI API routes have bindings without /v1/ prefix but responses were missing.
2e7e6385230ede73135191e83c81cc9f138c2d65
5596a35791806ec0222b7e0d5ecb80b48b24585a
4
medium
[ { "filename": "tools/server/server.cpp", "patch": "@@ -178,6 +178,7 @@ int main(int argc, char ** argv) {\n ctx_http.post(\"/v1/chat/completions\", ex_wrapper(routes.post_chat_completions));\n ctx_http.post(\"/api/chat\", ex_wrapper(routes.post_chat_completions)); // ollama specific endpo...
vercel/next.js
88,118
Turbopack: flatten trace when it reaches cut off depth
### What? Previously when the trace depth reaches 150 it ignored the spans and therefore lost time. This fixes it by flattening spans instead of dropping them. This keeps the time, but still restricts the depth. Also limits depth to 80 instead of 150 which is more reasonable.
null
b5c662b30ba76e264fabf9411d6c8a5c47f0e032
null
low
[ { "filename": "turbopack/crates/turbopack-trace-server/src/store.rs", "patch": "@@ -16,7 +16,11 @@ use crate::{\n \n pub type SpanId = NonZeroUsize;\n \n-const CUT_OFF_DEPTH: u32 = 150;\n+/// This max depth is used to avoid deep recursion in the span tree,\n+/// which can lead to stack overflows and perform...
nodejs/node
60,979
tools: do not run `test-linux` workflow for changes on `vcbuild.bat`
It's a Windows-only file <!-- 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 ...
a00453561748427e0e2c85dece46fd1a6751f578
b973b86c328a6f09a1057bc9467ab6b5094525f4
15
medium
[ { "filename": ".github/workflows/test-linux.yml", "patch": "@@ -5,6 +5,7 @@ on:\n paths-ignore:\n - .mailmap\n - README.md\n+ - vcbuild.bat\n - test/internet/**\n - '**.nix'\n - .github/**\n@@ -19,6 +20,7 @@ on:\n paths-ignore:\n - .mailmap\n - README.m...
vuejs/vue
7,026
Give link for Vue examples under 'Documentation'
Give link for vue examples <!-- 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?** (che...
bdcc05a0d40eaef0e0f76b9d975a04fe0e97f5e0
0496115c55b4539d1901ce409a457f8b9fbc20ce
16
medium
[ { "filename": "README.md", "patch": "@@ -197,7 +197,7 @@ Vue.js supports all browsers that are [ES5-compliant](http://kangax.github.io/co\n \n ## Documentation\n \n-To check out live examples and docs, visit [vuejs.org](https://vuejs.org).\n+To check out [live examples](https://vuejs.org/v2/examples/) and d...
huggingface/transformers
42,866
Remove ipex/ccl in CPU training doc
This PR: 1. Remove ipex/ccl in CPU training doc 2. Fix bf16 check: CPU does not need torch_xla if use bf16.
null
f404f150aab0403359c85b59ea9a8c792f0cba4c
null
low
[ { "filename": "docs/source/en/perf_train_cpu_many.md", "patch": "@@ -19,48 +19,21 @@ CPUs are commonly available and can be a cost-effective training option when GPU\n \n This guide demonstrates how to perform distributed training with multiple CPUs using a [DistributedDataParallel (DDP)](./perf_train_gpu_m...
electron/electron
49,090
fix: crash when attempting to resolve modules during process exit
#### Description of Change Refs https://github.com/microsoft/vscode/issues/256031 <details> <summary>_Analysis based on crash dumps_</summary> Only listing the interesting threads below ``` Crashed Thread: 12 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, ...
54a617caab3871ccffbc5e3a9bd2a86381fa5ebb
4adfc212b31d09df83416d8a8b9bfef30e002862
23
medium
[ { "filename": "patches/node/api_remove_deprecated_getisolate.patch", "patch": "@@ -586,10 +586,10 @@ index 57e068ae249d618c2658638f9f3b03e1fedb6524..8c51ae4e0a435971c6d0288af8781087\n data_.Reset();\n return ret;\n diff --git a/src/node_modules.cc b/src/node_modules.cc\n-index eea4ba313d8dbcf7b88b79f5...
ollama/ollama
8,189
remove tutorials.md which pointed to removed tutorials
null
d8bab8ea4403d3fb05a9bf408e638195b72bebf9
null
low
[ { "filename": "docs/tutorials.md", "patch": "@@ -1,9 +0,0 @@\n-# Tutorials\n-\n-Here is a list of ways you can use Ollama with other tools to build interesting applications.\n-\n-- [Using LangChain with Ollama in JavaScript](./tutorials/langchainjs.md)\n-- [Using LangChain with Ollama in Python](./tutorials...
facebook/react
32,996
[forgive] Log inferEffectDependencies
This was missed earlier. Co-authored-by: Jordan Brown <jmbrown@meta.com> --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32996). * #33002 * #33001 * #33000 * #32999 * #32998 * #32997 * __->__ #32996
null
71d0896a4a1b31e14baeb7e427fc4724dbe972ff
null
low
[ { "filename": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -392,6 +392,11 @@ function runWithEnvironment(\n \n if (env.config.inferEffectDependencies) {\n inferEffectDependencies(hir);\n+ log({\n+ kind: 'hir',\n+ name: 'InferEffectDependencies',...
ggml-org/llama.cpp
19,950
gguf-py : bump version to 0.18.0
This commit updates the gguf-py package version to 0.18.0 in preparation for a new release to PyPI. Refs: https://github.com/ggml-org/llama.cpp/discussions/19948
null
8387ffb28d3467b81bc73727588c3fde772f8ebe
null
low
[ { "filename": "gguf-py/pyproject.toml", "patch": "@@ -1,6 +1,6 @@\n [tool.poetry]\n name = \"gguf\"\n-version = \"0.17.1\"\n+version = \"0.18.0\"\n description = \"Read and write ML models in GGUF for GGML\"\n authors = [\"GGML <ggml@ggml.ai>\"]\n packages = [", "additions": 1, "deletions": 1 } ]
electron/electron
49,104
fix: crash when attempting to resolve modules during process exit
Backport of #49090 See that PR for details. Notes: fix crash when attempting to resolve modules during process exit
d9446924dcdd0451f924ea620f968cedc1bdea41
8b6d9e1fa6e60e42aa6aa1c373e6a5ee3180a4f3
13
medium
[ { "filename": "patches/node/api_remove_deprecated_getisolate.patch", "patch": "@@ -586,10 +586,10 @@ index 57e068ae249d618c2658638f9f3b03e1fedb6524..8c51ae4e0a435971c6d0288af8781087\n data_.Reset();\n return ret;\n diff --git a/src/node_modules.cc b/src/node_modules.cc\n-index eea4ba313d8dbcf7b88b79f5...
nodejs/node
60,642
test: update WPT for urlpattern to aed1f3d244
This is an automated update of the WPT for urlpattern to https://github.com/web-platform-tests/wpt/commit/aed1f3d244c589317f0b6bcb84867f11bfd9353c.
null
e172be269890702bf2ad06252f2f152e7604d76c
null
low
[ { "filename": "test/fixtures/wpt/README.md", "patch": "@@ -29,7 +29,7 @@ Last update:\n - resources: https://github.com/web-platform-tests/wpt/tree/1d2c5fb36a/resources\n - streams: https://github.com/web-platform-tests/wpt/tree/bc9dcbbf1a/streams\n - url: https://github.com/web-platform-tests/wpt/tree/9504...
huggingface/transformers
42,924
fix Dtensor and tensor mismatch for Col/RowRep
same issue as https://github.com/huggingface/transformers/pull/42906
b1a2fba1c47e14390f17998218addf20c329e010
99be81e77cb8aebfc52671611df3144bd2f03dc4
15
medium
[ { "filename": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -767,6 +767,15 @@ def __init__(self, **kwargs):\n super().__init__(use_dtensor=False, **kwargs)\n \n \n+class ColwiseParallelReplicate(ColwiseParallel):\n+ \"\"\"\n+ Colwise parallel with output layouts replicated.\...
electron/electron
49,097
ci: use clang problem matcher with nan spec runner
Backport of #49096 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 -->
6dedaa94d161f1a032c0e393b071ca33426c2072
d56771e038e5f311916fda649917cfd3464ea059
6
medium
[ { "filename": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -138,10 +138,16 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n+ - name: Add Clang problem matcher\n+ shell: bash\n+ run: echo \"::...
vuejs/vue
7,002
fix(types): expose VueConstructor (fix #6999)
<!-- 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
267ada04e8dd66f5c159dd6ba1b9f88fbbe78676
null
low
[ { "filename": "types/index.d.ts", "patch": "@@ -3,7 +3,8 @@ import { Vue } from \"./vue\";\n export default Vue;\n \n export {\n- CreateElement\n+ CreateElement,\n+ VueConstructor\n } from \"./vue\";\n \n export {", "additions": 2, "deletions": 1 } ]
vercel/next.js
74,818
Handle pnpm-workspace.yaml while searching for monorepo root
## What? In order for Next.js to know where the root of the project (i.e. monorepo) is we have a heuristic for searching for the root by looking upwards from the application's directory trying to find the package manager lockfiles. This works really well and in practice you rarely have to provide the root directory. I...
null
d9fa95ce752df03ac7e34d9e7c66bab1dff09f2c
null
low
[ { "filename": "packages/next/src/lib/find-root.ts", "patch": "@@ -2,7 +2,21 @@ import { dirname } from 'path'\n import findUp from 'next/dist/compiled/find-up'\n import * as Log from '../build/output/log'\n \n-export function findRootLockFile(cwd: string) {\n+function findWorkRoot(cwd: string) {\n+ // Find...
ollama/ollama
8,172
Updated the version of golang/crypto package to handle CVE-2024-45337
Fixed the CVE-2024-45337 severity on wiz scan for the docker image, changing the version of golang.org/x/crypto to the latest version should fix the issue. This issue is a hinderance that prevents the base image form being used in any real production scenario.
a37f4a86a7f772c327077a3cf3245a405be31cd0
9ab62eb96f32d892720265e502796590d6a5dd72
25
medium
[ { "filename": "go.mod", "patch": "@@ -12,7 +12,7 @@ require (\n \tgithub.com/spf13/cobra v1.7.0\n \tgithub.com/stretchr/testify v1.9.0\n \tgithub.com/x448/float16 v0.8.4\n-\tgolang.org/x/sync v0.9.0\n+\tgolang.org/x/sync v0.10.0\n )\n \n require (\n@@ -68,12 +68,12 @@ require (\n \tgithub.com/twitchyliquid6...
vuejs/vue
6,939
[README.me update] Creative Tim missing from the sponsors list
<!-- 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...
350f5788d39741d690d49aea91c084f2db764992
bdcc05a0d40eaef0e0f76b9d975a04fe0e97f5e0
3
high
[ { "filename": "README.md", "patch": "@@ -143,8 +143,7 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n <a href=\"https://opencollective.com/vuejs/tiers/goldsponsors/1/website\" target=\"_blank\"><img src=\"https://opencollective.com/vuejs/tiers/goldsponsors/1/avatar.svg\"...
facebook/react
32,953
[Flight] Don't hang forever when prerendering a rejected promise
Rendering a rejected promise as the root model is already supported in `renderToReadableStream`. In this case, a stream is returned early, and reading the stream will start flowing, so that enqueued chunks are flushed. When prerendering, flowing is only started when `onAllReady` is called. This was previously only d...
null
914319ae595010cd5d3f0e277c77eb86da18e4f0
null
low
[ { "filename": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMEdge-test.js", "patch": "@@ -1354,4 +1354,285 @@ describe('ReactFlightDOMEdge', () => {\n expect(error).not.toBe(null);\n expect(error.message).toBe('Connection closed.');\n });\n+\n+ // @gate experimental\n+ it('should...
ggml-org/llama.cpp
19,738
ggml-cpu: add repack for mxfp4
This is just a faithful copy of the `iq4_nl` quant to mxfp4 with just the scale loading changed. Tested on AVX2 only, would appreciate tests on ARM and AVX512. Perplexity is already high for gpt-oss-20b but I see it is the same between master and this branch | Model | Test | t/s master | t/s mx...
null
d903f30e25f3024c37d1eedd4b46ed0f5b13ff88
null
low
[ { "filename": "ggml/src/ggml-cpu/arch-fallback.h", "patch": "@@ -48,6 +48,8 @@\n #define ggml_gemv_q6_K_8x8_q8_K_generic ggml_gemv_q6_K_8x8_q8_K\n #define ggml_gemv_iq4_nl_4x4_q8_0_generic ggml_gemv_iq4_nl_4x4_q8_0\n #define ggml_gemv_iq4_nl_8x8_q8_0_generic ggml_gemv_iq4_nl_8x8_q8_0\n+#define ggml_gemv_mxf...
electron/electron
49,098
ci: use clang problem matcher with nan spec runner
Backport of #49096 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 -->
ef8fad7d8ee01c0b238fbf6626e6d10ca526c543
5b7e37c8dc853b192ab3f040ac17380ca1789ad8
15
medium
[ { "filename": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -138,10 +138,16 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n+ - name: Add Clang problem matcher\n+ shell: bash\n+ run: echo \"::...
vuejs/vue
6,992
minor tweak on conditions order
<!-- 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] Code...
f2e00f756fb540fb09ce3414289c652ce172d85c
e80104eb63ae44e159061a3753aa0356ac8b82eb
8
medium
[ { "filename": "src/compiler/parser/index.js", "patch": "@@ -559,8 +559,8 @@ function processAttrs (el) {\n // #6887 firefox doesn't update muted state if set via attribute\n // even immediately after element creation\n if (!el.component &&\n- platformMustUseProp(el.tag, el.attrsMa...
ollama/ollama
8,078
llama: update grammar test to expose lack of insertion order for JSON schema to grammar conversion
This test is updated with a more complex JSON schema to expose the lack of maintaining insertion order generated from `json-schema-to-grammar` Documents behavior in: #7978
18f6a98bd6c46e2e6c6595a0d309c8d708616928
290cf2040af072812b4b29e61aee773310917f62
16
medium
[ { "filename": "llama/grammar/grammar_test.go", "patch": "@@ -0,0 +1,107 @@\n+package grammar\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes\"\n+\t\"strings\"\n+\t\"testing\"\n+\n+\t\"github.com/ollama/ollama/llama\"\n+)\n+\n+// https://github.com/ollama/ollama/issues/7978\n+const issue7978JSONSchema = `{\n+ \"typ...
huggingface/transformers
42,897
Fix cuda index
# What does this PR do? This PR fixes this issue https://github.com/huggingface/transformers/issues/42851. As we moved to multi-threaded loading by default, if the users passes `device_map="cuda"`, it will always load the model on cuda:0 as in threaded mode all the default devices reset to 0.
null
05c7e4a487819f7f93f9b8125b63f4f5b826a365
null
low
[ { "filename": "src/transformers/integrations/accelerate.py", "patch": "@@ -182,6 +182,10 @@ def check_and_set_device_map(device_map: \"torch.device | int | str | dict | None\n device_map = {\"\": device_map}\n elif isinstance(device_map, str) and device_map not in [\"auto\", \"balanced\", \"bala...
vercel/next.js
88,219
Add more debug logs to `'use cache'` wrapper
The cache handlers are generally responsible for adding debug logs to their methods, see `packages/next/src/server/lib/cache-handlers/default.ts` for reference. However, the `'use cache'` wrapper in `packages/next/src/server/use-cache/use-cache-wrapper.ts` also adds a few debug logs of its own that pertain to logic t...
null
6805af48baf1128e6b2a9e8f1752ee5982f02c60
null
low
[ { "filename": "packages/next/src/server/use-cache/use-cache-wrapper.ts", "patch": "@@ -1256,6 +1256,20 @@ export async function cache(\n // generating static pages for such data. It's better to leave\n // a dynamic hole that can be filled in during the resume with\n ...
electron/electron
49,100
ci: use clang problem matcher with nan spec runner
Backport of #49096 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 -->
4cc7821d01b4852c7d16ac64bb6688f701a33dc5
ecb6b6c1c171b0bbadc9d4962f1b225f2719aaa3
10
medium
[ { "filename": ".github/workflows/pipeline-segment-node-nan-test.yml", "patch": "@@ -138,10 +138,16 @@ jobs:\n unzip -:o dist.zip\n - name: Setup Linux for Headless Testing\n run: sh -e /etc/init.d/xvfb start\n+ - name: Add Clang problem matcher\n+ shell: bash\n+ run: echo \"::...
nodejs/node
60,376
esm: improve error messages for ambiguous module syntax
Fixes: #60322 Improve ERR_AMBIGUOUS_MODULE_SYNTAX error messages to show the actual undefined global instead of always mentioning require().
null
37d9cfcd3ae5d1857838937d3403d16d227c05ba
null
low
[ { "filename": "lib/internal/modules/esm/module_job.js", "patch": "@@ -2,9 +2,9 @@\n \n const {\n Array,\n+ ArrayPrototypeFind,\n ArrayPrototypeJoin,\n ArrayPrototypePush,\n- ArrayPrototypeSome,\n FunctionPrototype,\n ObjectSetPrototypeOf,\n PromisePrototypeThen,\n@@ -65,8 +65,8 @@ const CJSGlo...
ollama/ollama
8,131
scripts: sign renamed macOS binary
8f805dd74b28661b900bdbc55137684a31ca443a
a72f2dce45f19ab724954aea1840ec6ee8f0b628
6
medium
[ { "filename": "scripts/build_darwin.sh", "patch": "@@ -15,28 +15,36 @@ export CGO_CXXFLAGS=-mmacosx-version-min=11.3\n export CGO_LDFLAGS=-mmacosx-version-min=11.3\n \n rm -rf llama/build dist/darwin-*\n+\n+# Generate the universal ollama binary for stand-alone usage: metal + avx\n+echo \"Building binary\"\...
electron/electron
49,094
fix: ensure `menu-did-close` is emitted for application menus
Backport of #49075 See that PR for details. Notes: Fixed an issue where `menu-did-close` was not emitted properly for some application menus.
4bd6182e8328a668f78ab25d4d2029c3e0ba50e8
269a5393c09f7ab8c9ad28d09ef4402c54f4a931
4
medium
[ { "filename": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -155,7 +155,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ ...
vuejs/vue
6,819
fix(typing): relax $options type for TS2.6+
- [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No If yes, please describe the impact and migration path for existing applications: **The PR fulfills th...
1be48d0a132c80e02bb475e7c779729df5980d4c
9caed00d20f37c750e39db4ec86d278b453f0e5d
17
medium
[ { "filename": "types/vue.d.ts", "patch": "@@ -22,7 +22,7 @@ export interface CreateElement {\n \n export interface Vue {\n readonly $el: HTMLElement;\n- readonly $options: ComponentOptions<this>;\n+ readonly $options: ComponentOptions<Vue>;\n readonly $parent: Vue;\n readonly $root: Vue;\n readonl...
vercel/next.js
87,317
Turbopack: improve aggregation update performance
### What? When expanding the followers of a list of followers, we often have duplicates. This adds deduplication and a count for the followers of followers and makes these updates way more efficient.
1d09f42590ef47dfde7061f3a01621654f2a14df
bf30cd547a7c9c9260b15bb23d096a1c303b5f31
2
medium
[ { "filename": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -46,6 +46,7 @@ const MAX_COUNT_BEFORE_YIELD: usize = 1000;\n const MAX_UPPERS_FOLLOWER_PRODUCT: usize = 31;\n \n type TaskIdVec = SmallVec<[TaskId; 4]>;\n+type TaskIdWithCountVec = SmallVec<[(TaskI...
nodejs/node
60,971
module: mark module compile cache as stable
The feature set has been stable without any breaking changes in the past year, and it's been depended enough in the wild by popular packages that we'll likely need to treat any breakages as semver-major in the future anyway. The future TODOs are likely all non-breaking. Potential subtle breakages in implementation deta...
e284d037ce0b53a5dea2ee8bd16bcc2c92e16638
1fbe842d6402d58b1f589e5504cfb7ac9952e9b2
2
medium
[ { "filename": "doc/api/cli.md", "patch": "@@ -3403,10 +3403,12 @@ Any other value will result in colorized output being disabled.\n \n <!-- YAML\n added: v22.1.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60971\n+ description: This feature is no longer experimen...
ggml-org/llama.cpp
19,558
[CMake] Enable test-chat out of tree build
The test-chat binary relies on model files that it tries to find. However, when configuring the build directory to be parallel to the source tree those heuristics fail. This sets the working directory for the test executable to be the source-tree which resolves this issue. I validated locally with a build parallel ...
null
a8b192b6ec4fd517fc966ef6fa02c01f8157bbee
null
low
[ { "filename": "tests/CMakeLists.txt", "patch": "@@ -152,7 +152,7 @@ if (NOT WIN32 OR NOT BUILD_SHARED_LIBS)\n llama_build_and_test(test-grammar-parser.cpp)\n llama_build_and_test(test-grammar-integration.cpp)\n llama_build_and_test(test-llama-grammar.cpp)\n- llama_build_and_test(test-chat.cpp...
facebook/react
32,844
Set hidden Offscreen to the shellBoundary regardless of previous state
I think this was probably just copy-paste from the Suspense path. It shouldn't matter what the previous state of an Offscreen boundary was. What matters is that it's now hidden and therefore if it suspends, we can just leave it as is without the tree becoming inconsistent.
null
3fbd6b7b50e3a174883633695586b892249e5635
null
low
[ { "filename": "packages/react-reconciler/src/ReactFiberSuspenseContext.js", "patch": "@@ -11,7 +11,6 @@ import type {SuspenseProps} from 'shared/ReactTypes';\n import type {Fiber} from './ReactInternalTypes';\n import type {StackCursor} from './ReactFiberStack';\n import type {SuspenseState} from './ReactFi...
nodejs/node
60,956
cli: mark --heapsnapshot-near-heap-limit as stable.
This has not changed in the past 5 years and has been passing the tests for 5 years. Mark it as stable. <!-- 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/nod...
728f23c938aac506ba8c5e4ed75ad1beb242b281
e284d037ce0b53a5dea2ee8bd16bcc2c92e16638
1
high
[ { "filename": "doc/api/cli.md", "patch": "@@ -1512,10 +1512,13 @@ Specify the file name of the heap profile generated by `--heap-prof`.\n added:\n - v15.1.0\n - v14.18.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60956\n+ description: The flag is no ...
ollama/ollama
8,092
llama: Ensure KV cache is fully defragmented.
Sometimes the KV cache requires defragmentation even without triggering the threshold heuristic. In this case, decoding will not being able to find a KV cache slot. This is particularly difficult for the caller to handle if it happens in between ubatches. To avoid this, we should immediately trigger a defrag. In add...
7a81daf02696ba1be3450878c48da78dcfcc3826
08a832b4827b7fd5f489d72cef36de24f6fb3d36
10
medium
[ { "filename": "llama/llama.cpp", "patch": "@@ -3051,6 +3051,13 @@ struct llama_kv_cache {\n }\n };\n \n+// block of KV slots to move when defragging\n+struct llama_kv_defrag_move {\n+ uint32_t src;\n+ uint32_t dst;\n+ uint32_t len;\n+};\n+\n struct llama_control_vector {\n std::vector<struc...
electron/electron
49,075
fix: ensure `menu-did-close` is emitted for application menus
#### Description of Change Follow up to https://github.com/electron/electron/pull/49017 Correct logic for event emission: we should emit "menu-did-close" both if it's a popup and the top level menu is closed, _or_ if it's an application menu, and the current menu's supermenu is the top-level menu. #### Checkl...
e4f02faa0a5e67dbae663014255862c22dd2c2ce
555f507c177b03a3e95286e48d4accbc13d82674
11
medium
[ { "filename": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -157,7 +157,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ ...
ollama/ollama
8,139
llm: do not error on "null" format
This fixes another regression in the previous commit that fixed other known bugs.
87f0a49fe6b0db7de0d6fa76e5d2a27963c10ca7
2ddc32d5c5386b28062a46ac6cfea5160cd9f600
2
medium
[ { "filename": "llm/server.go", "patch": "@@ -700,20 +700,24 @@ func (s *llmServer) Completion(ctx context.Context, req CompletionRequest, fn fu\n \t}\n \n \tif len(req.Format) > 0 {\n-\t\tswitch {\n-\t\tcase bytes.Equal(req.Format, []byte(`\"\"`)):\n-\t\t\t// fallthrough\n-\t\tcase bytes.Equal(req.Format, [...
huggingface/transformers
42,318
Fix: Pass local_files_only from pipeline() to model loading
Fixes #42269 Fixes a bug where passing `local_files_only=True` to `pipeline()` was ignored, causing models to download from the Hub even when offline mode was explicitly requested. **The Fix:** The `local_files_only` argument was being extracted from `kwargs` but was missing from the `hub_kwargs` dictionary that...
null
0218f1a577e4b0b74b8d8599a9d904ebe1032f71
null
low
[ { "filename": "src/transformers/integrations/peft.py", "patch": "@@ -84,6 +84,7 @@ def load_adapter(\n low_cpu_mem_usage: bool = False,\n is_trainable: bool = False,\n hotswap: bool | Literal[\"auto\"] = \"auto\",\n+ local_files_only: bool = False,\n adapter_kwargs: di...
electron/electron
49,095
ci: fix import in issue opened workflow
#### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/electron/electron/blob/main/CONTRIBUTING.md --> Fast follow-up to #48246. I wasn't able to test that workflow originally since it need...
1ff8e8014ab4a6e152e357b62665a7f917a6c541
0767b42cb85c64b827cf32ab612bd20437653eec
2
high
[ { "filename": ".github/workflows/issue-opened.yml", "patch": "@@ -56,6 +56,7 @@ jobs:\n const { chdir } = require('node:process');\n chdir('${{ github.workspace }}/.github/workflows');\n \n+ const { ElectronVersions } = require('@electron/fiddle-core');\n const...
ollama/ollama
8,130
llm: do not silently fail for supplied, but invalid formats
Changes in #8002 introduced fixes for bugs with mangling JSON Schemas. It also fixed a bug where the server would silently fail when clients requested invalid formats. It also, unfortunately, introduced a bug where the server would reject requests with an empty format, which should be allowed. The change in #812...
0f06a6daa7c9b71cb0e4e72fe63bc6b0bbbb6e88
87f0a49fe6b0db7de0d6fa76e5d2a27963c10ca7
1
medium
[ { "filename": ".golangci.yaml", "patch": "@@ -8,8 +8,6 @@ linters:\n - containedctx\n - contextcheck\n - errcheck\n- - exportloopref\n- - gci\n - gocheckcompilerdirectives\n - gofmt\n - gofumpt\n@@ -30,8 +28,6 @@ linters:\n - wastedassign\n - whitespace\n linters-settin...
vuejs/vue
6,910
fix(model): correctly set activeindex of select element in a new v-model
https://github.com/vuejs/vue/issues/6903 <!-- 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 int...
null
58a39dfa0e8c4a51959e9a84369dad8fbca0e6ac
null
low
[ { "filename": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -6,6 +6,8 @@\n import { isTextInputType } from 'web/util/element'\n import { looseEqual, looseIndexOf } from 'shared/util'\n import { warn, isAndroid, isIE9, isIE, isEdge } from 'core/util/index'\n+import { mergeVNodeHook } from 'co...
electron/electron
49,092
fix: ensure `menu-did-close` is emitted for application menus
Backport of #49075 See that PR for details. Notes: Fixed an issue where `menu-did-close` was not emitted properly for some application menus.
23ef7bc7033d6e3893a13ba7b76bfc947962c870
d2ae9ed69facc847c2ad72e34c46eb333a75ea3c
7
medium
[ { "filename": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -157,7 +157,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ ...
vercel/next.js
88,215
Add test creation instructions to agents.md
## Enhance test documentation with best practices and non-interactive test generation ### What? Expanded the AGENTS.md documentation with detailed guidance on writing tests, including: - Added non-interactive test generation instructions for AI agents - Documented best practices for writing tests with code examples - ...
null
f59cf2e4199272de4bb31aff6420a984dadb63b9
null
low
[ { "filename": "AGENTS.md", "patch": "@@ -110,7 +110,68 @@ pnpm test-dev-turbo test/development/\n \n - `pnpm test-unit` - Run unit tests only (fast, no browser)\n - `pnpm testonly <path>` - Run tests without rebuilding (faster iteration)\n-- `pnpm new-test` - Generate a new test file from template\n+- `pnpm...
ggml-org/llama.cpp
19,923
ggml-zendnn : update code for latest ZenDNN API
This PR updates the ZenDNN backend so it still builds and runs with the newest ZenDNN The CMake file now uses the latest ZenDNN commit tag (ZenDNN-2026-WW08) It also lets you link either the shared or the static ZenDNN lib based on BUILD_SHARED_LIBS cc: @amukho @avinashcpandey
null
88cf781f51ee0c35fcbe973d3eaad0cb932d65c3
null
low
[ { "filename": "docs/backend/ZenDNN.md", "patch": "@@ -22,7 +22,7 @@\n \n **Llama.cpp + ZenDNN**\n \n-The llama.cpp ZenDNN backend leverages AMD's optimized matrix multiplication primitives to accelerate inference on AMD CPUs. It utilizes ZenDNN's **LowOHA (Low Overhead Hardware Accelerated)** MatMul operato...
facebook/react
32,990
Build `react-server-dom-webpack` for codesandbox
This allows us to test Flight changes in a codesandbox. [Example](https://codesandbox.io/p/devbox/zkjk7y)
null
620c838fb64c87c92691ff0fe83b320a7f50f617
null
low
[ { "filename": ".codesandbox/ci.json", "patch": "@@ -1,10 +1,11 @@\n {\n- \"packages\": [\"packages/react\", \"packages/react-dom\", \"packages/scheduler\"],\n+ \"packages\": [\"packages/react\", \"packages/react-dom\", \"packages/react-server-dom-webpack\", \"packages/scheduler\"],\n \"buildCommand\": \...
nodejs/node
60,957
v8: mark v8.queryObjects() as stable
This has been used in the tests for leak testing stably for over a year. The API is modeled after the Chrome DevTools console API is unlikely to have breaking changes. It's time to mark it as stable. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/bl...
null
caa0cbf94fa27b9f4a69ca222f0a0d19562d2d1b
null
low
[ { "filename": "doc/api/v8.md", "patch": "@@ -367,10 +367,13 @@ for more information about the properties of the object.\n added:\n - v22.0.0\n - v20.13.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60957\n+ description: This API is no longer experimen...
ollama/ollama
8,127
llm: loosen format check to default to no format
9039c821a2c572e8bd0ee5cde13e4cb55c332e35
0f06a6daa7c9b71cb0e4e72fe63bc6b0bbbb6e88
13
medium
[ { "filename": "llm/server.go", "patch": "@@ -722,20 +722,14 @@ func (s *llmServer) Completion(ctx context.Context, req CompletionRequest, fn fu\n \t\treturn fmt.Errorf(\"unexpected server status: %s\", status.ToString())\n \t}\n \n-\tif len(req.Format) > 0 {\n-\t\tswitch {\n-\t\tcase bytes.Equal(req.Format,...
vuejs/vue
6,949
fix #6945: properly $off array of events
<!-- 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...
c3553196b8b15a71f982bd5e04c61be52e87c828
c24f3e4208cd045832002ee9916559f6fe0dc2b5
8
medium
[ { "filename": "src/core/instance/events.js", "patch": "@@ -92,7 +92,7 @@ export function eventsMixin (Vue: Class<Component>) {\n if (!cbs) {\n return vm\n }\n- if (arguments.length === 1) {\n+ if (!fn) {\n vm._events[event] = null\n return vm\n }", "additions": 1, ...
electron/electron
49,093
fix: ensure `menu-did-close` is emitted for application menus
Backport of #49075 See that PR for details. Notes: Fixed an issue where `menu-did-close` was not emitted properly for some application menus.
c2c1d40294d5e092e3138adf93e00d536dd949f4
85913a38da333fe3276d7e407b4884fc19f7b2fe
8
medium
[ { "filename": "shell/browser/api/electron_api_menu_mac.mm", "patch": "@@ -155,7 +155,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ ...
facebook/react
32,981
[compiler] Only append hash and date for experimental releases
No need to append these for non experimental/beta releases.
efd890422db30a426bf395866ac3ec90573bbfd0
721350964952457e0b9286867c42135df0c5e787
2
high
[ { "filename": "compiler/scripts/release/publish.js", "patch": "@@ -139,10 +139,13 @@ async function main() {\n files: {exclude: ['.DS_Store']},\n });\n const truncatedHash = hash.slice(0, 7);\n- const newVersion =\n+ let newVersion =\n argv.tagVersion == null || argv.tagVersion ===...
huggingface/transformers
42,854
Qwen2/3 MoE + GGUF model support (restored)
# What does this PR do? This commit restores Qwen2/3 MoE + GGUF support in Transformers v5. In this version, handling of MoE tensors are significantly changed so that support for all MoE + GGUF models ... (okay, actually) Qwen2/3 MoE models in Transformers v4 is now broken in v5. This commit now adopts new ten...
null
c67ec2c4c14477faf7b258eba532d2673ddad4a7
null
low
[ { "filename": "src/transformers/modeling_gguf_pytorch_utils.py", "patch": "@@ -63,6 +63,24 @@ class TensorProcessor:\n def __init__(self, config=None):\n self.config = config or {}\n \n+ def preprocess_name(self, hf_name: str) -> str:\n+ \"\"\"\n+ Preprocesses the tensor name to...
facebook/react
32,980
[ci] Change to string type
to no one's surprise, the `number` type appears to be cursed in GH actions for workflow dispatch. switch to string
efd890422db30a426bf395866ac3ec90573bbfd0
4c54da77fb57787ae85c521e04c861404a37eba2
1
medium
[ { "filename": ".github/workflows/compiler_prereleases.yml", "patch": "@@ -18,7 +18,7 @@ on:\n type: string\n tag_version:\n required: false\n- type: number\n+ type: string\n secrets:\n NPM_TOKEN:\n required: true", "additions": 1, "deletions": 1 ...
facebook/react
32,979
[compiler] Fix version name in publish script
Add ability to specify an optional tagVersion which is appended to the version name + tag, eg 19.1.0-rc.1 --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32979). * __->__ #32979 * #32978
ce578f9c59be73e6e32c633e6d251e8ec6dcad84
efd890422db30a426bf395866ac3ec90573bbfd0
4
medium
[ { "filename": ".github/workflows/compiler_prereleases.yml", "patch": "@@ -16,6 +16,9 @@ on:\n version_name:\n required: true\n type: string\n+ tag_version:\n+ required: false\n+ type: number\n secrets:\n NPM_TOKEN:\n required: true\n@@ -55,4 +58,4 @...
huggingface/transformers
42,912
[`Auto`] Make processor subclasses overridable on load time
As per title, discovered in #39585 (went through a few versions until we found this :p)
dd24a80666b72c85f02c6cf9df18164cc174ab74
79432f7a4c1a4dd39ebdc3622dfe2dd45eac2589
6
medium
[ { "filename": "src/transformers/models/auto/feature_extraction_auto.py", "patch": "@@ -348,13 +348,13 @@ def from_pretrained(cls, pretrained_model_name_or_path, **kwargs):\n )\n _ = kwargs.pop(\"code_revision\", None)\n feature_extractor_class.register_for_auto_class()\n-...
electron/electron
49,088
ci: don't build yarn modules for linux arm
Backport of #49031 See that PR for details. Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
b2e73d28e2d4883a5fcb54ec1cd65a9bf51e6ef4
a327629ca2e68805fda5d70a0173266dea7c5199
9
medium
[ { "filename": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ...
ggml-org/llama.cpp
19,925
ggml : fix AMX and add batched support
llama-perplexity -hf ggml-org/Qwen3-0.6B-GGUF:Q4_0 -f wikitext-2-raw/wiki.test.raw -c 2048 -b 2048 --chunks 2 before this commit: ``` perplexity: calculating perplexity over 2 chunks, n_ctx=2048, batch_size=2048, n_seq=1 perplexity: 2.31 seconds per pass - ETA 0.07 minutes [1]17.3868,[2]22.2199, Final estimat...
null
4e76d24f282e0fa591f1eb87ae6fd9174c6ed998
null
low
[ { "filename": "ggml/src/ggml-cpu/amx/amx.cpp", "patch": "@@ -141,27 +141,50 @@ static size_t ggml_backend_amx_buffer_type_get_alignment(ggml_backend_buffer_typ\n namespace ggml::cpu::amx {\n class extra_buffer_type : ggml::cpu::extra_buffer_type {\n bool supports_op(ggml_backend_dev_t, const struct ggml...
vercel/next.js
88,195
Turbopack: report changed env vars in tracing
### What? Add a list of changed defined env vars to the trace file
null
117c33b2eab8626960dcd20fffe7e3b4098d99e6
null
low
[ { "filename": "crates/next-api/src/project.rs", "patch": "@@ -25,8 +25,9 @@ use next_core::{\n segment_config::ParseSegmentMode,\n util::{NextRuntime, OptionEnvMap},\n };\n+use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n-use tracing::Instrument;\n+use tracing::{Instrument, field:...
nodejs/node
60,954
doc: mark --build-snapshot and --build-snapshot-config as stable
While the support for serialization of built-in modules is likely to be open-ended, the CLI flags themselves have been very stable. Mark them as stable and update the documentation about the support status of built-in module serialization. <!-- Before submitting a pull request, please read: - the CONTRIBUTING gu...
null
728f23c938aac506ba8c5e4ed75ad1beb242b281
null
low
[ { "filename": "doc/api/cli.md", "patch": "@@ -403,10 +403,13 @@ Error: Access to this API has been restricted\n \n <!-- YAML\n added: v18.8.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60954\n+ description: The snapshot building process is no longer expe...
electron/electron
49,086
ci: don't build yarn modules for linux arm
Backport of #49031 See that PR for details. Notes: <!-- Please add a one-line description for app developers to read in the release notes, or 'none' if no notes relevant to app developers. Examples and help on special cases: https://github.com/electron/clerk/blob/main/README.md#examples -->none
8dbc6c14e57e275fe6f8ea6bafa72a76ff6a7bef
7eb6ff95e4b587b1937ba648a3fd9a1225b4e16d
7
medium
[ { "filename": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ...
ollama/ollama
8,125
darwin: restore multiple runners for x86
In 0.5.2 we simplified packaging to have avx only for macos x86. It looks like there may still be some non-AVX systems out there, so this puts back the prior logic of building no-AVX for the primary binary, and now 2 runners for avx and avx2. These will be packaged in the App bundle only, so the stand-alone binary wil...
4879a234c4bd3f2bbc99d9b09c44bd99fc337679
8f805dd74b28661b900bdbc55137684a31ca443a
26
medium
[ { "filename": "Makefile", "patch": "@@ -8,11 +8,9 @@ include make/cuda-v12-defs.make\n include make/rocm-defs.make\n \n ifeq ($(CUSTOM_CPU_FLAGS),)\n-ifneq ($(OS),darwin)\n ifeq ($(ARCH),amd64)\n \tRUNNER_TARGETS=cpu\n endif\n-endif\n # Without CUSTOM_CPU_FLAGS we default to build both v11 and v12 if presen...
vuejs/vue
6,927
fix(weex): stop trim css units in richtext component
**What kind of change does this PR introduce?** - [x] Bugfix **Does this PR introduce a breaking change?** - [x] No **The PR fulfills these requirements:** - [x] It's submitted to the `dev` branch for v2.x (or to a previous version branch), _not_ the `master` branch - [x] All tests are passing: https://...
null
8a784d8d2333f0a05569f6c11c5a0fb0ab3a164e
null
low
[ { "filename": "src/platforms/weex/runtime/components/richtext.js", "patch": "@@ -1,55 +1,44 @@\n-function getVNodeType (vnode) {\n+/* @flow */\n+\n+function getVNodeType (vnode: VNode): string {\n if (!vnode.tag) {\n return ''\n }\n return vnode.tag.replace(/vue\\-component\\-(\\d+\\-)?/, '')\n }\...
ollama/ollama
8,115
readme: example/get started guide for pgai with Ollama
readme: example/get started guide for pgai with Ollama
297ada6c872d8408818158a9ddc001fa11820b59
89d5e2f2fd17e03fd7cd5cb2d8f7f27b82e453d7
1
high
[ { "filename": "README.md", "patch": "@@ -408,6 +408,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n ### Database\n \n - [PostgreSQL extension pgai](https://github.com/timescale/pgai) (Create and search embeddings from Ollama models using pgvector)\n+ - [Get started guide](https://gith...
ggml-org/llama.cpp
19,921
vulkan: fix fp16 Flash Attention on Windows AMD RDNA2 and below
For some reason a f16vec4 subgroupShuffleXor is broken on RDNA2 and lower. I found a workaround by shuffling vec4 instead. This also fixes fp16 Flash Attention on AMD GCN, so I removed the fp32 fallback. Fixes #19881 and also the issue reported here: https://github.com/ggml-org/llama.cpp/pull/19625#issuecomment-3940...
3769fe6eb70b0a0fbb30b80917f1caae68c902f7
723c71064da0908c19683f8c344715fbf6d986fd
12
medium
[ { "filename": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -624,8 +624,6 @@ struct vk_device_struct {\n // floor(log2(maxComputeWorkGroupInvocations))\n uint32_t max_workgroup_size_log2 {};\n \n- bool flash_attention_fp16;\n-\n bool coopmat_support;\n bool coopmat_acc_f32_support ...
huggingface/transformers
42,903
[`Tokenizers`] Change treatment of special tokens
Related to #39585 where we try to make some previously made special tokens to non-special tokens
null
ade62c2a0f4e8fbe2df9f00c733b6c04f112c135
null
low
[ { "filename": "src/transformers/tokenization_utils_base.py", "patch": "@@ -2152,9 +2152,10 @@ def save_pretrained(\n # Add tokenizer class to the tokenizer config to be able to reload it with from_pretrained\n tokenizer_class = self.__class__.__name__\n \n- # tokenizers backend don't ...
facebook/react
32,978
[eprh] Bump stable version
ERROR: type should be string, got "\nhttps://www.npmjs.com/package/eslint-plugin-react-hooks/v/6.0.0 was just released, so we can bump this now.\n---\n[//]: # (BEGIN SAPLING FOOTER)\nStack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32978).\n* #32979\n* __->__ #32978"
null
b303610c33ab903f6f0d9d1c6297b704781b3678
null
low
[ { "filename": "ReactVersions.js", "patch": "@@ -33,7 +33,7 @@ const canaryChannelLabel = 'canary';\n const rcNumber = 0;\n \n const stablePackages = {\n- 'eslint-plugin-react-hooks': '6.0.0',\n+ 'eslint-plugin-react-hooks': '6.1.0',\n 'jest-react': '0.17.0',\n react: ReactVersion,\n 'react-art': Rea...
vuejs/vue
6,958
Fix sponsors from open collective
Also added Silver and Bronze sponsors. Fixes https://github.com/opencollective/opencollective/issues/579
d1d8b58ab6a0b0698a86aff716c0fd94b7cdd654
e9c8e12397f1e89382f91b1557cc7f7d4139e651
1
high
[ { "filename": "README.md", "patch": "@@ -16,7 +16,7 @@\n Vue.js is an MIT-licensed open source project. It's an independent project with its ongoing development made possible entirely thanks to the support by these awesome [backers](https://github.com/vuejs/vue/blob/dev/BACKERS.md). If you'd like to join th...
vercel/next.js
88,221
Only log `pending revalidates...` debug log if applicable
When [verbose cache logging](https://nextjs.org/docs/app/guides/incremental-static-regeneration#verifying-correct-production-behavior) is enabled, we were always adding a debug log as follows after rendering a page (during prerendering or at request time): ``` pending revalidates promise finished for: { auth: nu...
45dba91908a77e442b2e05389aeacf6ed95ceb0f
bda89d1d3aeb714acaec30977045550ab7ffaf26
17
medium
[ { "filename": "packages/next/src/server/app-render/action-handler.ts", "patch": "@@ -1086,18 +1086,23 @@ export async function handleAction({\n \n // For form actions, we need to continue rendering the page.\n if (isFetchAction) {\n+ // If we skip page rendering, we need to ensure p...
nodejs/node
60,929
test: improve config-file permission test coverage
Refs: https://github.com/nodejs/node/pull/60746#pullrequestreview-3470430664
null
cbe02339b6c93b68b28bc380882ef7ed8add98b8
null
low
[ { "filename": "test/fixtures/permission/config-fs-read-only.json", "patch": "@@ -0,0 +1,7 @@\n+{\n+ \"permission\": {\n+ \"allow-fs-read\": [\n+ \"*\"\n+ ]\n+ }\n+}\n\\ No newline at end of file", "additions": 7, "deletions": 0 }, { "filename": "test/parallel/t...
vercel/next.js
88,238
fix(next/image): bump sharp@0.34.5
Release notes: https://github.com/lovell/sharp/releases/tag/v0.34.5 - Upgrade to libvips v8.17.3 for upstream bug fixes. - Add experimental support for prebuilt Linux RISC-V 64-bit binaries. - Support building from source with npm v12+ - Add support for BigTIFF output. - Improve error messaging when only warning...
789d0810a29d644d066bbc183d34d13bc104e2fe
3b5a210f3df0e48b6893a415a3e5076e033c6d53
10
medium
[ { "filename": "packages/next/package.json", "patch": "@@ -127,7 +127,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.4\"\n+ \"sharp\": \"^0.34.5\"\n },\n \"devDependencies\": {\n \"@babel/code-frame\": \"7.26.2\",", "additions": 1, "deletions": 1 }, { ...
ollama/ollama
8,028
readme + examples: add pgai to readme projects and add example for semantic search
Hey there, adding a mention of pgai to the community integrations section in the Readme as well as a small demo script for the example folder. Let me know if you'd like to change anything!
7622ea21af2a283b0f4df2cef33cd9ad69285cba
297ada6c872d8408818158a9ddc001fa11820b59
17
medium
[ { "filename": "README.md", "patch": "@@ -407,6 +407,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n \n ### Database\n \n+- [PostgreSQL extension pgai](https://github.com/timescale/pgai) (Create and search embeddings from Ollama models using pgvector)\n - [MindsDB](https://github.com/min...
electron/electron
49,076
fix: reduce visual artifacts while resizing on Windows
#### Description of Change Refs https://github.com/electron/electron/issues/36280#issuecomment-3560964534 Manual backport of [crrev.com/c/7156576](https://crrev.com/c/7156576). This reduces the amount of visual artifacts that we see while resizing a window on Windows. However, it does not yet fix the visual ar...
null
7deed2b980daf550cf736a022dd93038468733b4
null
low
[ { "filename": "patches/chromium/.patches", "patch": "@@ -143,3 +143,4 @@ allow_electron_to_depend_on_components_os_crypt_sync.patch\n expose_referrerscriptinfo_hostdefinedoptionsindex.patch\n chore_disable_protocol_handler_dcheck.patch\n fix_release_mouse_buttons_on_focus_loss_on_wayland.patch\n+viz_fix_vis...
vercel/next.js
88,186
feat(turbo-tasks-fs): support multi denied_paths
Support multi denied_paths in `DiskFileSystem`, it's useful to reduce redundant task invalidation.
053c67065e0b33c72341315721b3be82e4e53365
64c08f42a732268b279ab41440018a9ea04bfe85
2
medium
[ { "filename": "crates/next-api/src/project.rs", "patch": "@@ -166,8 +166,8 @@ pub struct ProjectOptions {\n /// E.g. `/home/user/projects/my-repo`.\n pub root_path: RcStr,\n \n- /// A path which contains the app/pages directories, relative to [`Project::root_path`], always\n- /// Unix path. E....
vuejs/vue
5,143
fix #5121: parse content in textarea as plaintext
Fix #5121
e12d96a1325ae4ed3e5520c1de68f5cd774e5515
8fca83d6b6e5b74a507c0b631ed5c09a36131ab1
18
medium
[ { "filename": "src/compiler/parser/html-parser.js", "patch": "@@ -46,7 +46,7 @@ let IS_REGEX_CAPTURING_BROKEN = false\n })\n \n // Special Elements (can contain anything)\n-const isScriptOrStyle = makeMap('script,style', true)\n+const isPlainTextElement = makeMap('script,style,textarea', true)\n const reCac...
ggml-org/llama.cpp
19,930
mtmd : fix padding of n_tokens
fix #19929 `GGML_PAD` works only for powers of 2.
null
37964f44f9fab37571b27cccd9f45d4a066e0817
null
low
[ { "filename": "tools/mtmd/mtmd-helper.cpp", "patch": "@@ -248,7 +248,7 @@ int32_t mtmd_helper_decode_image_chunk(\n \n int32_t n_tokens = mtmd_input_chunk_get_n_tokens(chunk);\n int32_t i_batch = 0;\n- int32_t n_img_batches = GGML_PAD(n_tokens, n_batch) / n_batch;\n+ int32_t n_img_batches = (n...
ollama/ollama
8,102
ci: be more aggressive on parallelism in build
This might help speed up release builds. The old algorithm was trying not to overwhelm systems with hyperthreading.
36d111e788bdd90ab3e0b69033095efb68963052
b75ccfc5ece7d411e3c589a012499cefe3c2529a
7
medium
[ { "filename": "Dockerfile", "patch": "@@ -69,7 +69,7 @@ ARG OLLAMA_FAST_BUILD\n ARG VERSION\n RUN --mount=type=cache,target=/root/.ccache \\\n if grep \"^flags\" /proc/cpuinfo|grep avx>/dev/null; then \\\n- make -j $(expr $(nproc) / 2 ) dist ; \\\n+ make -j $(nproc) dist ; \\\n else \\...
facebook/react
32,977
[ci] Remove compiler weekly release
No longer needed.
null
fea92d846284bb7f4427ccbe8c16aaf85f0e2943
null
low
[ { "filename": ".github/workflows/compiler_prereleases_weekly.yml", "patch": "@@ -1,23 +0,0 @@\n-name: (Compiler) Publish Prereleases Weekly\n-\n-on:\n- schedule:\n- # At 10 minutes past 9:00 on Mon\n- - cron: 10 9 * * 1\n-\n-permissions: {}\n-\n-env:\n- TZ: /usr/share/zoneinfo/America/Los_Angeles\n-...
huggingface/transformers
42,784
Preprocessing fixes and more tests for LFM2-VL
Fixes: * no image tokens for small images when `use_thumbnail` set to False * repeated text part of the prompt for multi-image and multi-turn input Adds several missing tests to catch bugs like above earlier.
null
558666f26f3615d3a51f3cfb0ac0a5fe5fcc24e0
null
low
[ { "filename": "src/transformers/models/lfm2_vl/processing_lfm2_vl.py", "patch": "@@ -165,63 +165,103 @@ def expand_text_with_placeholders(\n image_sizes: list[list[int]],\n use_image_special_tokens: bool,\n **images_kwargs,\n- ):\n- prompt_strings = []\n+ ) -> list[str]:...
ollama/ollama
8,091
runner: switch logging back to stderr
This puts the low-level runner logging back on stderr for consistency with prior releases
9039c821a2c572e8bd0ee5cde13e4cb55c332e35
60f75560a2a950e14aabe88c0a7b1223f31277ad
6
medium
[ { "filename": "llama/llama.go", "patch": "@@ -89,6 +89,7 @@ import (\n \t_ \"embed\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"os\"\n \t\"runtime\"\n \t\"runtime/cgo\"\n \t\"slices\"\n@@ -131,7 +132,7 @@ func llamaLog(level int32, text *C.char, _ unsafe.Pointer) {\n \t\treturn\n \t}\n \n-\tfmt.Print(C.GoString(text)...
ggml-org/llama.cpp
19,924
server : fix ctx checkpoint restore logic
cont #19849 fix #19901 Prevent `n_past` from exceeding the available tokens in the checkpoint.
f20469d91948975e001c286836f714c1819c968f
01cd448b8c3ebf30724675cc3d1e6cee74e8bdc4
13
medium
[ { "filename": "tools/server/server-context.cpp", "patch": "@@ -2363,7 +2363,7 @@ struct server_context_impl {\n //printf(\"[DEBUG] `do_reset` was set to `true` after failing to restore a checkpoint\");\n } else {\n ...
nodejs/node
60,911
tools: add some options and comments to `shell.nix`
Triggered by https://github.com/nodejs/node/pull/60902 and https://github.com/nodejs/node/pull/60906 - adding `withAmaro`, `withSQLite`, and `withSSL` parameters (to be consistent with the `withTemporal` one that was recently added, and analogeous to `--without-amaro`, `--without-sqlite`, and `--without-ssl` `config...
null
af00e02e35927f2fd7490d5869b478f7544bd255
null
low
[ { "filename": "shell.nix", "patch": "@@ -1,54 +1,64 @@\n {\n pkgs ? import ./tools/nix/pkgs.nix { },\n- loadJSBuiltinsDynamically ? true, # Load `lib/**.js` from disk instead of embedding\n- withTemporal ? false,\n- ncu-path ? null, # Provide this if you want to use a local version of NCU\n- icu ? pkg...
ollama/ollama
6,784
openai: support include_usage stream option to return final usage chunk
Fixes #5200 Reads `stream_options` parameter in chat or completion requests and when `include_usage` is true, adds a `null` usage field to all chunks with choices and before completing, returns a final chunk with no choices and the usage. Being able to both return no `usage` field and a `null` `usage` field requi...
9039c821a2c572e8bd0ee5cde13e4cb55c332e35
e28f2d4900548e00f4188c254bde9816fa623337
5
medium
[ { "filename": "docs/openai.md", "patch": "@@ -233,6 +233,8 @@ curl http://localhost:11434/v1/embeddings \\\n - [x] `seed`\n - [x] `stop`\n - [x] `stream`\n+- [x] `stream_options`\n+ - [x] `include_usage`\n - [x] `temperature`\n - [x] `top_p`\n - [x] `max_tokens`\n@@ -261,6 +263,8 @@ curl http://localhost:1...
vercel/next.js
88,207
Upgrade to swc 54
Somewhat surprisingly, no breaking API changes https://github.com/swc-project/swc/compare/v1.15.5...v1.15.8 tracks the changes
9a1d04fb581fc07e18a5c265690ae8acbd16092c
8cf1d1f1fa6fe6110a3b4aa5d275374a3299dd18
22
medium
[ { "filename": "Cargo.lock", "patch": "@@ -600,9 +600,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"48.0.0\"\n+version = \"52.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"d75f0bad14aa119d142f9a5e7e09bae121a57ff6733e05e419f7fb6b58...
electron/electron
49,080
ci: ignore Dependabot workflow failures in audit
#### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/electron/electron/blob/main/CONTRIBUTING.md --> Dependabot has started having a consistent failure related to one package, and keeps t...
null
4786e80f3314ab7e48aca1863db444932292928f
null
low
[ { "filename": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -74,6 +74,7 @@ jobs:\n !message.startsWith(\"Process completed with exit code\") &&\n !message.startsWith(\"Response status code does not indicate success\") &&\n !message.st...
ollama/ollama
8,071
llama: parse JSON schema using nlohmann::ordered_json
PR #8002 has handled the JSON within Go to ensure we could keep the schema as-is, without affecting the order of the properties. However, when parsed within the cpp wrapper, `nlohmann::json` was used instead of relying on `nlohmann::ordered_json`. This PR simply changes the parser for the ordered one in order to mainta...
527cc9789995bf3125bc310bfff19eecbfd6c9a0
c21685052311054fe44ab203bd8e551b515fe535
8
medium
[ { "filename": "llama/sampling_ext.cpp", "patch": "@@ -49,7 +49,7 @@ int schema_to_grammar(const char *json_schema, char *grammar, size_t max_len)\n {\n try\n {\n- nlohmann::json schema = nlohmann::json::parse(json_schema);\n+ nlohmann::ordered_json schema = nlohmann::ordered_json::pars...
huggingface/transformers
42,896
Overwrite `get_decoder()` in AudioLLMs
# What does this PR do? As per title, audio models need to call LM's `get_decoder()` because the model has no `base model`
null
1dc69bd6f7f5dcc1a32467be505dd873d573846e
null
low
[ { "filename": "src/transformers/models/granite_speech/modeling_granite_speech.py", "patch": "@@ -322,6 +322,12 @@ def __init__(self, config: GraniteSpeechConfig):\n \n self.post_init()\n \n+ def set_decoder(self, decoder):\n+ self.language_model.set_decoder(decoder)\n+\n+ def get_decode...
vuejs/vue
5,597
fix #5591: keep ssr template interpolation whitespace-insensitive
Fix #5591 **What kind of change does this PR introduce?** (check at least one) - [x] Bugfix **Does this PR introduce a breaking change?** (check one) - [x] No **The PR fulfills these requirements:** - [x] It's submitted to the `dev` branch for v2.x (or to a previous version branch), _not_ the `master...
016920ebea8bbd3dc7c5326d6bc6590a6f4cc418
9ac4c4188d03fec51337b257a95954f0d3fa30a0
28
medium
[ { "filename": "src/server/template-renderer/parse-template.js", "patch": "@@ -2,7 +2,7 @@\n \n const compile = require('lodash.template')\n const compileOptions = {\n- escape: /{{[^{]([\\s\\S]+?)[^}]}}/g,\n+ escape: /{{([^{][\\s\\S]+?[^}])}}/g,\n interpolate: /{{{([\\s\\S]+?)}}}/g\n }\n ", "addition...
facebook/react
32,952
[compiler] Update publish tags
Adds missing tag.
null
ce578f9c59be73e6e32c633e6d251e8ec6dcad84
null
low
[ { "filename": "compiler/scripts/release/publish.js", "patch": "@@ -62,7 +62,7 @@ async function main() {\n .option('tag', {\n description: 'Tag to publish to npm',\n type: 'choices',\n- choices: ['experimental', 'beta'],\n+ choices: ['experimental', 'beta', 'rc'],\n default: ...
ollama/ollama
8,055
llama: enable JSON schema key ordering for generating grammars
Will do a follow up PR for updates to the command line with format
9039c821a2c572e8bd0ee5cde13e4cb55c332e35
18f6a98bd6c46e2e6c6595a0d309c8d708616928
3
medium
[ { "filename": "llama/grammar_test.go", "patch": "@@ -30,8 +30,6 @@ const issue7978JSONSchema = `{\n }`\n \n func TestIssue7978(t *testing.T) {\n-\tt.Skip(\"schema_to_grammar is broken; skipping until fixed\")\n-\n \tg := SchemaToGrammar([]byte(issue7978JSONSchema))\n \tif g == nil {\n \t\tt.Fatal(\"failed t...
nodejs/node
60,575
src: use CP_UTF8 for wide file names on win32
`src/node_modules.cc` needs to be consistent with `src/node_file.cc` in how it translates the utf8 strings to `std::wstring` otherwise we might end up in situation where we can read the source code of imported package from disk, but fail to recognize that it is an ESM (or CJS) and cause runtime errors. This type of err...
2703db7985fd5b192d0c9b435b7f1633c7dda627
83c05d4304035222968cf00b10d609753b8a3784
4
medium
[ { "filename": "src/compile_cache.cc", "patch": "@@ -232,10 +232,8 @@ static std::string GetRelativePath(std::string_view path,\n // the paths to wide strings before using std::filesystem::path.\n // On other platforms, std::filesystem::path can handle UTF-8 directly.\n #ifdef _WIN32\n- std::filesystem::pat...
vuejs/vue
6,886
fix(types): improve typing for better completion
**What kind of change does this PR introduce?** (check at least one) - [x] Other, please describe: Tweak definition file. Prefer user custom types over Vue builtin types for better completion item order. **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No If yes, please describe...
9caed00d20f37c750e39db4ec86d278b453f0e5d
98ea0a3b48e37719f278c10a8ee5fb94d7d5db4e
5
medium
[ { "filename": "types/vue.d.ts", "patch": "@@ -61,7 +61,7 @@ export interface Vue {\n $createElement: CreateElement;\n }\n \n-export type CombinedVueInstance<Instance extends Vue, Data, Methods, Computed, Props> = Instance & Data & Methods & Computed & Props;\n+export type CombinedVueInstance<Instance exte...
facebook/react
32,937
[mcp] Also emit bailout messages with no loc
Not every bailout will contain a loc (could be synthetic)
95ff37f5f5ee7c756f844aea2947e961e7151ac9
45d942f94a5aa40e9f809b41325c31c799a29216
4
medium
[ { "filename": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -158,7 +158,7 @@ server.tool(\n }\n }\n };\n- const errors: Array<{message: string; loc: SourceLocation}> = [];\n+ const errors: Array<{message: string; loc: SourceLocation | null}> = [];\n const compil...
ggml-org/llama.cpp
19,928
kv-cache : fix can_shift() check to take into account M-RoPE
fix #19915 KV cache shift is not supported with M-RoPE (yet).
null
99bd67c9b29851f758c7d22caa8fc57fd5af3e4f
null
low
[ { "filename": "src/llama-kv-cache.cpp", "patch": "@@ -978,6 +978,9 @@ bool llama_kv_cache::get_can_shift() const {\n if (model.arch == LLM_ARCH_STEP35) {\n return false;\n }\n+ if (hparams.n_pos_per_embd() > 1) {\n+ return false;\n+ }\n return true;\n }\n ", "additions":...
nodejs/node
60,467
doc: add known issue to v24.11.0 release notes
Refs: https://github.com/nodejs/node/pull/60414#issuecomment-3457808776 Refs: https://github.com/nodejs/nodejs.org/pull/8280 <!-- 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 ...
fb3451512b20b2045a27288def45c30e8e1735bc
dec0213c834607e7721ee250d8c46ef9cd112efe
5
medium
[ { "filename": "doc/changelogs/CHANGELOG_V24.md", "patch": "@@ -70,6 +70,15 @@ the end of April 2028.\n Other than updating metadata, such as the `process.release` object, to reflect\n that the release is LTS, no further changes from Node.js 24.10.0 are included.\n \n+### Known issue\n+\n+An issue has been i...
vercel/next.js
88,184
fix: move conductor.json to repo root for proper detection
## What? Moves `conductor.json` from `.conductor/conductor.json` to the repository root and updates script paths accordingly. ## Why? Conductor searches for configuration files in a specific priority order: 1. Workspace root 2. Remote default branch 3. Repository root The previous location at `.conductor/conductor....
null
aa9c71671a15601f11e3842a5473e8a6dacb5c2f
null
low
[ { "filename": "conductor.json", "patch": "@@ -2,8 +2,8 @@\n \"name\": \"next.js\",\n \"description\": \"Next.js framework development workspace\",\n \"scripts\": {\n- \"setup\": \"./scripts/setup.sh\",\n- \"run\": \"./scripts/run.sh\"\n+ \"setup\": \"./.conductor/scripts/setup.sh\",\n+ \"r...
ollama/ollama
8,054
ci: fix linux version
Pass through the version override so the makefiles use it rc3 linux binaries are reporting a version string of `0.5.2-rc3-0-g581a4a5-dirty`
4879a234c4bd3f2bbc99d9b09c44bd99fc337679
36d111e788bdd90ab3e0b69033095efb68963052
15
medium
[ { "filename": "Dockerfile", "patch": "@@ -66,6 +66,7 @@ COPY . .\n ARG OLLAMA_SKIP_CUDA_GENERATE\n ARG OLLAMA_SKIP_ROCM_GENERATE\n ARG OLLAMA_FAST_BUILD\n+ARG VERSION\n RUN --mount=type=cache,target=/root/.ccache \\\n if grep \"^flags\" /proc/cpuinfo|grep avx>/dev/null; then \\\n make -j $(expr ...