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
vuejs/vue
6,932
fix #6931: Clean up target variables to avoid memory leaks
<!-- 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...
4e0c48511d49f331fde31fc87b6ca428330f32d1
c3553196b8b15a71f982bd5e04c61be52e87c828
16
medium
[ { "filename": "src/core/instance/events.js", "patch": "@@ -19,7 +19,7 @@ export function initEvents (vm: Component) {\n }\n }\n \n-let target: Component\n+let target: any\n \n function add (event, fn, once) {\n if (once) {\n@@ -40,6 +40,7 @@ export function updateComponentListeners (\n ) {\n target = ...
ggml-org/llama.cpp
19,897
fix(server): respect `load-on-startup` option in router mode
### Problem When running `llama-server` in router mode with a custom model preset (`.ini` file), the `load-on-startup` option was being ignored. The server attempted to load **all** defined models at startup, regardless of whether `load-on-startup = false` was set for specific models. This caused the server to fail...
47eb12b95325d04af1d938130fdc73ad1902f5a5
efba35a860954e78e72177b0d6b0c88b239d8cb1
15
medium
[ { "filename": "tools/server/server-models.cpp", "patch": "@@ -291,7 +291,9 @@ void server_models::load_models() {\n for (const auto & [name, inst] : mapping) {\n std::string val;\n if (inst.meta.preset.get_option(COMMON_ARG_PRESET_LOAD_ON_STARTUP, val)) {\n- models_to_load.pus...
electron/electron
48,511
fix: `systemPreferences.getAccentColor` inverted color
#### Description of Change Closes https://github.com/electron/electron/issues/48506. Fixes an issue where `systemPreferences.getAccentColor` inverted the color. #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] PR description included and stakeholders cc'...
null
6562d6ed0bdf1cdd99bebe3dde763942d943ea3f
null
low
[ { "filename": "shell/browser/api/electron_api_system_preferences_win.cc", "patch": "@@ -16,6 +16,7 @@\n #include \"base/win/wrapped_window_proc.h\"\n #include \"shell/common/color_util.h\"\n #include \"shell/common/process_util.h\"\n+#include \"skia/ext/skia_utils_win.h\"\n #include \"ui/gfx/win/hwnd_util.h...
ollama/ollama
8,002
llama: preserve field order in user-defined JSON schemas
llama: preserve field order in user-defined JSON schemas Previously we decoded and re-encoded JSON schemas during validation, which served no purpose since json.RawMessage already validates JSON syntax. Worse, the re-encoding lost field ordering from the original schema, which affects inference quality during ste...
527cc9789995bf3125bc310bfff19eecbfd6c9a0
9039c821a2c572e8bd0ee5cde13e4cb55c332e35
4
medium
[ { "filename": "llama/grammar_test.go", "patch": "@@ -0,0 +1,80 @@\n+package llama\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes\"\n+\t\"strings\"\n+\t\"testing\"\n+)\n+\n+// https://github.com/ollama/ollama/issues/7978\n+const issue7978JSONSchema = `{\n+ \"type\": \"object\",\n+ \"properties\": {\n+ \"steps\...
huggingface/transformers
42,822
Rewrite for loop in get_image_features with torch ops for export
# What does this PR do? Make Ministral 3, Llava, etc. torch exportable by rewriting for loop with torch ops. ## Who can review? @molbap @yonigozlan @zucchini-nlp
null
a33ef4f94eb0df76147fa1eff69a39e0f875b8f7
null
low
[ { "filename": "src/transformers/models/llava/modeling_llava.py", "patch": "@@ -202,10 +202,11 @@ def get_image_features(\n image_features = self.multi_modal_projector(selected_image_feature)\n \n if \"image_sizes\" in kwargs:\n- split_sizes = [\n- (height // self.vi...
ollama/ollama
8,052
ci: fix artifact path prefix for missing windows payloads
upload-artifacts strips off leading common paths so when the ./build/ artifacts were removed, the ./dist/windows-amd64 prefix became common and was stripped, making the later download-artifacts place them in the wrong location Example intermediate artifact from before the build changes: ``` % unzip generate-windo...
6a6328a5e941751bd3481442a8136f7d563cfdfd
581a4a55532e2a28177bcaffd722a2bf298f967d
2
high
[ { "filename": ".github/workflows/release.yaml", "patch": "@@ -447,15 +447,19 @@ jobs:\n - uses: actions/download-artifact@v4\n with:\n name: generate-windows-cpu\n+ path: dist/windows-amd64/\n - uses: actions/download-artifact@v4\n with:\n name: gener...
facebook/react
29,199
fix: path handling in react devtools
<!-- 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
3da26163a35969b32b5d7876a3f0c95bea61bc2b
null
low
[ { "filename": "packages/react-devtools-shared/src/__tests__/utils-test.js", "patch": "@@ -26,6 +26,7 @@ import {\n REACT_STRICT_MODE_TYPE as StrictMode,\n } from 'shared/ReactSymbols';\n import {createElement} from 'react';\n+import {symbolicateSource} from '../symbolicateSource';\n \n describe('utils', (...
huggingface/transformers
42,800
Add local kernel loading support to KernelConfig().
# What does this PR do? Add local kernel loading support to transformers.KernelConfig(). Relaed issue: https://github.com/huggingface/transformers/issues/42739 ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [x] Did you read the [c...
4d6516e2565af683f6edad4ae8d13caa6a70bf0b
24275124c69477762e1dd6af2bb05d9513098a7e
1
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -3533,7 +3533,9 @@ def set_use_kernels(self, use_kernels, kernel_config):\n \n # This is a context manager to override the default kernel mapping\n # We are calling kernelize inside this context manager using th...
vuejs/vue
6,833
tweak: The value of this is always undefined
<!-- 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...
8645e5f04aff8b0eacd617bbcf2395615c25d68b
ee0e8b5ce1d64120b2b8d6426d783f6f0a683395
19
medium
[ { "filename": "src/core/util/options.js", "patch": "@@ -89,7 +89,7 @@ export function mergeDataOrFn (\n typeof parentVal === 'function' ? parentVal.call(this) : parentVal\n )\n }\n- } else if (parentVal || childVal) {\n+ } else {\n return function mergedInstanceDataFn () {\n //...
vercel/next.js
87,841
Turbopack: Update to swc_core v50.2.3
Update to swc_core v50.2.3 to address a parse issue with mdx files that should be fixed by swc-project/swc#11372: - Fixes #87713 - Internal discussion: https://vercel.slack.com/archives/C04KC8A53T7/p1766716756273609?thread_ts=1766712717.419489&cid=C04KC8A53T7 I'm intentionally not updating to the latest SWC here...
b7e4c6a0118628ffc6b2a563e07a07cdc8714f73
9a1d04fb581fc07e18a5c265690ae8acbd16092c
20
medium
[ { "filename": "Cargo.lock", "patch": "@@ -600,9 +600,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"47.0.0\"\n+version = \"48.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"2159cdc2d6045a129534d16e842e63bf46ccd53a04e079dbd89e2d6a24...
facebook/react
32,936
[ci] Only label on PR open
No reason to label it every update, only do it once when it's first opened. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32936). * __->__ #32936 * #32935
2ddf8caa9d3abd22f54304bf7650e512efb93f18
4a36d3eab7d9bbbfae62699989aa95e5a0297c16
1
high
[ { "filename": ".github/workflows/shared_label_core_team_prs.yml", "patch": "@@ -2,6 +2,7 @@ name: (Shared) Label Core Team PRs\n \n on:\n pull_request_target:\n+ types: [opened]\n \n permissions: {}\n ", "additions": 1, "deletions": 0 } ]
electron/electron
49,066
fix: `systemPreferences.getAccentColor` inverted color
Backport of #48511. See that PR for details. Notes: Fixed an issue where `systemPreferences.getAccentColor` inverted the color.
3e77a1a359d6316af938ab76b1bcbf94cc15dcbe
822fb2cd4dfcf6bbeeae11667570c837aba6ded8
18
medium
[ { "filename": "shell/browser/api/electron_api_system_preferences_win.cc", "patch": "@@ -16,6 +16,7 @@\n #include \"base/win/wrapped_window_proc.h\"\n #include \"shell/common/color_util.h\"\n #include \"shell/common/process_util.h\"\n+#include \"skia/ext/skia_utils_win.h\"\n #include \"ui/gfx/color_utils.h\"...
nodejs/node
60,834
http2,zlib: prefer `call()` over `apply()` if argument list is not array
Follow-up from https://github.com/nodejs/node/pull/60796 In `http2` and `zlib`, `fn.call(...)` is preferable over `FunctionPrototypeCall(fn, ...)` according to: https://github.com/nodejs/node/blob/8dc2bddbd5d0a3a25147c824d81074ace8e4fb1b/doc/contributing/primordials.md#L7-L13 <details> <summary> Local be...
null
e77694631f1642c302f664703197b5aabc65b482
null
low
[ { "filename": "lib/internal/http2/compat.js", "patch": "@@ -7,7 +7,6 @@ const {\n ObjectHasOwn,\n ObjectKeys,\n Proxy,\n- ReflectApply,\n ReflectGetPrototypeOf,\n Symbol,\n } = primordials;\n@@ -846,7 +845,7 @@ class Http2ServerResponse extends Stream {\n this.writeHead(this[kState].statusC...
huggingface/transformers
42,878
Fix add_dates script: Fetch github repo from url to check if model is new
As the title says, we used to fetch the repo with upstream/main, which doesn't work if the repo is not forked (?). This way should be more robust
9aef5ca4d7d3e1a651c8a06071bda4aac094363c
703da867001c5e2c8322b2c3395e6c4a5ba31022
1
medium
[ { "filename": "docs/source/en/model_doc/paddleocr_vl.md", "patch": "@@ -13,7 +13,7 @@ specific language governing permissions and limitations under the License.\n rendered properly in your Markdown viewer.\n \n -->\n-*This model was released on 2025.10.16 and added to Hugging Face Transformers on 2025.12.10...
facebook/react
32,935
[ci] Fix check_access again
I can see the value being output and set correctly but not sure why it's skipping the 2nd job. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32935). * #32936 * __->__ #32935
68013725ac5671ab06572bd361e168681782a727
2ddf8caa9d3abd22f54304bf7650e512efb93f18
6
medium
[ { "filename": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,15 +13,15 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.is_member_or_collaborator }}\n+ is_member_or_collaborator: ${{ steps.check_i...
vercel/next.js
88,172
Update generateMetadata in client component error
## What? Improves the error shown when `generateMetadata` or `metadata` is exported from a Client Component. Also updated the documentation to further explain why it can only be used in a server component and the steps to follow to resolve the error.
b1ce6042be0c6b2d1da4b31ad7d56192c64c695c
ae17e48bbfb1982b787520c1d260d7a1f7acb0fa
9
medium
[ { "filename": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -334,7 +334,7 @@ fn report_error(app_dir: &Option<PathBuf>, filepath: &str, error_kind: RSCErrorK\n )\n },\n RSCErrorKind::NextRscErrClientMetadataExport((source, span)) => {\n- ...
ggml-org/llama.cpp
19,913
jinja : correct default size for string slices
*Make sure to read the [contributing guidelines](https://github.com/ggml-org/llama.cpp/blob/master/CONTRIBUTING.md) before submitting a PR* As of b8157, when trying to use string slices in a chat template, and the slice does not specify end index (e.g. `content[1 : ]`), no output will be emitted since the default en...
5452d736f80efae2062d60e9392ad9225ac227ba
9b62913b40b94c63db239b770e232bd48534d480
30
medium
[ { "filename": "common/jinja/runtime.cpp", "patch": "@@ -721,6 +721,8 @@ value member_expression::execute_impl(context & ctx) {\n int64_t arr_size = 0;\n if (is_val<value_array>(object)) {\n arr_size = object->as_array().size();\n+ } else if (is_val<value_string>(object)) {...
facebook/react
32,932
[mcp] Iterate on prompt
v2 --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32932). * __->__ #32932 * #32931 * #32930 * #32929 * #32928
3c75bf21dd2fca130635c5b67b5361f4759a7d29
95ff37f5f5ee7c756f844aea2947e961e7151ac9
1
medium
[ { "filename": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -307,19 +307,45 @@ server.tool(\n },\n );\n \n-server.prompt('review-code', {code: z.string()}, ({code}) => ({\n+server.prompt('review-react-code', () => ({\n messages: [\n {\n role: 'assistant',\n content: {\n...
ollama/ollama
8,039
win: builtin arm runner
The new build embeds the arm runner in the main binary, so there is no longer a lib/ollama
null
cf4d7c52c47d753bd04a8791b9c6042271c40c1e
null
low
[ { "filename": "app/ollama.iss", "patch": "@@ -97,7 +97,6 @@ Source: \"..\\dist\\windows-amd64\\lib\\ollama\\*\"; DestDir: \"{app}\\lib\\ollama\\\"; Chec\n Source: \"..\\dist\\windows-arm64\\vc_redist.arm64.exe\"; DestDir: \"{tmp}\"; Check: IsArm64() and vc_redist_needed(); Flags: deleteafterinstall\n Source...
facebook/react
32,931
[mcp] Fix bailout loc
Use the correct loc line numbers and not [Object:object] --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32931). * #32932 * __->__ #32931 * #32930 * #32929 * #32928
3e04b2a214cdc962dd5acde412c7107321ec7a56
3c75bf21dd2fca130635c5b67b5361f4759a7d29
1
high
[ { "filename": "compiler/packages/react-mcp-server/src/index.ts", "patch": "@@ -283,7 +283,7 @@ server.tool(\n if (typeof err.loc !== 'symbol') {\n return {\n type: 'text' as const,\n- text: `React Compiler bailed out: ${err.message}@${err.loc.start}:${err.loc...
electron/electron
49,071
build(deps): bump github/codeql-action from 4.31.3 to 4.31.5
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.3 to 4.31.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p> <blockquote> <h2>v4.31.5</h2> <h1>CodeQL Action Changelog</...
5b5b24775e501fbe8da80978440a503c0ea24f21
2f672420303be1e558fc5140f58aa2ca7240ecfa
12
medium
[ { "filename": ".github/workflows/scorecards.yml", "patch": "@@ -50,6 +50,6 @@ jobs:\n \n # Upload the results to GitHub's code scanning dashboard.\n - name: \"Upload to code-scanning\"\n- uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v3.29.5\n+ ...
facebook/react
32,930
[mcp] Refine passes returned
Adds some new options to request the HIR, ReactiveFunction passes --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32930). * #32932 * #32931 * __->__ #32930 * #32929 * #32928
fc21d5a7db4f714825111e365825804f478e093a
3e04b2a214cdc962dd5acde412c7107321ec7a56
1
medium
[ { "filename": "compiler/packages/react-mcp-server/src/compiler/index.ts", "patch": "@@ -14,6 +14,16 @@ import * as prettier from 'prettier';\n \n export let lastResult: BabelCore.BabelFileResult | null = null;\n \n+export type PrintedCompilerPipelineValue =\n+ | {\n+ kind: 'hir';\n+ name: string;...
vuejs/vue
6,905
fix(keep-alive): higher priority for exclude than include
Here's my problem in some cases : my routes list: redIndex yellowIndex blueIndex indexBottom page1 page2 page3... just want to cache all the index page except indexBottom page , but include & exclude can not work together . i change the match order , so i can write component like this <keepalive include...
null
604230fe953f864be5dc70bd7d34f64ae43e4f7e
null
low
[ { "filename": "src/core/components/keep-alive.js", "patch": "@@ -87,8 +87,8 @@ export default {\n // check pattern\n const name: ?string = getComponentName(componentOptions)\n if (name && (\n- (this.include && !matches(this.include, name)) ||\n- (this.exclude && matches(this....
ggml-org/llama.cpp
19,919
gguf : avoid too many file size calls
cont #19856 fix #19912 No need to do file calls on each read. Instead, determine the remaining bytes once at the start and after that update the value on each read.
a96a1120b45c011ef6ed38bcb3fc455209ea5b9e
1ca3d1de153152645cf890b637c2c6450f1615e3
10
medium
[ { "filename": "ggml/src/gguf.cpp", "patch": "@@ -228,34 +228,61 @@ struct gguf_context {\n };\n \n struct gguf_reader {\n- FILE * file;\n+ gguf_reader(FILE * file) : file(file) {\n+ // read the remaining bytes once and update on each read\n+ nbytes_remain = file_remain(file);\n+ }\n \...
ollama/ollama
7,979
bugfix: "null" value for format
Fixes https://github.com/ollama/ollama/issues/7977
c6c526275d6c8ab2a3b70d5cf0071f9630e626f0
de52b6c2f90ff220ed9469167d51e3f5d7474fa2
4
medium
[ { "filename": "cmd/cmd.go", "patch": "@@ -1036,6 +1036,10 @@ func chat(cmd *cobra.Command, opts runOptions) (*api.Message, error) {\n \t\treturn nil\n \t}\n \n+\tif opts.Format == \"json\" {\n+\t\topts.Format = `\"` + opts.Format + `\"`\n+\t}\n+\n \treq := &api.ChatRequest{\n \t\tModel: opts.Model,\n \t\...
vercel/next.js
88,157
ci: run stats on canary pushes for historical trend tracking
## Summary - Add push trigger for canary branch to `pull_request_stats.yml` - Remove redundant `releaseStats` job from `build_and_deploy.yml` - Rename workflow/jobs from "PR Stats" to "Stats" ## Background The stats system was designed to save historical metrics to KV for trend tracking, but it wasn't working: 1. `...
4cd3ca26d71fc7904ea7030ee8355071efc9502d
43eead2337e38f8dab15b23c1e4ce1d09eeb7d55
18
medium
[ { "filename": ".github/workflows/build_and_deploy.yml", "patch": "@@ -680,37 +680,6 @@ jobs:\n - run: exit 1\n if: ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}\n \n- releaseStats:\n- name: Release Stats\n- runs-on:\n- - 'self-hos...
huggingface/transformers
42,906
fix `Dtensor` and `tensor` mismatch
# Bug `local_rowise` or `local_colwise` is calling `RowiseParallel(use_dtensor=False)` (resp. `ColwiseParallel(use_dtensor=False)`. Issue was first noticed in https://github.com/huggingface/transformers/pull/42356 , quoting > we would like to not have Dtensor logic in the modeling. For example, sinks are suppose...
null
b1a2fba1c47e14390f17998218addf20c329e010
null
low
[ { "filename": "src/transformers/integrations/tensor_parallel.py", "patch": "@@ -758,6 +758,15 @@ def partition_tensor(self, param, empty_param, param_type, param_casting_dtype,\n return nn.Parameter(parameter, requires_grad=parameter.is_floating_point())\n \n \n+class LocalColwiseParallel(ColwisePar...
nodejs/node
60,922
util: assert getCallSites does not invoke Error.prepareStackTrace
Assert that `util.getCallSites` does not invoke `Error.prepareStackTrace`.
null
746c3c2ec2eee4f33adde73c34364ed873cacffd
null
low
[ { "filename": "doc/api/util.md", "patch": "@@ -564,6 +564,9 @@ changes:\n Returns an array of call site objects containing the stack of\n the caller function.\n \n+Unlike accessing an `error.stack`, the result returned from this API is not\n+interfered with `Error.prepareStackTrace`.\n+\n ```mjs\n import { ...
facebook/react
32,928
[mcp] Add inspect script
Uses https://github.com/modelcontextprotocol/inspector to inspect and debug the mcp server. `yarn workspace react-mcp-server dev` will build the server in watch mode and launch the inspector. Default address is http://127.0.0.1:6274. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm....
08075929f2d5eea319418ea379773bb7276ff940
35ab8ffef7b755c899d9e19d61277a4fceb760d1
9
medium
[ { "filename": "compiler/packages/react-mcp-server/package.json", "patch": "@@ -8,6 +8,8 @@\n \"scripts\": {\n \"build\": \"rimraf dist && tsup\",\n \"test\": \"echo 'no tests'\",\n+ \"dev\": \"concurrently --kill-others -n build,inspect \\\"yarn run watch\\\" \\\"wait-on dist/index.js && yarn r...
ollama/ollama
8,037
ci: build dir changed
Remove no longer relevant build log dir The build artifacts are no longer in ./build
4879a234c4bd3f2bbc99d9b09c44bd99fc337679
6a6328a5e941751bd3481442a8136f7d563cfdfd
11
medium
[ { "filename": ".github/workflows/release.yaml", "patch": "@@ -460,7 +460,6 @@ jobs:\n with:\n name: windows-arm64\n path: dist\n- - run: dir build\n - run: |\n import-module 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\Common7\\Tools\\...
facebook/react
32,934
[ci] Fix check_access fr
💀
bf39780a066626ebef67d4b3faf7eb163e35782a
68013725ac5671ab06572bd361e168681782a727
1
medium
[ { "filename": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -13,7 +13,7 @@ jobs:\n check_access:\n runs-on: ubuntu-latest\n outputs:\n- is_member_or_collaborator: ${{ steps.check_access.outputs.result }}\n+ is_member_or_collaborator: ${{ steps.check_access.outputs.is_memb...
electron/electron
49,050
test: remove already disabled nan tests from our disable list
#### 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 --> Per the comment in the code here, these lines should be removable since we're on Node ...
537fd7b10bd5f9045db863ceb997976e20cce1a1
e6844a3640e8c0e9fb720f7272bda912c641bb80
16
medium
[ { "filename": "script/nan-spec-runner.js", "patch": "@@ -133,12 +133,7 @@ async function main () {\n \n const DISABLED_TESTS = new Set([\n 'nannew-test.js',\n- 'buffer-test.js',\n- // These two are incompatible with crrev.com/c/4733273\n- // They are disabled upstream starting in \"Node.js 24...
vercel/next.js
88,158
perf: improve stats thresholds to reduce CI noise
## Summary Add per-metric significance thresholds that account for variance. **Time metrics** (high variance from CI): - Dev boot: <100ms AND <15%, OR <3% - Build times: <500ms AND <5%, OR <2% **Size metrics** (deterministic): - node_modules: <10KB AND <1%, OR <0.01% - Bundle sizes: <2KB AND <1%, OR <0.1% ## Proble...
4cd3ca26d71fc7904ea7030ee8355071efc9502d
be6fcb250e28ba3c40bb12aee45a87541a3eac6f
19
medium
[ { "filename": ".github/actions/next-stats-action/src/add-comment.js", "patch": "@@ -162,6 +162,38 @@ const METRIC_GROUPS = {\n },\n }\n \n+// Per-metric significance thresholds\n+// A change is insignificant if:\n+// - (absoluteDiff < absoluteMin AND percentDiff < percentMin), OR\n+// - percentDiff < ...
facebook/react
32,933
[ci] Fix check_access output
the joy of yml
e71d4205aed6c41b88e3689c76b41da65f5c04c0
bf39780a066626ebef67d4b3faf7eb163e35782a
3
medium
[ { "filename": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n - name: Check access\n id: check_access\n if: ${{ github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'COLLABORATOR' }}\n- r...
facebook/react
32,862
Don't try to hydrate a hidden Offscreen tree
I found a bug even before the Activity hydration stuff. If we're hydrating an Offscreen boundary in its "hidden" state it won't have any content to hydrate so will trigger hydration errors (which are then eaten by the Offscreen boundary itself). Leaving it not prewarmed. This doesn't happen in the simple case bec...
539bbdbd86d9cd342aabde4cb08e398751789103
b04254fdcee30871760301f34236ee0dfadf86ab
1
medium
[ { "filename": "packages/react-dom/src/__tests__/ReactDOMServerPartialHydration-test.internal.js", "patch": "@@ -3723,6 +3723,11 @@ describe('ReactDOMServerPartialHydration', () => {\n <Activity mode=\"hidden\">\n <HiddenChild />\n </Activity>\n+ <Suspense fallback={n...
ggml-org/llama.cpp
19,900
Update README.md
fix typo *Make sure to read the [contributing guidelines](https://github.com/ggml-org/llama.cpp/blob/master/CONTRIBUTING.md) before submitting a PR*
null
bd723005916b7616591256f4fdef0cb47ec1944f
null
low
[ { "filename": "tools/server/README.md", "patch": "@@ -1510,7 +1510,7 @@ version = 1\n ; If the same key is defined in a specific preset, it will override the value in this global section.\n [*]\n c = 8192\n-n-gpu-layer = 8\n+n-gpu-layers = 8\n \n ; If the key corresponds to an existing model on the server,\...
vuejs/vue
6,363
fix(typing): allow variadic plugin use, fix #6357
**What kind of change does this PR introduce?** (check at least one) - [ ] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [x] Other, please describe: typing update **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No **The PR fulfills ...
59dbd4a414394a3ce581f9fbd9554da9af9e4b1d
38d52182bf8915628314e2aea7d2cc41ec39a0d6
28
medium
[ { "filename": "types/test/plugin-test.ts", "patch": "@@ -17,3 +17,4 @@ const installer: PluginFunction<Option> = function(Vue, option) { }\n \n Vue.use(plugin, new Option);\n Vue.use(installer, new Option);\n+Vue.use(installer, new Option, new Option, new Option);", "additions": 1, "deletions": 0 ...
nodejs/node
60,930
tools: bump mdast-util-to-hast from 13.2.0 to 13.2.1 in /tools/doc
Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.2.0 to 13.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/syntax-tree/mdast-util-to-hast/releases">mdast-util-to-hast's releases</a>.</em></p> <blockquote> <h2>13.2.1</h2> <h4>Fix</h4> <...
null
025ade69973cf078978280247c6dad294bf914d7
null
low
[ { "filename": "tools/doc/package-lock.json", "patch": "@@ -706,9 +706,9 @@\n }\n },\n \"node_modules/mdast-util-to-hast\": {\n- \"version\": \"13.2.0\",\n- \"resolved\": \"https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz\",\n- \"integrity\": \"sha512...
vuejs/vue
6,860
build: map vue to local types, simplify build setup
**What kind of change does this PR introduce?** (check at least one) - [ ] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [x] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [ ] Yes - [x] No If yes, please describe the impa...
a433b16588412980b4ab51924de1ef91b5226f56
048e9407795ec7420d4b2962cbd50f769d3432fb
1
medium
[ { "filename": ".circleci/config.yml", "patch": "@@ -16,7 +16,6 @@ jobs:\n - v1-vue-{{ .Branch }}-\n - v1-vue-\n - run: npm install\n- - run: cd packages/vue-server-renderer && npm install vue\n - save_cache:\n key: v1-vue-{{ .Branch }}-{{ checksum \"package...
facebook/react
32,916
Warn if you pass a hidden prop to Activity
Since `hidden` is a prop on arbitrary DOM elements it's a common mistake to think that it would also work that way on `<Activity>` but it doesn't. In fact, we even had this mistakes in our own tests. Maybe there's an argument that we should actually just support it but we also have more modes planned. So this add...
39cad7afc43fcbca1fd2e3a0d5b7706c8b237793
539bbdbd86d9cd342aabde4cb08e398751789103
8
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -873,6 +873,22 @@ function updateActivityComponent(\n renderLanes: Lanes,\n ) {\n const nextProps: ActivityProps = workInProgress.pendingProps;\n+ if (__DEV__) {\n+ const hiddenProp = (nextProps: any).hidden;\n+ if...
huggingface/transformers
42,864
fix: Initialize ApertusMLP's xielu activation using `torch_dtype`
# What does this PR do? I cannot infer this model architecture on Turing. This fixes the issue at the root. See #42371, https://github.com/vllm-project/vllm/issues/29349, https://github.com/vllm-project/vllm/pull/30635 and https://huggingface.co/swiss-ai/Apertus-8B-Instruct-2509/discussions/21 for context. Fix...
null
06378d40e613db0dfbfb79a5569017bae83d3929
null
low
[ { "filename": "src/transformers/models/apertus/modeling_apertus.py", "patch": "@@ -25,7 +25,7 @@\n import torch\n from torch import nn\n \n-from ...activations import ACT2FN\n+from ...activations import ACT2CLS, ACT2FN\n from ...cache_utils import Cache, DynamicCache\n from ...generation import GenerationMi...
vuejs/vue
6,839
build: install dependency for vue-server-renderer in setup script
<!-- 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...
471de4a31d229e681cc9dce18632b5bcab944c77
a433b16588412980b4ab51924de1ef91b5226f56
3
medium
[ { "filename": "build/install-hooks.js", "patch": "@@ -1,8 +0,0 @@\n-const { test, ln, chmod } = require('shelljs')\n-\n-if (test('-e', '.git/hooks')) {\n- ln('-sf', '../../build/git-hooks/pre-commit', '.git/hooks/pre-commit')\n- chmod('+x', '.git/hooks/pre-commit')\n- ln('-sf', '../../build/git-hooks/com...
ollama/ollama
8,036
go.mod: go 1.22.8 -> 1.23.4
null
a37f4a86a7f772c327077a3cf3245a405be31cd0
null
low
[ { "filename": "go.mod", "patch": "@@ -1,6 +1,6 @@\n module github.com/ollama/ollama\n \n-go 1.22.8\n+go 1.23.4\n \n require (\n \tgithub.com/containerd/console v1.0.3", "additions": 1, "deletions": 1 } ]
electron/electron
49,067
fix: `systemPreferences.getAccentColor` inverted color
Backport of #48511. See that PR for details. Notes: Fixed an issue where `systemPreferences.getAccentColor` inverted the color.
b56d95d214c670da4bbdb809e0025e9644728386
55467ea0649347cb1e450dd39c7b19f4d76b3d36
26
medium
[ { "filename": "shell/browser/api/electron_api_system_preferences_win.cc", "patch": "@@ -16,6 +16,7 @@\n #include \"base/win/wrapped_window_proc.h\"\n #include \"shell/common/color_util.h\"\n #include \"shell/common/process_util.h\"\n+#include \"skia/ext/skia_utils_win.h\"\n #include \"ui/gfx/color_utils.h\"...
nodejs/node
60,926
meta: Bump github/codeql-action from 4.31.3 to 4.31.6
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.3 to 4.31.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/github/codeql-action/releases">github/codeql-action's releases</a>.</em></p> <blockquote> <h2>v4.31.6</h2> <h1>CodeQL Action Changelog</...
861ef97bf1ea89769ffa21b98e8d1bfd84237c6b
a7805e2da86aba64d9afa9d7a5b74047b14cc3ce
1
medium
[ { "filename": ".github/workflows/codeql.yml", "patch": "@@ -27,15 +27,15 @@ jobs:\n \n # Initializes the CodeQL tools for scanning.\n - name: Initialize CodeQL\n- uses: github/codeql-action/init@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3\n+ uses: github/codeql-action/init@...
ollama/ollama
8,012
Return err when NewHipLib() detect error.
Return err when NewHipLib() detect error.
4879a234c4bd3f2bbc99d9b09c44bd99fc337679
46f74e0cb5d57c69558451e2324f49c59a4d7683
8
medium
[ { "filename": "discover/amd_windows.go", "patch": "@@ -184,7 +184,7 @@ func (gpus RocmGPUInfoList) RefreshFreeMemory() error {\n \thl, err := NewHipLib()\n \tif err != nil {\n \t\tslog.Debug(err.Error())\n-\t\treturn nil\n+\t\treturn err\n \t}\n \tdefer hl.Release()\n ", "additions": 1, "deletions":...
vercel/next.js
88,210
fix overlay frames cannot be opened sometimes
Noticed sometimes when error overlay pops up, the ignored frames cannot be clicked, it's rare to repro. The problem: `When dialogResizerRef?.current` is null, the function returns early before reaching the `setIsIgnoreListOpen(tr ue)` call. This prevents opening the toggle even though opening doesn't actually need ...
null
f5cfb23bb6e1b7be1cec4511b0e641480b526cbe
null
low
[ { "filename": "packages/next/src/next-devtools/dev-overlay/components/errors/error-overlay-call-stack/error-overlay-call-stack.tsx", "patch": "@@ -21,17 +21,20 @@ export function ErrorOverlayCallStack({\n function onToggleIgnoreList() {\n const dialog = dialogResizerRef?.current\n \n- if (!dialog) ...
ollama/ollama
7,202
Add AI Summary Helper to list of community integrations
Adding AI Summary Helper to the community integrations list. The plugin allows users to generate custom summaries for web content using tailored prompts right in the browser / DOM which makes it compatible with send-to-kindle, printing articles etc.. It now supports Ollama/LLaMA models
c5d39470846d5190eb0e3001c615d65228c09e5e
7622ea21af2a283b0f4df2cef33cd9ad69285cba
1
high
[ { "filename": "README.md", "patch": "@@ -514,6 +514,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [LSP-AI](https://github.com/SilasMarvin/lsp-ai) (Open-source language server for AI-powered functionality)\n - [QodeAssist](https://github.com/Palm1r/QodeAssist) (AI-powered coding assi...
ggml-org/llama.cpp
19,159
ggml-zendnn : resolve ZenDNN backend cross-module symbol dependency
This PR fixes the ZenDNN backend failing to load when `GGML_BACKEND_DL=ON` The issue occurs because MODULE libs cannot access symbols from other MODULE libs, ZenDNN backend was attempting to call `ggml_get_type_traits_cpu()` from ggml-cpu, resulting in an undfined symbol error for `GGML_BACKEND_DL=ON` This fix us...
null
b33df266d0a53f800c47513386920cff1019d70e
null
low
[ { "filename": "ggml/src/ggml-zendnn/ggml-zendnn.cpp", "patch": "@@ -2,7 +2,6 @@\n \n #include \"ggml-backend-impl.h\"\n #include \"ggml-impl.h\"\n-#include \"ggml-cpu.h\"\n #include \"zendnnl.hpp\"\n \n #include <cstring>\n@@ -122,8 +121,8 @@ static void ggml_zendnn_compute_forward_mul_mat(\n \n GGML_TE...
ollama/ollama
8,024
readme: add aidful-ollama-model-delete to community integration
A simple Python UI which allows to easily select and delete any number of models to free up disk space.
abfdc4710f17e2eb686d104885843c30bdf8cad3
dd42acf737579fe78487adf3f5ac59b492e046c3
2
high
[ { "filename": "README.md", "patch": "@@ -360,6 +360,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Witsy](https://github.com/nbonamy/witsy) (An AI Desktop application available for Mac/Windows/Linux)\n - [Abbey](https://github.com/US-Artificial-Intelligence/abbey) (A configurable AI...
huggingface/transformers
42,885
fix: typehits for Causal LM models
# What does this PR do? <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully reflects the extent of your awesome contribution. Then, please replace this w...
null
4c64a8fb15de548ea3a684f6a621a9c3118318ef
null
low
[ { "filename": "src/transformers/models/__init__.py", "patch": "@@ -23,6 +23,7 @@\n from .albert import *\n from .align import *\n from .altclip import *\n+ from .apertus import *\n from .arcee import *\n from .aria import *\n from .audio_spectrogram_transformer import *\n@@ -107,6...
electron/electron
49,042
fix: exception when reading system certificates via nodejs
Backport of #49028 See that PR for details. Notes: fix crash when reading system certificates via nodejs tls module
1936243ce126c04f13e5adf00f628ff99ee301e1
2a8164f499ab8ca25837c5d80b16c3c8475abfc3
15
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -53,3 +53,4 @@ fix_replace_deprecated_setprototype.patch\n fix_redefined_macos_sdk_header_symbols.patch\n src_use_cp_utf8_for_wide_file_names_on_win32.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n+src_handle_der_decoding_errors_from...
facebook/react
32,918
[ci] Don't run some checks for non-members/collaborators
There's really no need to even run the workflow for non-members or collaborators for the labeling and discord notification workflows. We can exit early.
null
e71d4205aed6c41b88e3689c76b41da65f5c04c0
null
low
[ { "filename": ".github/workflows/compiler_discord_notify.yml", "patch": "@@ -10,7 +10,19 @@ on:\n permissions: {}\n \n jobs:\n+ check_access:\n+ runs-on: ubuntu-latest\n+ outputs:\n+ is_member_or_collaborator: ${{ steps.check_access.outputs.result }}\n+ steps:\n+ - name: Check access\n+ ...
ollama/ollama
7,948
Update README.md
Add database app example: Kangaroo
dd42acf737579fe78487adf3f5ac59b492e046c3
c5d39470846d5190eb0e3001c615d65228c09e5e
2
high
[ { "filename": "README.md", "patch": "@@ -409,6 +409,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n \n - [MindsDB](https://github.com/mindsdb/mindsdb/blob/staging/mindsdb/integrations/handlers/ollama_handler/README.md) (Connects Ollama models with nearly 200 data platforms and apps)\n -...
vuejs/vue
6,837
fix(core): static trees should be cached on options (#6826)
<!-- 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...
12255ff220ac8cd0171aa0ed56ce630a6843b2bd
b6c384dd78b56bd247e6a34d5aea0d3903f5b7fd
29
medium
[ { "filename": "src/core/instance/render-helpers/render-static.js", "patch": "@@ -11,8 +11,8 @@ export function renderStatic (\n ): VNode | Array<VNode> {\n // static trees can be rendered once and cached on the contructor options\n // so every instance shares the same cached trees\n- const renderFns = ...
nodejs/node
60,924
meta: Bump peter-evans/create-pull-request from 7.0.8 to 7.0.9
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7.0.8 to 7.0.9. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/peter-evans/create-pull-request/releases">peter-evans/create-pull-request's releases</a>.</em></p> <blockquote> <h2>...
null
4f5ab59b6dcdd7c755ac16c80fe66a2e5783fb68
null
low
[ { "filename": ".github/workflows/tools.yml", "patch": "@@ -324,7 +324,7 @@ jobs:\n if: env.COMMIT_MSG == '' && (github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id)\n run: |\n echo \"COMMIT_MSG=${{ matrix.subsystem }}: update ${{ matrix.id }} to ${{ env....
electron/electron
49,028
fix: exception when reading system certificates via nodejs
#### Description of Change Backports https://github.com/nodejs/node/pull/60787 #### Release Notes Notes: fix crash when reading system certificates via nodejs tls module
54a617caab3871ccffbc5e3a9bd2a86381fa5ebb
79e17ce4be43864c12f6d2ee1fbce107a0a6c5e4
7
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -42,3 +42,4 @@ api_promote_deprecation_of_v8_context_and_v8_object_api_methods.patch\n src_use_cp_utf8_for_wide_file_names_on_win32.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n reland_temporal_unflag_temporal.patch\n+src_handle_der...
ollama/ollama
5,851
Lowercase hostname for CORS.
Origins check fails when Host header is not lowercase. Fixes https://github.com/ollama/ollama/issues/5838.
4879a234c4bd3f2bbc99d9b09c44bd99fc337679
757eeacc1b34c825f5927d2db86d4e73e8fdf52a
5
medium
[ { "filename": "server/routes.go", "patch": "@@ -1071,11 +1071,13 @@ func isLocalIP(ip netip.Addr) bool {\n }\n \n func allowedHost(host string) bool {\n+\thost = strings.ToLower(host)\n+\n \tif host == \"\" || host == \"localhost\" {\n \t\treturn true\n \t}\n \n-\tif hostname, err := os.Hostname(); err == n...
nodejs/node
60,920
tools: ignore more paths in GHA CI
We don't need to build `node` 8 times in PRs such as https://github.com/nodejs/node/pull/60908. I noticed we were still listing the `AUTHORS` file despite getting rid of it ages ago. <!-- Before submitting a pull request, please read: - the CONTRIBUTING guide at https://github.com/nodejs/node/blob/HEAD/CONTRIBUT...
5b4b031da4b6aedb811d29602a89d436c559215e
5879e9b257d4bae7da7b31d527250425c7abc7ab
4
medium
[ { "filename": ".github/workflows/build-tarball.yml", "patch": "@@ -4,27 +4,59 @@ on:\n pull_request:\n types: [opened, synchronize, reopened, ready_for_review]\n paths-ignore:\n- - .mailmap\n - '**.md'\n - '**.nix'\n- - AUTHORS\n+ - eslint.config.mjs\n+ - '**/eslint...
ggml-org/llama.cpp
19,797
common : add more aliases for sampler CLI params
Adds two CLI argument aliases for sampler parameters: - `--top-n-sigma` (for existing `--top-nsigma`) - `--temperature` (for existing `--temp`) *Make sure to read the [contributing guidelines](https://github.com/ggml-org/llama.cpp/blob/master/CONTRIBUTING.md) before submitting a PR*
null
832aa947623fff3cf91c1169d5684afba5768d26
null
low
[ { "filename": "common/arg.cpp", "patch": "@@ -1578,7 +1578,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex\n }\n ).set_sparam());\n add_opt(common_arg(\n- {\"--temp\"}, \"N\",\n+ {\"--temp\", \"--temperature\"}, \"N\",\n string_form...
huggingface/transformers
42,895
Simplify tie weights logic
# What does this PR do? As per the title! Originally, the logic should have tied both weights, but because there was a name mix-up, only the primary target was tied. This is however still logically correct, as then the original source will be tied later when reaching its turn in the mapping. So this PR removes the d...
a187b857a72b10bdb37c91857a697324ab41f82d
4d6516e2565af683f6edad4ae8d13caa6a70bf0b
19
medium
[ { "filename": "src/transformers/modeling_utils.py", "patch": "@@ -2387,11 +2387,6 @@ def tie_weights(self, missing_keys: Optional[set[str]] = None, recompute_mapping\n \n tied_keys = list(tied_keys.items())\n for i, (target_param_name, source_param_name) in enumerate(tied_keys):\n- ...
ollama/ollama
8,032
Remove unused runner CpuFeatures
The final implementation of #7499 removed dynamic vector requirements in favor of a simpler [filename based model](https://github.com/ollama/ollama/blob/main/runners/common.go#L125-L132), and this was left over logic that is no longer needed.
82a02e18d96ce2fff1791e6d1a080d3afa11370e
b9ccb3741ed448fbfd91c14dfec8307b87cda6ee
2
medium
[ { "filename": "llama/llama.go", "patch": "@@ -96,8 +96,6 @@ import (\n \t\"unsafe\"\n )\n \n-var CpuFeatures = \"\"\n-\n func BackendInit() {\n \tC.llama_backend_init()\n }", "additions": 0, "deletions": 2 }, { "filename": "make/Makefile.cpu", "patch": "@@ -2,7 +2,7 @@\n \n include make/...
ollama/ollama
8,031
build: fix typo in override variable
The "F" was missing.
4879a234c4bd3f2bbc99d9b09c44bd99fc337679
82a02e18d96ce2fff1791e6d1a080d3afa11370e
1
medium
[ { "filename": "docs/development.md", "patch": "@@ -53,7 +53,7 @@ If both v11 and v12 tookkits are detected, runners for both major versions will\n \n #### Older Linux CUDA (NVIDIA)\n \n-To support older GPUs with Compute Capability 3.5 or 3.7, you will need to use an older version of the Driver from [Unix D...
facebook/react
32,914
[DevTools] Make Toggle hover state more visible
This change adds a background color to Toggles to make them easier to see. This is especially important when DevTools are not in focus, and it's harder to see. Test plan: 1. `yarn build:chrome:local` 2. Inspect components 3. Hover over "Select an Element in page to inspect it" 4. Observe background change
null
707b3fc6b2d7db1aaea6545e06672873e70685d5
null
low
[ { "filename": "packages/react-devtools-shared/src/devtools/constants.js", "patch": "@@ -27,6 +27,7 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-background-selected': '#0088fa',\n '--color-button-background': '#ffffff',\n '--color-button-background-focu...
vuejs/vue
6,796
fix(transition-group): work around rollup tree shaking, fix #6792
<!-- 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
60b1af9e02b93d9223d2ed1f23e0a618537a4c96
null
low
[ { "filename": "src/platforms/web/runtime/components/transition-group.js", "patch": "@@ -101,8 +101,9 @@ export default {\n children.forEach(applyTranslation)\n \n // force reflow to put everything in position\n- const body: any = document.body\n- const f: number = body.offsetHeight // eslint-d...
ollama/ollama
8,014
Avoid underflow when FreeMemory < overhead
Fixes: #8011
539be43640edf4b643ae2139ad1f1ccc8c66570d
63269668c06cee60beb617f00e8c6829502ba0ab
12
medium
[ { "filename": "llm/memory.go", "patch": "@@ -182,7 +182,7 @@ func EstimateGPULayers(gpus []discover.GpuInfo, ggml *GGML, projectors []string,\n \t\t\tgzo = gpuZeroOverhead\n \t\t}\n \t\t// Only include GPUs that can fit the graph, gpu minimum, the layer buffer and at least more layer\n-\t\tif (gpus[i].FreeM...
electron/electron
48,543
fix: icon in Windows toast notification
#### Description of Change Closes https://github.com/electron/electron/issues/48536. Refs https://github.com/electron/electron/commit/f28d08ad8690d8b9ded8f33781ee990027fd16d0 The `image` attribute should have an ID. Also cleaned up and added checks for missing icons when saving an icon to the filesystem for use ...
null
f784ea6f4f98a12208c9dc42d7e437280e285a06
null
low
[ { "filename": "shell/browser/notifications/win/notification_presenter_win.cc", "patch": "@@ -30,9 +30,8 @@ namespace {\n bool SaveIconToPath(const SkBitmap& bitmap, const base::FilePath& path) {\n std::optional<std::vector<uint8_t>> png_data =\n gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false);\n- ...
nodejs/node
60,905
stream: fix isErrored/isWritable for WritableStreams
The underlying machinery for these was missed.
null
ecdf6a8c533d04b85595f5d053635f740d3c3d93
null
low
[ { "filename": "lib/internal/webstreams/writablestream.js", "patch": "@@ -76,6 +76,8 @@ const {\n \n const {\n kIsClosedPromise,\n+ kIsErrored,\n+ kIsWritable,\n kControllerErrorFunction,\n } = require('internal/streams/utils');\n \n@@ -183,6 +185,14 @@ class WritableStream {\n size);\n }\n \n+...
ggml-org/llama.cpp
19,889
[SYCL] Fix binbcast.cpp:200: GGML_ASSERT(s10 == 1) failed of Qwen3-Coder-Next-Q3_K_M.gguf
Fix issue: https://github.com/ggml-org/llama.cpp/issues/19779 The PR (1725e316c models : optimize qwen3next graph) lead to the OP shape is changed and lead to assert. In binbcast ops: remove assert for check s0/s10 support permuted.
null
2943210c1eaa3fc9cc4f0ac6f0ae5f2ce2350f98
null
low
[ { "filename": "ggml/src/ggml-sycl/binbcast.cpp", "patch": "@@ -11,8 +11,8 @@ static void k_bin_bcast(const src0_t * src0, const src1_t * src1, dst_t * dst,\n int ne0, int ne1, int ne2, int ne3,\n int ne10, int ne11, int ne12, int ne13,\n /*int s0, */ int s1, int s2, int s3,\n- ...
huggingface/transformers
42,888
fix FastSpeech2ConformerTokenizer crash in tokenize
- tokenizers: @ArthurZucker and @itazap how to reproduce: ``` from transformers import FastSpeech2ConformerTokenizer tokenizer = FastSpeech2ConformerTokenizer.from_pretrained("espnet/fastspeech2_conformer") text = "Test that this generates speech" input_ids = tokenizer(text, return_tensors="pt") ``` Trace...
null
24b311eead0ee199ed6e77f8b562f01b7afa924d
null
low
[ { "filename": "src/transformers/models/fastspeech2_conformer/tokenization_fastspeech2_conformer.py", "patch": "@@ -79,6 +79,7 @@ def __init__(\n unk_token=unk_token,\n pad_token=pad_token,\n should_strip_spaces=should_strip_spaces,\n+ special_tokens_pattern=\"n...
vercel/next.js
88,137
Update Rspack production test manifest
This auto-generated PR updates the production integration test manifest used when testing Rspack.
f1ddf6e632ff5f6375400f8685912381349f6726
0a9bbe1e5240692a893bce6269014c68a239a3a4
30
medium
[ { "filename": "test/rspack-build-tests-manifest.json", "patch": "@@ -2299,6 +2299,15 @@\n \"flakey\": [],\n \"runtimeError\": false\n },\n+ \"test/e2e/app-dir/cdn-cache-control-header/cdn-cache-control-header.test.ts\": {\n+ \"passed\": [\n+ \"cdn-cache-control-header should use custom CD...
vuejs/vue
6,794
add semicolon before closure, fix ssr error
<!-- 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...
2d32b5d1b663fa331ec256b73e937af15eb6e3d5
5a15a8d2089bb833b892123c31a2ca04a511c4c8
22
medium
[ { "filename": "src/server/template-renderer/index.js", "patch": "@@ -192,7 +192,7 @@ export default class TemplateRenderer {\n windowKey = '__INITIAL_STATE__'\n } = options || {}\n const autoRemove = process.env.NODE_ENV === 'production'\n- ? '(function(){var s;(s=document.currentScript||...
ggml-org/llama.cpp
19,768
vulkan: check for memory overlap before doing fusion
This fixes a class of potential fusion bugs where the destination could overwrite a source tensor while other elements of the same op still need those source values. Add some logic to compare the memory ranges and disable fusion if the bad case is detected. Some operations contribute to the destination in an elementwis...
aa6f918c1c786668db530c3a1c3ff8a93da928f7
3769fe6eb70b0a0fbb30b80917f1caae68c902f7
13
medium
[ { "filename": "ggml/src/ggml-vulkan/ggml-vulkan.cpp", "patch": "@@ -13820,12 +13820,11 @@ static bool ggml_vk_can_fuse_rope_set_rows(ggml_backend_vk_context * ctx, const\n return true;\n }\n \n-// Check whether the tensors overlap in memory but are not equal.\n-// Fusions can potenitally overwrite src t...
facebook/react
32,868
[compiler] Update rimraf
Just updating the compiler workspace package. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32868). * #32859 * __->__ #32868
null
4eea4fcf41ab325455a6e3421a638404f5a902aa
null
low
[ { "filename": "compiler/package.json", "patch": "@@ -37,15 +37,14 @@\n \"prettier\": \"^3.3.3\",\n \"prettier-plugin-hermes-parser\": \"^0.26.0\",\n \"prompt-promise\": \"^1.0.3\",\n- \"rimraf\": \"^5.0.10\",\n+ \"rimraf\": \"^6.0.1\",\n \"to-fast-properties\": \"^2.0.0\",\n \"tsup...
ollama/ollama
7,980
prompt: Don't trim whitespace from prompts
New lines can be an important part of a user's prompt and trimming it can alter the results. We previously only trimmed prompts with images but refactoring brought this behavior to all prompts, where it became more noticeable. The /generate endpoint adds less whitespace and therefore doesn't need to trim it out - th...
null
900f64e6be859f52350c25032ff5b11f10509c7e
null
low
[ { "filename": "server/prompt.go", "patch": "@@ -114,7 +114,6 @@ func chatPrompt(ctx context.Context, m *Model, tokenize tokenizeFunc, opts *api.\n \t\t\t\t\tID: len(images),\n \t\t\t\t\tData: i,\n \t\t\t\t}\n-\t\t\t\timgPrompt = \" \"\n \t\t\t}\n \n \t\t\timgTag := fmt.Sprintf(\"[img-%d]\", imgData.ID)\n@...
electron/electron
49,042
fix: exception when reading system certificates via nodejs
Backport of #49028 See that PR for details. Notes: fix crash when reading system certificates via nodejs tls module
1936243ce126c04f13e5adf00f628ff99ee301e1
2a8164f499ab8ca25837c5d80b16c3c8475abfc3
15
medium
[ { "filename": "patches/node/.patches", "patch": "@@ -53,3 +53,4 @@ fix_replace_deprecated_setprototype.patch\n fix_redefined_macos_sdk_header_symbols.patch\n src_use_cp_utf8_for_wide_file_names_on_win32.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n+src_handle_der_decoding_errors_from...
ggml-org/llama.cpp
19,877
server : enable multi-modal prompt caching
target #19849 cont #16391 We can now clone `server_tokens` so re-enable host-memory prompt caching for multi-modal cases.
d7d826b3c1fca0c1564a59d92bf6c2c40c8e69fb
f20469d91948975e001c286836f714c1819c968f
1
medium
[ { "filename": "tools/server/server-context.cpp", "patch": "@@ -995,9 +995,6 @@ struct server_context_impl {\n // don't update the cache if the slot's context is empty\n update_cache = update_cache && tokens.size() > 0;\n \n- // TODO: mtmd does not support prompt cache\n- ...
nodejs/node
60,902
tools: run tests `--without-amaro` on test-shared macOS
We currently have no CI that run the tests with those options. Rather than introducing an additional job, we can reuse that job which is already kinda redundant anyway (we already test with macOS, and we already test with shared-libs on Linux). I did not include `--without-intl` and `--without-ssl` because we already ...
null
5b4b031da4b6aedb811d29602a89d436c559215e
null
low
[ { "filename": ".github/workflows/test-shared.yml", "patch": "@@ -164,7 +164,7 @@ jobs:\n --arg ccache '(import <nixpkgs> {}).sccache' \\\n --arg devTools '[]' \\\n --arg benchmarkTools '[]' \\\n- ${{ endsWith(matrix.system, '-darwin') && '--arg extraConfigFlags...
huggingface/transformers
42,528
small fix tokenizer regex patch
# What does this PR do? Were issues
null
83fe012d58528a14ee0bb0146885f2d6fcb1ec3f
null
low
[ { "filename": "src/transformers/tokenization_utils_tokenizers.py", "patch": "@@ -42,7 +42,7 @@\n TextInput,\n TruncationStrategy,\n )\n-from .utils import PaddingStrategy, add_end_docstrings, logging\n+from .utils import PaddingStrategy, add_end_docstrings, is_offline_mode, logging\n \n \n logger = ...
ollama/ollama
7,986
Fix wrong import python package.
Fix wrong import python package.
f6e87fd628557927477f064b6ef550c4902b74f5
7f0ccc8a9d2e61b995a7a870df9ece9c07de8119
3
high
[ { "filename": "docs/openai.md", "patch": "@@ -61,7 +61,7 @@ embeddings = client.embeddings.create(\n ```\n #### Structured outputs\n ```py\n-rom pydantic import BaseModel\n+from pydantic import BaseModel\n from openai import OpenAI\n \n client = OpenAI(base_url=\"http://localhost:11434/v1\", api_key=\"ollam...
vercel/next.js
88,138
Update Rspack development test manifest
This auto-generated PR updates the development integration test manifest used when testing Rspack.
8b41bf65f803ee88f8ce8203f1f44656936cef38
74a4af49006cd06f0be54238ef670a105315618f
30
medium
[ { "filename": "test/rspack-dev-tests-manifest.json", "patch": "@@ -1080,14 +1080,13 @@\n \"server-components-hmr-cache node runtime in after() should not use cached fetch calls for intentional refresh requests\",\n \"server-components-hmr-cache node runtime in after() should use cached fetch cal...
vuejs/vue
6,802
fix(model): allow arbitrary naems for type binding
Fix #6800 <!-- 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) ...
null
15031b85427df5409f0bc4c10589cc6259f8a5b2
null
low
[ { "filename": "src/platforms/web/compiler/modules/model.js", "patch": "@@ -36,7 +36,7 @@ function preTransformNode (el: ASTElement, options: CompilerOptions) {\n addRawAttr(branch0, 'type', 'checkbox')\n processElement(branch0, options)\n branch0.processed = true // prevent it from double-...
facebook/react
32,855
Upgrade node.js to 20 LTS
Try to upgrade our node version. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32855). * #32861 * #32860 * #32859 * __->__ #32855
ea05b750a5374458fc8c74ea0918059c818d1167
58e9a4b74fce1b519723b349bded5b4102b41474
14
medium
[ { "filename": ".nvmrc", "patch": "@@ -1 +1 @@\n-v18.20.1\n+v20.19.0", "additions": 1, "deletions": 1 }, { "filename": "fixtures/flight-esm/.nvmrc", "patch": "@@ -1 +1 @@\n-v18\n+v20.19.0", "additions": 1, "deletions": 1 }, { "filename": "fixtures/flight/.nvmrc", "patc...
ggml-org/llama.cpp
19,849
server : support multi-modal context checkpoints
alt #19747 fix #19690 fix #19858 This continues the work from #19747 to enable multi-modal checkpointing in `llama-server`. Avoids changes to `libllama`. Fixes `n_past` ambiguity of "number of tokens" and "next position" by tracking the position separately with a new `pos_next` var.
e8e261699a2a93b60f307d92aa788e47b6b2ebd7
d7d826b3c1fca0c1564a59d92bf6c2c40c8e69fb
20
medium
[ { "filename": "src/llama-memory-recurrent.cpp", "patch": "@@ -163,7 +163,7 @@ bool llama_memory_recurrent::seq_rm(llama_seq_id seq_id, llama_pos p0, llama_pos\n const auto & cell = cells[tail_id];\n // partial intersection is invalid if it includes the final pos\n if (0 <...
ollama/ollama
7,926
postmerge(qkvct): normalise kvct parameter handling
Minor improvement to the k/v cache quantisation parameter handling to normalise the value to lower case, allowing users to specify Q8_0 as well as q8_0. fyi @jmorganca
1bdab9fdb19f8a8c73ed85291f9acea5bc1c7075
539be43640edf4b643ae2139ad1f1ccc8c66570d
1
medium
[ { "filename": "llm/memory.go", "patch": "@@ -129,7 +129,7 @@ func EstimateGPULayers(gpus []discover.GpuInfo, ggml *GGML, projectors []string,\n \n \tvar kvct string\n \tif fa {\n-\t\trequested := envconfig.KvCacheType()\n+\t\trequested := strings.ToLower(envconfig.KvCacheType())\n \t\tif requested != \"\" &...
vuejs/vue
6,795
tweak: The value of props here is always true
<!-- 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...
b7105ae8c9093e36ec89a470caa3b78bda3ef467
8645e5f04aff8b0eacd617bbcf2395615c25d68b
11
medium
[ { "filename": "src/core/util/options.js", "patch": "@@ -286,7 +286,7 @@ function normalizeProps (options: Object, vm: ?Component) {\n ? val\n : { type: val }\n }\n- } else if (process.env.NODE_ENV !== 'production' && props) {\n+ } else if (process.env.NODE_ENV !== 'production') {\n ...
ollama/ollama
7,975
readme: add llama3.3 to readme
readme: add llama3.3 to readme
1aedffad93e7879fc9a3e4f9eb65467a6436e7e5
acd7d03266e1b2b1df07c608ba225eb46a57d4cf
11
medium
[ { "filename": "README.md", "patch": "@@ -49,12 +49,12 @@ Here are some example models that can be downloaded:\n \n | Model | Parameters | Size | Download |\n | ------------------ | ---------- | ----- | -------------------------------- |\n+| Llama 3.3 | 70B ...
electron/electron
48,543
fix: icon in Windows toast notification
#### Description of Change Closes https://github.com/electron/electron/issues/48536. Refs https://github.com/electron/electron/commit/f28d08ad8690d8b9ded8f33781ee990027fd16d0 The `image` attribute should have an ID. Also cleaned up and added checks for missing icons when saving an icon to the filesystem for use ...
null
f784ea6f4f98a12208c9dc42d7e437280e285a06
null
low
[ { "filename": "shell/browser/notifications/win/notification_presenter_win.cc", "patch": "@@ -30,9 +30,8 @@ namespace {\n bool SaveIconToPath(const SkBitmap& bitmap, const base::FilePath& path) {\n std::optional<std::vector<uint8_t>> png_data =\n gfx::PNGCodec::EncodeBGRASkBitmap(bitmap, false);\n- ...
facebook/react
22,307
[useSES/extra] Reuse old selection if possible
When you pass an unmemoized selector to useSyncExternalStoreExtra, we have to reevaluate it on every render because we don't know whether it depends on new props. However, after reevalutating it, we should still compare the result to the previous selection with `isEqual` and reuse the old one if it hasn't changed. ...
95d762e406bd37c07693e3a5ddbd0f75289e8c3f
fd5e01c2e0dbbeaff954d13fc6bc11bfc65e7dcf
15
medium
[ { "filename": "packages/use-sync-external-store/src/__tests__/useSyncExternalStoreShared-test.js", "patch": "@@ -571,6 +571,8 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {\n });\n \n describe('extra features implemented in user-space', () => {\n+ // The selector impl...
huggingface/transformers
42,872
Fix GraniteMoeHybrid in transformers v5
# What does this PR do? Re-applies RoPE in GraniteMoEHybrid models when needed (only on non-hybrid models). As done in transformers v4. <!-- 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...
null
5d2f82b530d9e53fdb64b4e78638cd8f1673378f
null
low
[ { "filename": "src/transformers/models/granitemoehybrid/configuration_granitemoehybrid.py", "patch": "@@ -92,6 +92,8 @@ class GraniteMoeHybridConfig(PreTrainedConfig):\n allow the model to output the auxiliary loss.\n router_aux_loss_coef (`float`, *optional*, defaults to 0.001): router ...
nodejs/node
60,841
benchmark: fix incorrect base64 input in byteLength benchmark
<!-- 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
470ef988f62e6148cbbbd31f7061cd214030a714
null
low
[ { "filename": "benchmark/buffers/buffer-bytelength-string.js", "patch": "@@ -22,7 +22,7 @@ const chars = {\n function getInput(type, repeat, encoding) {\n const original = (repeat === 1) ? chars[type] : chars[type].repeat(repeat);\n if (encoding === 'base64') {\n- Buffer.from(original, 'utf8').toStri...
vercel/next.js
83,715
Fix compile error when running next-custom-transform tests
`cargo test -p next-custom-transforms` should work again now
null
e3908468c8e2a895508656cec8806dd65ba80712
null
low
[ { "filename": "crates/next-custom-transforms/Cargo.toml", "patch": "@@ -72,5 +72,7 @@ remove_console = { workspace = true }\n preset_env_base = { workspace = true }\n \n [dev-dependencies]\n-swc_core = { workspace = true, features = [\"testing_transform\", \"plugin_backend_wasmer\"] }\n testing = { workspac...
facebook/react
32,810
Remove redundant __DEV__ condition
It used to be that in `__DEV__` we wrapped this `renderWithHooks`, `checkDidRenderIdHook` pair in calls to `setIsRendering()`. However, that dev-only bookkeeping was removed in https://github.com/facebook/react/pull/29206 leaving this redundant check which runs identical code in dev and in prod. ## Test Plan * Ma...
961b625ab5d180180e836e0c7b221789f0ee336b
39cad7afc43fcbca1fd2e3a0d5b7706c8b237793
2
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberBeginWork.js", "patch": "@@ -436,33 +436,21 @@ function updateForwardRef(\n }\n \n // The rest is a fork of updateFunctionComponent\n- let nextChildren;\n- let hasId;\n prepareToReadContext(workInProgress, renderLanes);\n if (enableSchedulingP...
vuejs/vue
6,763
feat(ssr): auto-remove initial state script if prod [#6761]
Enable intial state script to automatically remove itself from the DOM if server environment is prod. (https://github.com/vuejs/vue/issues/6761) **What kind of change does this PR introduce?** (check at least one) - [ ] Bugfix - [x] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes ...
7bc899ce0ec10be3fbd4bd7e78b66dd357249c81
2d32b5d1b663fa331ec256b73e937af15eb6e3d5
18
medium
[ { "filename": "src/server/template-renderer/index.js", "patch": "@@ -191,10 +191,13 @@ export default class TemplateRenderer {\n contextKey = 'state',\n windowKey = '__INITIAL_STATE__'\n } = options || {}\n+ const autoRemove = process.env.NODE_ENV === 'production'\n+ ? '(function(){v...
ggml-org/llama.cpp
19,810
Update Windows ROCm build to 26.Q1
This updates Windows to the latest stable release of ROCm just as Linux was just recently updated (https://github.com/ggml-org/llama.cpp/pull/19433). Here is a [build in my fork](https://github.com/superm1/llama.cpp/actions/runs/22314451817/job/64555241597) demonstrating it passes. CC @IMbackK , @slojosic-amd, @h...
9f0684f003f0feae3436293d9d9686f190105729
8fdf269dad4763ae2e3768f81e8d7121a34a752f
23
medium
[ { "filename": ".github/workflows/release.yml", "patch": "@@ -616,13 +616,13 @@ jobs:\n runs-on: windows-2022\n \n env:\n- HIPSDK_INSTALLER_VERSION: \"25.Q3\"\n+ HIPSDK_INSTALLER_VERSION: \"26.Q1\"\n \n strategy:\n matrix:\n include:\n - name: \"radeon\"\n- ...
huggingface/transformers
42,592
Fix convert_tekken_tokenizer
# What does this PR do? Right now the `convert_tekken_tokenizer` does not add `bos_tokens`, `eos_token` to the special tokens via the `add_special_tokens` method. This prevents the chat templates that expect `eos_token` and `bos_token` to work properly. Previously this was working as when saving the tokenizer...
7960b5ea40a310fdd55ec8eadbc38671965f6e42
252afd8968a3e0d6b755d0ee1295593c6e0b7927
3
medium
[ { "filename": "src/transformers/integrations/mistral.py", "patch": "@@ -77,6 +77,7 @@ def convert_tekken_tokenizer(tokenizer_file: str):\n \"\"\"Convert a \"tekken\" tokenizer to a fast Tokenizer.\"\"\"\n # Tekken format -- need to use the Converter\n \n+ from mistral_common.tokens.tokenizers.bas...
ollama/ollama
7,962
Update readmes for structured outputs
d543b282a7c3bc59720744d7d3ad7a9d7df8744c
f6e87fd628557927477f064b6ef550c4902b74f5
12
medium
[ { "filename": "docs/api.md", "patch": "@@ -45,7 +45,7 @@ Generate a response for a given prompt with a provided model. This is a streamin\n \n Advanced parameters (optional):\n \n-- `format`: the format to return a response in. Currently the only accepted value is `json`\n+- `format`: the format to return a...
facebook/react
32,849
Clear Update flag for unchanged trees in the beginning of the commit phase
We use the Update flag to track if a View Transition had any mutations or relayout. Unlike the other usage of it, this is just temporary state during the commit phase. Normally the flags gets used in the render phase and we reset it when we rerender but in the case of "nested" updates, those trees didn't update. We'...
c44e4a250557e53b120e40db8b01fb5fd93f1e35
1d6c8168db1d82713202e842df3167787ffa00ed
4
medium
[ { "filename": "packages/react-reconciler/src/ReactFiberApplyGesture.js", "patch": "@@ -631,6 +631,12 @@ function recursivelyInsertClonesFromExistingTree(\n const viewTransitionState: ViewTransitionState = child.stateNode;\n // TODO: If this was already cloned by a previous pass we can reuse ...
vuejs/vue
6,769
feat: ignored elements wildcard
<!-- 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) --> Did not make an issue for this, but would be nice to have this implemented. To av...
421658884f7ca786747abf9b89e00925fdfdfba8
795b908095b29e76435479879c1ade7ef759ce7b
5
medium
[ { "filename": "src/core/vdom/patch.js", "patch": "@@ -120,7 +120,14 @@ export function createPatchFunction (backend) {\n if (\n !inPre &&\n !vnode.ns &&\n- !(config.ignoredElements.length && config.ignoredElements.indexOf(tag) > -1) &&\n+ !(\n+ config...
ollama/ollama
7,836
api: (Fix) Enable Tool streaming
As much desired by the community - https://github.com/ollama/ollama/issues/5796 - We currently do not support streaming correctly and just return data in `.Content` if streaming ToolCalls - This ends breaks patterns for other clients but also some users who want to set streaming to true and not worry about switchin...
940e62772e68c99cd4cb0b037acf5c16c23e0854
ce7455a8e1045ae12c5eaa9dc5bb5bdc84a098dc
2
medium
[ { "filename": "openai/openai.go", "patch": "@@ -200,9 +200,9 @@ func toolCallId() string {\n \treturn \"call_\" + strings.ToLower(string(b))\n }\n \n-func toChatCompletion(id string, r api.ChatResponse) ChatCompletion {\n-\ttoolCalls := make([]ToolCall, len(r.Message.ToolCalls))\n-\tfor i, tc := range r.Mes...