repo stringclasses 10
values | pr_number int64 7 155k | title stringlengths 4 137 | body stringlengths 0 68.4k | buggy_commit stringlengths 40 40 ⌀ | fix_commit stringlengths 40 40 | buggy_distance int64 1 30 ⌀ | confidence stringclasses 3
values | files listlengths 1 5 |
|---|---|---|---|---|---|---|---|---|
ollama/ollama | 14,060 | scripts: add macOS support to install.sh | Allow installing Ollama on MacOS directly from the command line. This is inline with other CLI tools and results in a more streamlined experience when the user is looking to use the CLI specifically.
Running install.sh on MacOS:
```bash
❯ sh scripts/install.sh
>>> Stopping running Ollama instance...
>>> Removing... | null | 7ab4ca0e7f255a0b68628d7af73c8afa3f70d815 | null | low | [
{
"filename": ".github/workflows/test-install.yaml",
"patch": "@@ -0,0 +1,22 @@\n+name: test-install\n+\n+on:\n+ pull_request:\n+ paths:\n+ - 'scripts/install.sh'\n+ - '.github/workflows/test-install.yaml'\n+\n+jobs:\n+ test:\n+ strategy:\n+ matrix:\n+ os: [ubuntu-latest, macos... |
vercel/next.js | 90,874 | Ready in X - prints wrong timing on dev server restart | ### What?
Fixes the "Ready in" printout for the Next.js dev server after restarts.
### Why?
When the dev server restarts (e.g., due to `next.config` changes), the "Ready in" time was incorrect, showing the total process uptime instead of the actual startup duration for the newly restarted server instance. This was... | null | 742b186670001882fbe56cd1898befa14133149c | null | low | [
{
"filename": "packages/next/src/cli/next-dev.ts",
"patch": "@@ -391,6 +391,10 @@ const nextDev = async (\n })\n }\n \n+ // Reset the start time so \"Ready in X\" reflects the restart\n+ // duration, not time since the original process started.\n+ process.env... |
huggingface/transformers | 44,765 | fix(testing): Fix PaliGemma 2 and PaddleOCR-VL test failures on main | ### What does this PR do?
The following failing tests were identified and fixed in this PR:
→ **PaliGemma 2:** The [PaliGemma 1 test class](https://github.com/huggingface/transformers/blob/main/tests/models/paligemma/test_modeling_paligemma.py#L192) contains `additional_model_inputs = ["token_type_ids"]` (needed ... | null | 81128509a539bd6146c7b1baccecf090d71b5350 | null | low | [
{
"filename": "tests/models/paddleocr_vl/test_modeling_paddleocr_vl.py",
"patch": "@@ -184,6 +184,24 @@ def setUp(self):\n def test_config(self):\n self.config_tester.run_common_tests()\n \n+ @unittest.skip(\n+ reason=\"embed_tokens is ~80% of test model size, exceeding the 70% GPU bud... |
ollama/ollama | 14,103 | scheduler: default parallel=1 for qwen3next/lfm | d8cc798c2bda2cd76ad3fc108b06d04916abd51f | e36f389e8281da2532074ae3af53d3a7b1ca6ce5 | 18 | medium | [
{
"filename": "server/sched.go",
"patch": "@@ -417,9 +417,9 @@ func (s *Scheduler) load(req *LlmRequest, f *ggml.GGML, systemInfo ml.SystemInfo\n \t\tnumParallel = 1\n \t}\n \n-\t// `mllama`, `qwen3vl`, and `qwen3vlmoe` are snowflakes and uses an encoder cache which cannot be used with num_parallel > 1\n+\t... | |
electron/electron | 50,444 | build(deps): bump actions/download-artifact from 7.0.0 to 8.0.1 | Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7.0.0 to 8.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/download-artifact/releases">actions/download-artifact's releases</a>.</em></p>
<blockquote>
<h2>v8.0.1</h2>
<h2>What's C... | null | d64e1146ddcfeae6ca14cb7a073e84c7af4ab9e8 | null | low | [
{
"filename": ".github/workflows/pipeline-segment-electron-test-64k.yml",
"patch": "@@ -43,7 +43,7 @@ jobs:\n fetch-depth: 0\n ref: ${{ github.event.pull_request.head.sha }}\n - name: Download Generated Artifacts\n- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef3... |
vercel/next.js | 91,424 | fix: test-cargo-unit CI job timing out since LTO was enabled | ## What
Fixes the `test cargo unit` CI job which has been consistently timing out (30 min) on canary since #91343 landed on Mar 14.
## Why
Two issues were contributing to the timeout:
1. **LTO on unit test binaries**: #91343 added `lto = "thin"` to `[profile.release]`. The `release-with-assertions` profile (used by... | 0f599731b86e177508c9d28af7414e9d94a01193 | 4a99afc90f2afebbfe66afb932985029722b5846 | 1 | medium | [
{
"filename": ".github/workflows/build_and_test.yml",
"patch": "@@ -191,7 +191,7 @@ jobs:\n needsRust: 'yes'\n needsNextest: 'yes'\n skipNativeBuild: 'yes'\n- afterBuild: pnpm dlx turbo@${TURBO_VERSION} run test-cargo-unit\n+ afterBuild: pnpm dlx turbo@${TURBO_VERSION} run test-c... |
facebook/react | 35,520 | Fix ViewTransition null stateNode with SuspenseList | I was experimenting with animations in SuspenseList and hit a crash using ViewTransition as a direct child with `revealOrder="together"`
```
TypeError: Cannot read properties of null (reading 'autoName')
33 | return props.name;
34 | }
> 35 | if (instance.autoName !== null) {
... | null | 3926e2438fd65a0fb2c7807b5a633ba147408ab9 | null | low | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMViewTransition-test.js",
"patch": "@@ -0,0 +1,179 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+... |
nodejs/node | 62,355 | doc: add path to vulnerabilities.json mention | Refs: https://github.com/nodejs/node-core-utils/commit/89df0538426b32826db9f8e39a3d1f687d42abaa
<!--
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... | null | 5d900bed775e29d94336206eee1139e6f2de55c3 | null | low | [
{
"filename": "doc/contributing/releases.md",
"patch": "@@ -314,22 +314,22 @@ git checkout -b v1.2.3-proposal upstream/v1.x-staging\n You can also run:\n \n ```bash\n-git node release -S --prepare --security --filterLabel vX.x\n+git node release -S --prepare --security=../vulnerabilities.json --filterLabel ... |
huggingface/transformers | 44,883 | Fix dtype guessing from state dict | # What does this PR do?
Fix https://github.com/huggingface/transformers/issues/44589. | e94695e574f969ba5eeb8e442a7fb1e9f72ff37f | 82db888e29753c891a246933b60518191d83d835 | 10 | medium | [
{
"filename": "src/transformers/modeling_utils.py",
"patch": "@@ -259,7 +259,8 @@ def get_state_dict_dtype(state_dict):\n Returns the first found floating dtype in `state_dict` if there is one, otherwise returns the first dtype.\n \"\"\"\n for t in state_dict.values():\n- if t.is_floating... |
rust-lang/rust | 154,618 | Fix AtomicPtr::update's cfg gate | I'm *pretty* sure this is supposed to be `#[cfg(target_has_atomic = "ptr")]` like `AtomicPtr::try_update` is.
cc @GrigorenkoPV (author), @Noratrieb (r+ to rust-lang/rust#133829)
| null | d304cd64f2c4795c77a3a236370cceb02f0ab804 | null | low | [
{
"filename": "library/core/src/sync/atomic.rs",
"patch": "@@ -2136,7 +2136,7 @@ impl<T> AtomicPtr<T> {\n /// ```\n #[inline]\n #[stable(feature = \"atomic_try_update\", since = \"1.95.0\")]\n- #[cfg(target_has_atomic = \"8\")]\n+ #[cfg(target_has_atomic = \"ptr\")]\n #[cfg_attr(miri, ... |
huggingface/transformers | 44,884 | Add missing dunder methods to `SizeDict` | Some libraries that use Transformers (i.e. vLLM) use `|` on the `size` config.
This PR adds `__or__` and `__ror__` so that the following works:
```console
$ {"longest_edge": 20} | SizeDict(height=10, width=20)
{'longest_edge': 20, 'height': 10, 'width': 20}
$ SizeDict(height=10, width=20) | {"longest_edge": 20... | 884333368ff329090c73bd00e57996727f301de3 | 7cd9b985e0698d4f625a18be0125231b6b930390 | 13 | medium | [
{
"filename": "src/transformers/image_utils.py",
"patch": "@@ -1001,3 +1001,17 @@ def __eq__(self, other):\n getattr(other, f.name) for f in fields(self)\n )\n return NotImplemented\n+\n+ def __or__(self, other) -> \"SizeDict\":\n+ if isinstance(other, dict | Si... |
electron/electron | 50,506 | fix: [a11y] fire AXMenuOpened event when ARIA menu is added to DOM | Backport of #50377
See that PR for details.
Notes: Fixed an accessibility issue where the AXMenuOpened event was not fired on menu creation.
| null | cbae32aac671963c01f14349bfc5c96fd315cfa2 | null | low | [
{
"filename": "patches/chromium/.patches",
"patch": "@@ -147,3 +147,4 @@ fix_update_dbus_signal_signature_for_xdg_globalshortcuts_portal.patch\n fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch... |
vercel/next.js | 91,353 | disable sub shell generation test outside of adapter | These tests have started failing in deploy mode in environments outside of the new Vercel adapter. Shell related behavior is changing as part of the new `partialFallbacks` flag and will not be backported to the old CLI, so this gates the test to ensure it runs in the right deployment environment. | null | cd49df2d22dacdbf72297990d7333ccb4cd45907 | null | low | [
{
"filename": "test/e2e/app-dir/sub-shell-generation-middleware/sub-shell-generation-middleware.test.ts",
"patch": "@@ -3,9 +3,14 @@ import * as cheerio from 'cheerio'\n import { getCacheHeader, retry } from 'next-test-utils'\n import { computeCacheBustingSearchParam } from 'next/dist/shared/lib/router/util... |
facebook/react | 35,471 | [Flight] Allow cyclic references to be serialized when unwrapping lazy elements | When `renderModelDestructive` unwraps a lazy element and subsequently calls `renderModelDestructive` again with the resolved model, we should preserve the parent connection so that cyclic references can be serialized properly. This can occur in an advanced scenario where the result from the Flight Client is serialized ... | ba5b843692519a226347aecfb789d90fcb24b4bc | 6baff7ac763c475087ab5ebf7eef5d0b9f4436df | 28 | medium | [
{
"filename": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMEdge-test.js",
"patch": "@@ -321,6 +321,74 @@ describe('ReactFlightDOMEdge', () => {\n expect(result).toEqual('<span>Client Component</span>');\n });\n \n+ it('should resolve cyclic references in client component props after... |
ollama/ollama | 13,877 | fix: add -O3 optimization to CGO flags | CGO_CFLAGS and CGO_CXXFLAGS were being set without optimization flags, which overrides Go's default -O2 and results in unoptimized C++ code.
This caused performance degradation in release builds compared to local `go build` which uses the default optimization.
- build_darwin.sh: add -O3 to CGO_CFLAGS and CGO_CXXF... | null | f3b476c59280f97e49bb72fde333a2fccd27e1b1 | null | low | [
{
"filename": "Dockerfile",
"patch": "@@ -169,8 +169,10 @@ COPY . .\n RUN git clone --depth 1 --branch \"$(cat MLX_VERSION)\" https://github.com/ml-explore/mlx-c.git build/_deps/mlx-c-src\n ARG GOFLAGS=\"'-ldflags=-w -s'\"\n ENV CGO_ENABLED=1\n-ENV CGO_CFLAGS=\"-I/go/src/github.com/ollama/ollama/build/_deps... |
huggingface/transformers | 44,874 | Fix `layer_types` type hint for `AFMoE` and `Llama4` | `Llama4`'s was incorrect and causing `StrictDataclassFieldValidationErrors`.
`AFMoE`'s was was fine but now it's more specific. | f4ed5b8d3600eb302c0031129fe51684ae004c8d | 1229e90d46532f334f3c679006bee34ed502c123 | 8 | medium | [
{
"filename": "src/transformers/models/afmoe/configuration_afmoe.py",
"patch": "@@ -87,7 +87,7 @@ class AfmoeConfig(PreTrainedConfig):\n output_router_logits: bool = False\n global_attn_every_n_layers: int | None = 4\n sliding_window: int | None = 1024\n- layer_types: list | None = None\n+ ... |
electron/electron | 50,377 | fix: [a11y] fire AXMenuOpened event when ARIA menu is added to DOM | #### Description of Change
Fixes upstream bug https://issues.chromium.org/issues/40794596
This PR attempts to fix a long-standing bug with screen readers, where AXMenuOpened is not fired when an element with a role of "menu" is created and added to the DOM. If the DOM element exists and is toggled to be visible (... | 27edd6e21c976ef62ac81af59860dc7bad665242 | a839fb94aa9f56e865857e3b853d4a62f4d93144 | 7 | medium | [
{
"filename": "patches/chromium/.patches",
"patch": "@@ -148,3 +148,4 @@ feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n fix_use_fresh_lazynow_for_onendworkitemimpl_after_didruntask.patch\n fix_pulseaudio_stream_and_icon_name... |
ollama/ollama | 14,077 | qwen3next: avoid inplace sigmoid for shared gate | Fixes https://github.com/ollama/ollama/issues/14076 | 77eb2ca619f97e0ae1b6397bd2ad8f1acf63434c | d25535c3f3d59331755553ece7482b9572d4edb5 | 6 | medium | [
{
"filename": "ml/backend.go",
"patch": "@@ -175,6 +175,7 @@ type Tensor interface {\n \tSILU(ctx Context, up ...Tensor) Tensor\n \tRELU(ctx Context, up ...Tensor) Tensor\n \tSigmoid(ctx Context) Tensor\n+\tSigmoidOut(ctx Context) Tensor\n \n \t// AlphaLimitSILU is a variant of SILU that clamps the input to... |
ollama/ollama | 14,080 | ollamarunner: Fix off by one error with numPredict | When numPredict is set, the user will receive one less token than the requested limit. In addition, the stats will incorrectly show the number of tokens returned as the limit. In cases where numPredict is not set, the number of tokens is reported correctly.
This occurs because numPredict is checked when setting up t... | f7102ba8262a69d5346350ea1f0b8d2802f13dc2 | c61023f5548f61651b7fd04393e2a93430f89a71 | 4 | medium | [
{
"filename": "integration/basic_test.go",
"patch": "@@ -144,3 +144,47 @@ func TestUnicodeModelDir(t *testing.T) {\n \t}\n \tChatTestHelper(ctx, t, req, blueSkyExpected)\n }\n+\n+// TestNumPredict verifies that when num_predict is set, the model generates\n+// exactly that many tokens. It uses logprobs to c... |
huggingface/transformers | 44,866 | Align lfm2 cache to other mamba caches | # What does this PR do?
As per the title | 7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca | cef283004847f44c2c07e48670ba524b7cb2ac24 | 11 | medium | [
{
"filename": "src/transformers/models/lfm2/modeling_lfm2.py",
"patch": "@@ -179,8 +179,10 @@ def __init__(\n self.max_batch_size = max_batch_size\n self.layer_types = config.layer_types\n self.first_attention_layer = self.layer_types.index(\"full_attention\")\n+ self.last_con... |
rust-lang/rust | 154,612 | Add a test for a now fixed ICE with `offset_of!()` | Adds a test for rust-lang/rust#125805, which was an ICE with `offset_of!()` on a field with the type of a trait object missing `dyn` and a required lifetime parameter.
Closes rust-lang/rust#125805.
| null | bbeec421ea9448a475d2e411a5844d7aaf51b77a | null | low | [
{
"filename": "tests/ui/offset-of/offset-of-unsized-trait-object-missing-lifetime.rs",
"patch": "@@ -0,0 +1,20 @@\n+//@ edition:2021\n+// Regression test for #125805.\n+// ICE when using `offset_of!` on a field whose type is a bare trait object\n+// with a missing lifetime parameter.\n+\n+trait X<'a> {}\n+\... |
facebook/react | 35,532 | [DevTools] Stop setting unused global variables | We no longer set the following globals since they're not read by DevTools. It also doesn't look like they had any meaningful values anymore which was hidden by missing Flow coverage.
- `__REACT_DEVTOOLS_APPEND_COMPONENT_STACK__`
- `__REACT_DEVTOOLS_BREAK_ON_CONSOLE_ERRORS__`
- `__REACT_DEVTOOLS_SHOW_INLINE_WARNINGS_... | 01c4d03d841b2695bf889ddeddc722b65f82031a | bef88f7c115536b534f532f8b03c55e3697486c7 | 1 | medium | [
{
"filename": "packages/react-devtools-inline/src/backend.js",
"patch": "@@ -6,7 +6,10 @@ import {initBackend} from 'react-devtools-shared/src/backend';\n import {installHook} from 'react-devtools-shared/src/hook';\n import setupNativeStyleEditor from 'react-devtools-shared/src/backend/NativeStyleEditor/set... |
nodejs/node | 60,379 | test,crypto: fix conditional SHA3-* skip on BoringSSL | as title suggests | null | 790489c5a96d8981e999a49eab297f46fd6d70ab | null | low | [
{
"filename": "test/parallel/test-webcrypto-sign-verify-rsa.js",
"patch": "@@ -241,13 +241,13 @@ async function testSaltLength(keyLength, hash, hLen) {\n ['SHA-256', 32],\n ['SHA-384', 48],\n ['SHA-512', 64],\n- ['SHA3-256', 32],\n- ['SHA3-384', 48],\n- ['SHA3-512', 64],\n+ ... |
facebook/react | 35,504 | [DevTools] Clear element inspection if host element not owned by any renderer is selected | Stacked on https://github.com/facebook/react/pull/35503
If you click outside a React root in the Elements panel, we want to give eedback that no selection is possible so we clear the selection. Otherwise clicking outside a React root is indistinguishable from clicking a different host node that leads to the same sel... | cbc4d4066333cb1a6736b93df4e0b5ff5936c849 | 01c4d03d841b2695bf889ddeddc722b65f82031a | 1 | medium | [
{
"filename": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -330,6 +330,7 @@ function createElementsInspectPanel() {\n inspectedElementPortalContainer = portal.container;\n if (inspectedElementPortalContainer != null && render) {\n ensureInitialHTMLIsCleared(inspec... |
ollama/ollama | 14,057 | cmd: helpful error message for remote models | When trying to use cloud model with OLLAMA_HOST="ollama.com" while not signed in, a helpful error message is displayed. This should be the same experience for models which specify a remote instance.
Before:
```bash
❯ OLLAMA_HOST=ollama.com ollama run deepseek-v3.1:671b
You need to be signed in to Ollama to run Cl... | a6355329bf4a39ecfacdcdad6f39657ea1671b4b | c323161f24710d4c8ddaed440c6028b650ffb167 | 8 | medium | [
{
"filename": "cmd/cmd.go",
"patch": "@@ -367,14 +367,25 @@ func loadOrUnloadModel(cmd *cobra.Command, opts *runOptions) error {\n \t\treturn err\n \t} else if info.RemoteHost != \"\" {\n \t\t// Cloud model, no need to load/unload\n+\n+\t\tisCloud := strings.HasPrefix(info.RemoteHost, \"https://ollama.com\"... |
electron/electron | 50,484 | fix: hex-encode Windows notification icon temp filenames | Backport of #50454
See that PR for details.
Notes: Fixed a bug where Windows notification icons could fail to save because their temporary filenames contained invalid characters.
| null | 44f02f61ff4012221c3b55c1796771bb889d2880 | null | low | [
{
"filename": "shell/browser/notifications/win/notification_presenter_win.cc",
"patch": "@@ -72,7 +72,8 @@ std::wstring NotificationPresenterWin::SaveIconToFilesystem(\n \n std::string filename;\n if (origin.is_valid()) {\n- filename = base::SHA1HashString(origin.spec()) + \".png\";\n+ const auto ... |
facebook/react | 35,519 | Typecheck React DevTools extension main script | Notably we ignore the passed theme in `onThemeChanged` and just do a plain re-render (introduced in https://github.com/facebook/react/pull/33992).
Remove emission of unused `extensionEditorPaneShown` and `extensionEditorPaneHidden` events (added in https://github.com/facebook/react/issues/33968). | fae15df40ef878fda68756176d501a4cb83cc9bc | cbc4d4066333cb1a6736b93df4e0b5ff5936c849 | 8 | medium | [
{
"filename": "packages/react-devtools-extensions/src/main/index.js",
"patch": "@@ -1,6 +1,14 @@\n /* global chrome */\n-\n+/** @flow */\n+\n+import type {RootType} from 'react-dom/src/client/ReactDOMRoot';\n+import type {FrontendBridge, Message} from 'react-devtools-shared/src/bridge';\n+import type {\n+ ... |
ollama/ollama | 14,075 | qwen3next: fix issue in delta net | `gDiffExp` was being broadcast across the wrong axis when multiplying with k. This fix reshapes `gDiffExp` to [1, chunkSize, nChunks, ...] | 77eb2ca619f97e0ae1b6397bd2ad8f1acf63434c | 255579aaa7d21cf7eb93863c7d754ae02cd81985 | 4 | medium | [
{
"filename": "model/models/qwen3next/deltanet.go",
"patch": "@@ -406,8 +406,10 @@ func (gdn *GatedDeltaNet) deltaNetChunked(\n \tgDiff := gCumsum.Neg(ctx).Add(ctx, gLast)\n \tgDiffExp := gDiff.Exp(ctx)\n \n-\t// key_gdiff = k * exp(g_diff)\n-\tkeyGDiff := k.Mul(ctx, gDiffExp)\n+\t// Reshapes g_diff_exp to ... |
vercel/next.js | 91,305 | Turbopack: use keyed cell access for AsyncModulesInfo | ### What?
Switch `AsyncModulesInfo` to use `cell = "keyed"` and per-key access (`is_async()`) instead of reading the full `FxHashSet` via `.await?`.
### Why?
`AsyncModulesInfo` is a large set that gets read from many call sites. With the default cell, any change to any module's async status invalidates all readers. ... | null | 4cd8a9890f93d1b79856f9957dd3d3b20fdf1e00 | null | low | [
{
"filename": "turbopack/crates/turbopack-core/src/chunk/chunk_group.rs",
"patch": "@@ -81,7 +81,7 @@ pub async fn make_chunk_group(\n )\n .await?;\n \n- let async_modules_info = module_graph.async_module_info().await?;\n+ let async_module_info = module_graph.async_module_info();\n \n // A... |
facebook/react | 35,518 | [Fiber] fix useId tracking on replay | When Fiber replays work after suspending and resolving in a microtask it stripped the Forked flag from Fibers because this flag type was not considered a Static flag. The Forked nature of a Fiber is not render dependent and should persist after unwinding work. By making this change the replay correctly generates the ne... | 3e1abcc8d7083a13adf4774feb0d67ecbe4a2bc4 | f0fbb0d199c166a634084c66a7cf9486ebb64bc1 | 5 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -9478,4 +9478,159 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n </div>,\n );\n });\n+\n+ it('useId is consistent for siblings when component suspends with nested lazy... |
rust-lang/rust | 154,580 | Split AttributeParserError Diagnostic implementation into subfunctions | <!-- homu-ignore:start -->
<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a related
tracking issue or there are none, feel free to ignore this.
This PR will get automatically assigned to a reviewer. In case y... | null | 6188955b7622bf644e0ea07d6092937e451f7892 | null | low | [
{
"filename": "compiler/rustc_attr_parsing/src/session_diagnostics.rs",
"patch": "@@ -594,29 +594,108 @@ pub(crate) struct AttributeParseError<'a> {\n pub(crate) suggestions: Vec<String>,\n }\n \n+impl<'a> AttributeParseError<'a> {\n+ fn render_expected_specific_argument<G>(\n+ &self,\n+ ... |
facebook/react | 35,521 | [Fiber] Instrument the lazy initializer thenable in all cases | When a lazy element or component is initialized a thenable is returned which was only be conditionally instrumented in dev when asyncDebugInfo was enabled. When instrumented these thenables can be used in conjunction with the SuspendOnImmediate optimization where if a thenable resolves before the stack unwinds we can c... | f0fbb0d199c166a634084c66a7cf9486ebb64bc1 | db71391c5c70dc113560d1c23d0b6548604d827f | 5 | medium | [
{
"filename": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -9551,33 +9551,20 @@ Unfortunately that previous paragraph wasn't quite long enough so I'll continue\n \n // Create fresh lazy components for CLIENT\n let resolveClientInner;\n- const clientLazyInner = React... |
huggingface/transformers | 44,876 | Fix nemotron_h modular | # What does this PR do?
| null | 8dc7a52d766efe76c121c0654a5d24d633bffe9e | null | low | [
{
"filename": "src/transformers/models/nemotron_h/modeling_nemotron_h.py",
"patch": "@@ -1083,7 +1083,6 @@ class NemotronHPreTrainedModel(PreTrainedModel):\n _keep_in_fp32_modules_strict = [\n \"e_score_correction_bias\",\n ]\n- _tied_weights_keys = {}\n _keys_to_ignore_on_load_unexpe... |
ollama/ollama | 14,072 | runner: discard compute results if sequence replaced mid-batch | If a sequence is replaced in s.seqs while a batch is computing, the old logits can be decoded into the new sequence. This change rechecks the sequence pointer after compute and skips decoding for replaced entries, preventing stale results from being applied. | 3590fbfa761ad1d97bbd092baec58b0b8022fef4 | f7102ba8262a69d5346350ea1f0b8d2802f13dc2 | 20 | medium | [
{
"filename": "runner/ollamarunner/runner.go",
"patch": "@@ -740,7 +740,11 @@ func (s *Server) computeBatch(activeBatch batchState) {\n \t\tif seq == nil || nextBatchTokens[i] == nil {\n \t\t\tcontinue\n \t\t}\n-\n+\t\t// If the sequence was replaced while this batch was computing, discard results.\n+\t\tif... |
facebook/react | 35,510 | Optimize gesture by allowing the original work in progress tree to be a suspended commit | Stacked on #35487.
This is slightly different because the first suspended commit is on blockers that prevent us from committing which still needs to be resolved first.
If a gesture lane has to be rerendered while the gesture is happening then it reenters this state with a new tree. (Currently this doesn't happen ... | 35a81cecf7d5be11dbf589575b1c93fdf224ba4a | 4cf906380d5d3282f1df3c8c34cf642e86a3a0a3 | 2 | medium | [
{
"filename": "fixtures/view-transition/src/components/SwipeRecognizer.js",
"patch": "@@ -114,16 +114,17 @@ export default function SwipeRecognizer({\n );\n }\n function onGestureEnd(changed) {\n- // Reset scroll\n- if (changed) {\n- // Trigger side-effects\n- startTransition(action)... |
nodejs/node | 62,218 | crypto: reject ML-KEM/ML-DSA PKCS#8 import without seed in SubtleCrypto | Reject importing ML-KEM and ML-DSA PKCS#8 private keys that do not include a seed, throwing NotSupportedError.
Also add tests for importing PKCS#8 keys with a mismatched expanded key.
Refs: https://redirect.github.com/WICG/webcrypto-modern-algos/pull/34
Note: both of these algorithms are marked as https://gith... | null | 8ccbe8e38430d278455ac2ed3a5e2aa4c7acfcce | null | low | [
{
"filename": "doc/api/webcrypto.md",
"patch": "@@ -1260,6 +1260,10 @@ The {CryptoKey} (secret key) generating algorithms supported include:\n <!-- YAML\n added: v15.0.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62218\n+ description: Importing ML-DSA and ML-KEM... |
electron/electron | 50,487 | fix: register `PrintDialogLinuxFactory` on Linux | Backport of #50430
See that PR for details.
Notes: Fixed printing on Linux failing with "Invalid printer settings". | null | ba469424634ab812950aab0690c1916a465bf5a2 | null | low | [
{
"filename": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -127,6 +127,10 @@\n #include \"shell/common/plugin_info.h\"\n #endif // BUILDFLAG(ENABLE_PLUGINS)\n \n+#if BUILDFLAG(ENABLE_PRINTING)\n+#include \"components/printing/common/print_dialog_linux_factory.h\"\n+#endif\n+\n namespace ele... |
facebook/react | 35,487 | Entangle Gesture revert commit with the corresponding Action commit | Stacked on #35486.
When a Gesture commits, it leaves behind work on a Transition lane (`revertLane`). This entangles that lane with whatever lane we're using in the event that cancels the Gesture. This ensures that the revert and the result of any resulting Action commits as one batch. Typically the Action would app... | 4028aaa50c92f1a546cd1aeac421bfabd66bef68 | 35a81cecf7d5be11dbf589575b1c93fdf224ba4a | 1 | medium | [
{
"filename": "packages/react-reconciler/src/ReactFiberGestureScheduler.js",
"patch": "@@ -11,9 +11,19 @@ import type {FiberRoot} from './ReactInternalTypes';\n import type {GestureOptions} from 'shared/ReactTypes';\n import type {GestureTimeline, RunningViewTransition} from './ReactFiberConfig';\n import t... |
vercel/next.js | 91,343 | Enable thin LTO for release builds | # What
Add `lto = "thin"` to the workspace-level `[profile.release]` in `Cargo.toml`.
# Why
Thin LTO enables cross-crate optimization at link time, improving runtime
performance of the final artifacts (next-napi-bindings native module,
turbopack-cli binary, and benchmarks) without the full build time cost of... | null | 2b4bde2ebbe8a6b6358b694428cc5c69cff69350 | null | low | [
{
"filename": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -21,7 +21,6 @@ env:\n NAPI_CLI_VERSION: 2.18.4\n TURBO_VERSION: 2.8.11\n NODE_LTS_VERSION: 20\n- CARGO_PROFILE_RELEASE_LTO: 'true'\n TURBO_TEAM: 'vercel'\n TURBO_CACHE: 'remote:rw'\n # Without this environment variable, rust-l... |
nodejs/node | 62,321 | doc: deprecate CryptoKey use in node:crypto | Refs: https://github.com/nodejs/node/issues/55293 | ac6375417a5305433c735c781d0f6d1eaec9f2ba | 052aec7127f40f8b70fc185bf6091f10a259d376 | 20 | medium | [
{
"filename": "doc/api/deprecations.md",
"patch": "@@ -4481,6 +4481,42 @@ const server = http2.createSecureServer({\n });\n ```\n \n+### DEP0203: Passing `CryptoKey` to `node:crypto` APIs\n+\n+<!-- YAML\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/62321\n+ descrip... |
rust-lang/rust | 154,419 | Take first task group for further execution | Continuing from https://github.com/rust-lang/rust/pull/153768#discussion_r2938828363.
I thought that storing a first group of tasks for immediate execution instead of pushing and immediately poping it from rayon's local task queue in par_slice would avoid overwhelming work stealing potentially blocking the original ... | null | 8427445bde1f553be8d64a79263c06ae24abeccf | null | low | [
{
"filename": "compiler/rustc_data_structures/src/sync/parallel.rs",
"patch": "@@ -145,7 +145,9 @@ fn par_slice<I: DynSend>(\n \n const MAX_GROUP_COUNT: usize = 128;\n let group_size = items.len().div_ceil(MAX_GROUP_COUNT);\n- let groups = items.chunks_mut(group_size);\n+ let m... |
huggingface/transformers | 44,597 | Fix CircleCI summary report not showing due to missing dependency | # What does this PR do?
Our beautiful Dashboard is missing ..... damm | null | acdb5e13192608a3a04753169a940e06ee5b69ae | null | low | [
{
"filename": ".circleci/create_circleci_config.py",
"patch": "@@ -64,6 +64,7 @@ def to_dict(self):\n steps.extend(\n [\n \"checkout\",\n+ {\"run\": \"pip install requests || true\"},\n {\"run\": \"\"\"while [[ $(curl --l... |
electron/electron | 50,488 | fix: fall back to default DPI when GTK returns 0 on Linux | Backport of #50453
See that PR for details.
Notes: none. | null | 904fbbd598018ff785320e6a0e0b2e8d094451e7 | null | low | [
{
"filename": "shell/browser/printing/printing_utils.cc",
"patch": "@@ -59,6 +59,8 @@ gfx::Size GetDefaultPrinterDPI(const std::u16string& device_name) {\n GtkPrintSettings* print_settings = gtk_print_settings_new();\n int dpi = gtk_print_settings_get_resolution(print_settings);\n g_object_unref(print... |
ollama/ollama | 14,040 | server: optimize chatPrompt to reduce tokenization calls | Change the truncation algorithm to start with all messages and remove from the front until it fits, rather than adding messages one at a time from the back. This reduces tokenization calls from O(n) to O(1) in the common case where all messages fit in context. | null | df70249520fda991a83f607d485fbf4e64cfe1fd | null | low | [
{
"filename": "server/prompt.go",
"patch": "@@ -27,14 +27,12 @@ func chatPrompt(ctx context.Context, m *Model, tokenize tokenizeFunc, opts *api.\n \t// Clip images are represented as 768 tokens, each an embedding\n \timageNumTokens := 768\n \n-\tn := len(msgs) - 1\n-\t// in reverse, find all messages that f... |
facebook/react | 35,511 | Defer useDeferredValue updates in Gestures | If an initial value is specified, then it's always used regardless as part of the gesture render.
If a gesture render causes an update, then previously that was not treated as deferred and could therefore be blocking the render. However, a gesture is supposed to flush synchronously ideally. Therefore we should consi... | null | eac3c9553708cbf53a0c148b45e1de1ab6f84b12 | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberLane.js",
"patch": "@@ -621,7 +621,8 @@ export function includesOnlyRetries(lanes: Lanes): boolean {\n export function includesOnlyNonUrgentLanes(lanes: Lanes): boolean {\n // TODO: Should hydration lanes be included here? This function is only\n //... |
vercel/next.js | 92,028 | Rename SingleModuleReference::asset to SingleModuleReference::module | The field holds a Module, not a generic asset. This aligns the naming with the type it actually stores. | 548fbca6df69d771b1112b6de9c3eb8380dcf02e | 04f137e40bbe8c3a7ac98eb082024ad875b759f3 | 18 | medium | [
{
"filename": "turbopack/crates/turbopack-core/src/reference/mod.rs",
"patch": "@@ -61,30 +61,27 @@ impl ModuleReferences {\n #[derive(ValueToString)]\n #[value_to_string(self.description)]\n pub struct SingleModuleReference {\n- asset: ResolvedVc<Box<dyn Module>>,\n+ module: ResolvedVc<Box<dyn Module... |
huggingface/transformers | 44,860 | [Mistral] Fix query scaling for Mistral4 and Ministral3 | # What does this PR do?
As per the title. As discussed offline with the Mistral team, the scaling applied to the query should not be the absolute one (old `cache_position`), but the actual `position_ids`, taking into account padding, packed format in case of continuous batching etc | 7805ec28c1b374fa1d4ffc77ed5e8c4cb1322bca | b96f8a98965a744ef5137dd25efd2e280cddcc25 | 6 | medium | [
{
"filename": "src/transformers/models/ministral3/modeling_ministral3.py",
"patch": "@@ -104,7 +104,7 @@ def eager_attention_forward(\n \n def get_llama_4_attn_scale(positions_ids: torch.Tensor, beta: float, max_position_embeddings: int) -> torch.Tensor:\n scaling = 1 + beta * torch.log(1 + torch.floor(... |
nodejs/node | 62,307 | lib: make SubtleCrypto.supports enumerable | Per [WebIDL § 3.7.7](https://webidl.spec.whatwg.org/#js-operations), static operations use the same "define the operations" algorithm as regular operations:
> To **define the operations** *operations* of interface or namespace *definition* on *target*, given realm *realm*, run the following steps:
>
> 1. For each ... | null | 69fdff9d30f4794f503a1700d16b07d20455248f | null | low | [
{
"filename": "lib/internal/crypto/webcrypto.js",
"patch": "@@ -1894,6 +1894,10 @@ ObjectDefineProperties(\n },\n });\n \n+ObjectDefineProperties(SubtleCrypto, {\n+ supports: kEnumerableProperty,\n+});\n+\n module.exports = {\n Crypto,\n CryptoKey,",
"additions": 4,
"deletions": 0
}
] |
facebook/react | 35,123 | Improve the detection of changed hooks | ## Summary
cc @hoxyq
Fixes https://github.com/facebook/react/issues/28584. Follow up to PR: https://github.com/facebook/react/pull/34547
This PR updates getChangedHooksIndices to account for the fact that `useSyncExternalStore`, `useTransition`, `useActionState`, `useFormState` internally mounts more than one... | 5aec1b2a8d1bcafb43a7ddb64dc37eacad081bea | 53daaf5aba1827c2f6c6e01ae1318c36f5a1902e | 6 | medium | [
{
"filename": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -467,9 +467,11 @@ function useSyncExternalStore<T>(\n // useSyncExternalStore() composes multiple hooks internally.\n // Advance the current hook index the same number of times\n // so that subsequent hooks have the right ... |
rust-lang/rust | 154,134 | fix: guard paren-sugar pretty-printing on short trait args | <!-- homu-ignore:start -->
<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a related
tracking issue or there are none, feel free to ignore this.
This PR will get automatically assigned to a reviewer. In case y... | null | 29c210d5bdb474e76fb8b95ad78ec1cfca204f65 | null | low | [
{
"filename": "compiler/rustc_middle/src/ty/print/pretty.rs",
"patch": "@@ -3327,7 +3327,8 @@ define_print_and_forward_display! {\n TraitRefPrintSugared<'tcx> {\n if !with_reduced_queries()\n && p.tcx().trait_def(self.0.def_id).paren_sugar\n- && let ty::Tuple(args) = self.... |
ollama/ollama | 14,055 | cmd: open browser on `ollama signin` when available | When a browser is available open it to the connect URL automatically when running the `ollama signin` command. Browser is not opened in any other unauthorized scenario.
```bash
❯ ollama signin
You need to be signed in to Ollama to run Cloud models.
If your browser did not open, navigate to:
https://ollama.... | f92e362b2e1b25ab83e0d1ecd6d0f8b073abfebc | a6355329bf4a39ecfacdcdad6f39657ea1671b4b | 20 | medium | [
{
"filename": "cmd/cmd.go",
"patch": "@@ -29,6 +29,7 @@ import (\n \t\"github.com/containerd/console\"\n \t\"github.com/mattn/go-runewidth\"\n \t\"github.com/olekukonko/tablewriter\"\n+\t\"github.com/pkg/browser\"\n \t\"github.com/spf13/cobra\"\n \t\"golang.org/x/crypto/ssh\"\n \t\"golang.org/x/sync/errgrou... |
electron/electron | 50,453 | fix: fall back to default DPI when GTK returns 0 on Linux | #### Description of Change
`GetDefaultPrinterDPI()` creates a blank GtkPrintSettings and reads its resolution, which returns 0 for uninitialized settings. With DPI=0, `SetPrintableAreaIfValid()` computes a zero scale factor, producing empty page dimensions that fail `PrintMsgPrintParamsIsValid()`.
Fall back to kD... | null | f6b43cb0efe2f763631c9d0609ecaa92c62635a6 | null | low | [
{
"filename": "shell/browser/printing/printing_utils.cc",
"patch": "@@ -59,6 +59,8 @@ gfx::Size GetDefaultPrinterDPI(const std::u16string& device_name) {\n GtkPrintSettings* print_settings = gtk_print_settings_new();\n int dpi = gtk_print_settings_get_resolution(print_settings);\n g_object_unref(print... |
ollama/ollama | 7,888 | Enable index tracking for tools - openai api support | Closes https://github.com/ollama/ollama/issues/7881
Now able to use `client.beta.chat.completions.stream`
<img width="570" alt="image" src="https://github.com/user-attachments/assets/32c48aca-b23a-40b8-b32d-2fcb667d2d81">
| ce7455a8e1045ae12c5eaa9dc5bb5bdc84a098dc | 5f8051180e3b9aeafc153f6b5056e7358a939c88 | 3 | medium | [
{
"filename": "api/types.go",
"patch": "@@ -146,6 +146,7 @@ type ToolCall struct {\n }\n \n type ToolCallFunction struct {\n+\tIndex int `json:\"index,omitempty\"`\n \tName string `json:\"name\"`\n \tArguments ToolCallFunctionArguments `json:\"arguments\"`\n... |
ollama/ollama | 14,035 | cmd: launch defaults | 1. Collect existing models from client.List() — strip :latest from display names, track which are remote (cloud) vs local
2. Tag existing models that match a recommendation with "recommended" description
3. Append recommended models not already present (checking both name and name:latest), with "recommended" de... | 75b1dddf910706bb548d6b23e416528f2fc74506 | 0398b24b42df5c4da86d59606f5af16b8edddaa7 | 1 | medium | [
{
"filename": "cmd/config/integrations.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"time\"\n \n \t\"github.com/ollama/ollama/api\"\n+\t\"github.com/ollama/ollama/progress\"\n \t\"github.com/spf13/cobra\"\n )\n \n@@ -49,6 +50,15 @@ var integrations = map[string]Runner{\n \t\"openclaw\": &Openclaw{},\n }\n... |
vercel/next.js | 92,014 | Use RcStr directly in napi(object) structs instead of converting to String | ### What?
Replace `String` fields in `#[napi(object)]` structs within `crates/next-napi-bindings/` with `RcStr`, and remove the corresponding unnecessary `.to_string()` / `.into_owned()` conversions at the NAPI boundary.
Affected structs and fields:
| File | Struct | Fields |
|---|---|---|
| `utils.rs` | `NapiIssue`... | null | d84e3bb56ecfdd9ff6ab5ee479e85be2780b8ba9 | null | low | [
{
"filename": "crates/next-napi-bindings/src/next_api/endpoint.rs",
"patch": "@@ -13,6 +13,7 @@ use next_api::{\n },\n };\n use tracing::Instrument;\n+use turbo_rcstr::RcStr;\n use turbo_tasks::{Completion, Effects, OperationVc, ReadRef, Vc};\n use turbopack_core::{\n diagnostics::PlainDiagnostic,\n... |
nodejs/node | 62,302 | doc: enhance clarification about the main field | removed "this" to enhance sentence flow.
because a reader might assume that **this** is referencing the **main** field which is the title of the section.
| null | f84366d33943fee94756655df17f4d38dc8519da | null | low | [
{
"filename": "doc/api/packages.md",
"patch": "@@ -1012,7 +1012,7 @@ added: v0.4.0\n The `\"main\"` field defines the entry point of a package when imported by name\n via a `node_modules` lookup. Its value is a path.\n \n-When a package has an [`\"exports\"`][] field, this will take precedence over the\n+T... |
facebook/react | 35,485 | Add the suffix to cancelled view transition names | When a View Transition might not need to update we add it to a queue. If the parent are able to be reverted, we then cancel the already started view transitions. We do this by adding an animation that hides the "old" state and remove the view transition name from the old state.
There was a bug where if you have more... | null | 4a3d993e52fd6bcadd9c3029c75df3c22684f69c | null | low | [
{
"filename": "packages/react-reconciler/src/ReactFiberCommitViewTransitions.js",
"patch": "@@ -711,7 +711,11 @@ function measureViewTransitionHostInstancesRecursive(\n }\n viewTransitionCancelableChildren.push(\n instance,\n- oldName,\n+ viewTransitionHostInstanc... |
huggingface/transformers | 43,750 | enable tp for benchmark | enable tp in benchmark_v2, to ensure large model could run. | null | 62c46ce2ff6e8ed18592eb2c2ac53456689a2013 | null | low | [
{
"filename": "benchmark_v2/framework/benchmark_config.py",
"patch": "@@ -69,6 +69,7 @@ def __init__(\n attn_implementation: str = \"eager\",\n compile_kwargs: dict[str, Any] | None = None,\n kernelize: bool = False,\n+ tp_plan: str | dict[str, str] | None = None,\n na... |
rust-lang/rust | 154,518 | Panic in Hermit clock_gettime | Follow-up to rust-lang/rust#154234.
r? @Mark-Simulacrum
| null | 95acbdfd8f95dcb7e995052dfdc128fd7a417fc6 | null | low | [
{
"filename": "library/std/src/sys/time/hermit.rs",
"patch": "@@ -6,7 +6,7 @@ use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Timespec {\n let mut t = hermit_abi::timespec { tv_sec: 0, tv_nsec: 0 };\n- let _ = unsafe { hermit_abi::clock_gettime(clock, &raw mut t) };\... |
facebook/react | 35,501 | [test] Fix DevTools regression tests | Fixes
> IgnoreMe suspended while rendering, but no fallback UI was specified.
-- https://github.com/facebook/react/actions/runs/20886558894/job/60010693969
Regressed in https://github.com/facebook/react/pull/35456 because in React 17 we can't suspend the root.
It's interesting to test both 17 (because Su... | 5aec1b2a8d1bcafb43a7ddb64dc37eacad081bea | 8a83073753125156d62db14726e8527706411962 | 1 | medium | [
{
"filename": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -7,7 +7,12 @@\n * @flow\n */\n \n+import semver from 'semver';\n+\n import {getVersionedRenderImplementation} from './utils';\n+import {ReactVersion} from '../../../../ReactVersions';\n+\n+const ReactVersionTestingAga... |
electron/electron | 50,490 | fix: fall back to default DPI when GTK returns 0 on Linux | Backport of #50453
See that PR for details.
Notes: none. | null | 602119ea254ef40483797d8504a767ccbf5392dd | null | low | [
{
"filename": "shell/browser/printing/printing_utils.cc",
"patch": "@@ -59,6 +59,8 @@ gfx::Size GetDefaultPrinterDPI(const std::u16string& device_name) {\n GtkPrintSettings* print_settings = gtk_print_settings_new();\n int dpi = gtk_print_settings_get_resolution(print_settings);\n g_object_unref(print... |
rust-lang/rust | 154,322 | feat: reimplement `hash_map!` macro | <!-- homu-ignore:start -->
<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a related
tracking issue or there are none, feel free to ignore this.
This PR will get automatically assigned to a reviewer. In case y... | 51816efcc02d36d6f4c1a9149f655869ee6bc58d | 880fe193a1efacff4ea932623d49400d533d39d9 | 11 | medium | [
{
"filename": "library/std/src/lib.rs",
"patch": "@@ -337,6 +337,8 @@\n #![feature(formatting_options)]\n #![feature(funnel_shifts)]\n #![feature(generic_atomic)]\n+#![feature(hash_map_internals)]\n+#![feature(hash_map_macro)]\n #![feature(hasher_prefixfree_extras)]\n #![feature(hashmap_internals)]\n #![fea... |
electron/electron | 50,504 | fix: [a11y] fire AXMenuOpened event when ARIA menu is added to DOM | Backport of #50377
See that PR for details.
Notes: Fixed an accessibility issue where the AXMenuOpened event was not fired on menu creation.
| e02471eba056ac2bf1536afb68f2b2bd06679756 | f90dd8d6bd1bf722bdf081dfab36ca7787e39ce1 | 6 | medium | [
{
"filename": "patches/chromium/.patches",
"patch": "@@ -146,3 +146,4 @@ fix_set_correct_app_id_on_linux.patch\n fix_pass_trigger_for_global_shortcuts_on_wayland.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n fix_restore_sdk_inputs_cross-toolchain_deps_for_macos.patch\n+fix_fir... |
ollama/ollama | 14,034 | cmd/config: move config location | Moved from ~/.ollama/config/config.json to ~/.ollama/config.json | null | e1e80ffc3e80d5cafef1651aa4fb8516577fa024 | null | low | [
{
"filename": "cmd/config/config.go",
"patch": "@@ -6,6 +6,7 @@ import (\n \t\"encoding/json\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"log/slog\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"strings\"\n@@ -20,20 +21,73 @@ type config struct {\n }\n \n func configPath() (string, error) {\n+\thome, err := os.UserHomeDir()... |
vercel/next.js | 90,967 | Turbopack: Remove old macos-compress script | @wbinnssmith added these scripts a long time ago at my suggestion/urging, but I think they ended up bad for a couple reasons that were hard to foresee at the time:
- afsctool operates in-place and doesn't atomically write the compressed file, so if the process gets interrupted, your `target` directory is corrupted. ht... | null | 68dade46796df9d09cba076f318e7c7d360c0de4 | null | low | [
{
"filename": "contributing/core/developing.md",
"patch": "@@ -180,17 +180,3 @@ pnpm sweep\n ```\n \n It will also clean up other caches (pnpm store, cargo, etc.) and run `git gc` for you.\n-\n-### MacOS disk compression\n-\n-If you want to automatically use APFS disk compression on macOS for `node_modules/... |
nodejs/node | 52,000 | src: fix reading empty string views in Blob[De]serializer | The string writing/reading was intended for debugging info in snapshot, which had a CHECK_GT(length, 0) check, it then got repurposed for SEA resource writing/reading and turned into a helper for string views, but was not updated to handle empty views, causing occasional crash in the CI when the read is protected. This... | null | 1f193165b990190074faab34f503683148816d39 | null | low | [
{
"filename": "src/api/environment.cc",
"patch": "@@ -553,7 +553,9 @@ MaybeLocal<Value> LoadEnvironment(Environment* env,\n MaybeLocal<Value> LoadEnvironment(Environment* env,\n std::string_view main_script_source_utf8,\n EmbedderPreloadCal... |
huggingface/transformers | 44,564 | Fix glm dsa | # What does this PR do?
Fixes #44360
| null | 92c625889f6369cf73d19a2c62159b45c9bd6d98 | null | low | [
{
"filename": "src/transformers/models/glm_moe_dsa/modeling_glm_moe_dsa.py",
"patch": "@@ -216,7 +216,7 @@ def forward(\n \n # q·k^T per head: [B, S, H, D] @ [B, T, D]^T → [B, S, H, T]\n scores = torch.einsum(\"bshd,btd->bsht\", q.float(), k_cached.float()) * self.softmax_scale\n-\n+ ... |
electron/electron | 50,510 | ci: fix variable name when downloading previous object checkusms | #### 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
NOTE: PRS submitted without this template will be automatically closed.
-->
Follow-up t... | f4c4cd14ac8eebf4ed33d75ca4f9b35b0e013208 | f5bc6f7949d601e25d5470037797fbaf2fe716d0 | 18 | medium | [
{
"filename": ".github/actions/build-electron/action.yml",
"patch": "@@ -52,7 +52,7 @@ runs:\n if: ${{ (github.event_name == 'push' || github.event_name == 'pull_request') && inputs.is-asan != 'true' }}\n with:\n name: object_checksums_${{ inputs.artifact-platform }}_${{ inputs.target-ar... |
huggingface/transformers | 44,452 | Fix KeyError in convert_to_native_format for dict vocab | ## Fix KeyError in `convert_to_native_format` for dict vocab
Fixes #44451
### Problem
`AutoTokenizer.from_pretrained("vesteinn/ScandiBERT")` raises `KeyError: 0` in `convert_to_native_format`.
ScandiBERT's `tokenizer_config.json` specifies `tokenizer_class: "XLMRobertaTokenizer"`, which has `model = Unigram`. When ... | cecacd374f575ad7ffe37dcd69a98cf00b551011 | 25a91051ed7973a92b158f4fb7da1edb39b416ae | 4 | medium | [
{
"filename": "src/transformers/tokenization_utils_tokenizers.py",
"patch": "@@ -155,7 +155,7 @@ def convert_to_native_format(cls, trust_remote_code=False, **kwargs):\n if isinstance(vocab, list):\n vocab = list(map(tuple, vocab)) # TODO just for now\n elif c... |
facebook/react | 35,337 | Fix ViewTransition crash in Mobile Safari | Speculative fix to https://github.com/facebook/react/issues/35336 written by Claude.
I have verified that applying a similar patch locally to the repro from #35336 does fix the crash.
I'm not familiar enough with the underlying APIs to tell whether the fix is correct or sufficient. | null | 61331f3c9e9ea93d866273567d38e23ef4bc4c5b | null | low | [
{
"filename": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1996,26 +1996,6 @@ export function hasInstanceAffectedParent(\n return oldRect.height !== newRect.height || oldRect.width !== newRect.width;\n }\n \n-function cancelAllViewTransitionAnimations(scope: Element) {\n-... |
rust-lang/rust | 153,648 | Fix EII function aliases eliminated by LTO | Add EII function aliases to `llvm.compiler.used` so that LLVM's LTO passes do not eliminate them.
Fixes rust-lang/rust#153645
<!-- homu-ignore:start -->
<!--
If this PR is related to an unstable feature or an otherwise tracked effort,
please link to the relevant tracking issue here. If you don't know of a rela... | null | 4b2378286c5d8ae33c330837ec32b7df4266680f | null | low | [
{
"filename": "compiler/rustc_codegen_ssa/src/back/symbol_export.rs",
"patch": "@@ -199,6 +199,14 @@ fn exported_non_generic_symbols_provider_local<'tcx>(\n }))\n }\n \n+ symbols.extend(sorted.iter().flat_map(|&(&def_id, &info)| {\n+ tcx.codegen_fn_attrs(def_id).foreign_item_symbol_ali... |
ollama/ollama | 13,934 | anthropic: add InputTokens to streaming response | This PR adds `InputTokens` field into `Usage` field of response for streaming request to `/v1/messages` endpoint.
Additional details.
I wrote tiny HTTP-proxy script to collect tokens usage from Ollama's responses. For requests to `/v1/chat` endpoints it works fine. But for streaming variant for `/v1/messages` endpo... | null | 71896485fd85890756d3884605f451fbf052c2de | null | low | [
{
"filename": "anthropic/anthropic.go",
"patch": "@@ -211,6 +211,7 @@ type MessageDelta struct {\n \n // DeltaUsage contains cumulative token usage\n type DeltaUsage struct {\n+\tInputTokens int `json:\"input_tokens\"`\n \tOutputTokens int `json:\"output_tokens\"`\n }\n \n@@ -721,6 +722,7 @@ func (c *Strea... |
ollama/ollama | 13,983 | llm: Make "do load request" error message more informative | "do load request" basically means that the model failed to load, which can have many reasons. However, many people think this is a specific error and either report only this message or group together unrelated bugs. This replaces it with a more friendly and helpful message. | d11fbd2c603aad64535c5cecd6ee68a02d01aa0c | 6582f6da5c59b40bab3dcac646c17e3422a66460 | 2 | high | [
{
"filename": "llm/server.go",
"patch": "@@ -1201,7 +1201,8 @@ func (s *llmServer) initModel(ctx context.Context, req LoadRequest, operation Lo\n \n \tresp, err := http.DefaultClient.Do(r)\n \tif err != nil {\n-\t\treturn nil, fmt.Errorf(\"do load request: %w\", err)\n+\t\tslog.Error(\"do load request\", \"... |
electron/electron | 50,483 | fix: hex-encode Windows notification icon temp filenames | Backport of #50454
See that PR for details.
Notes: Fixed a bug where Windows notification icons could fail to save because their temporary filenames contained invalid characters.
| null | aedea576da3cc603620c7dea290626c31d6222c8 | null | low | [
{
"filename": "shell/browser/notifications/win/notification_presenter_win.cc",
"patch": "@@ -72,7 +72,8 @@ std::wstring NotificationPresenterWin::SaveIconToFilesystem(\n \n std::string filename;\n if (origin.is_valid()) {\n- filename = base::SHA1HashString(origin.spec()) + \".png\";\n+ const auto ... |
nodejs/node | 62,279 | doc(api): typo in environment variables | tiny typo in https://nodejs.org/docs/latest/api/environment_variables.html#programmatic-apis
<!--
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/bl... | null | 7ca5de7eda3cac94c0f39bdf1b3fabe291441352 | null | low | [
{
"filename": "doc/api/environment_variables.md",
"patch": "@@ -145,7 +145,7 @@ There following two functions allow you to directly interact with `.env` files:\n \n * [`process.loadEnvFile`][] loads an `.env` file and populates `process.env` with its variables\n \n-* [`util.parseEnv`][] parses the row conte... |
electron/electron | 50,505 | fix: [a11y] fire AXMenuOpened event when ARIA menu is added to DOM | Backport of #50377
See that PR for details.
Notes: Fixed an accessibility issue where the AXMenuOpened event was not fired on menu creation.
| e1c17fd1e83e49e2fcd974fc02ea1074e65a7737 | 36c88a46db4f9dad3f796e95692c5c1f84638c69 | 4 | medium | [
{
"filename": "patches/chromium/.patches",
"patch": "@@ -158,3 +158,4 @@ cherry-pick-05e4b544803c.patch\n cherry-pick-5efc7a0127a6.patch\n feat_plumb_node_integration_in_worker_through_workersettings.patch\n cherry-pick-fbfb27470bf6.patch\n+fix_fire_menu_popup_start_for_dynamically_created_aria_menus.patch"... |
vercel/next.js | 91,997 | adapters: remove unused suffix code | The regex associated with this flag was the same value in both the true/false case and the underlying flag was only used to control this regex. This appears to be dead code, so removing it. | null | 1e73fa94ac0fbdd2827b79085f7223c1268e4848 | null | low | [
{
"filename": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -1958,8 +1958,6 @@ export async function handleBuildComplete({\n const isFallbackFalse =\n prerenderManifest.dynamicRoutes[route.page]?.fallback === false\n \n- const { hasFallbackRootParams } = route\n-\n ... |
ollama/ollama | 14,006 | openclaw: run onboarding for fresh installs | When launching OpenClaw without prior onboarding, run the onboarding wizard instead of going straight to gateway. This ensures proper gateway configuration (mode, token, etc.) before first use.
- Add onboarded() to check for wizard.lastRunAt marker in config
- Run onboard with --auth-choice skip --gateway-token oll... | 27db7f806f73802cbeb9f829982ad4e0a6fbeaf8 | 6a7c3f188e679b1849e4618754b25dc9c19541d7 | 2 | medium | [
{
"filename": "cmd/config/openclaw.go",
"patch": "@@ -38,6 +38,20 @@ func (c *Openclaw) Run(model string) error {\n \t\treturn fmt.Errorf(\"setup failed: %w\", err)\n \t}\n \n+\tif !c.onboarded() {\n+\t\t// Onboarding not completed: run it (model already set via Edit)\n+\t\t// Use \"ollama\" as gateway toke... |
huggingface/transformers | 44,782 | fix: XLNet: relative_positional_encoding computes on CPU every forward | Fixes #44737
`XLNetModel.relative_positional_encoding` was creating all `torch.arange` tensors on CPU by default, then calling `.to(output_h.device)` at the call site to move them. Adds a `device` parameter to `relative_positional_encoding` in `src/transformers/models/xlnet/modeling_xlnet.py` and passes it through to ... | null | 70e454c97368fcc5183066d86d37d1b493a72f8c | null | low | [
{
"filename": "src/transformers/models/xlnet/modeling_xlnet.py",
"patch": "@@ -937,9 +937,9 @@ def positional_embedding(pos_seq, inv_freq, bsz=None):\n \n return pos_emb\n \n- def relative_positional_encoding(self, qlen, klen, bsz=None):\n+ def relative_positional_encoding(self, qlen, klen, bs... |
rust-lang/rust | 154,574 | delete several `ui/consts` tests | * `tests/ui/consts/const.rs`: meaningless
* `tests/ui/consts/const-bound.rs`: has nothing to do with const bounds or const at all (anymore?)
* `tests/ui/consts/const-enum-tuplestruct2.rs`, `tests/ui/consts/const-enum-tuple2.rs`, `tests/ui/consts/const-enum-tuple.rs`: duplicates of `tests/ui/consts/const-enum-tuplestr... | null | 66c7f9d9af4854f64222ef88ddf9c131c02227c2 | null | low | [
{
"filename": "tests/ui/consts/const-bound.rs",
"patch": "@@ -1,19 +0,0 @@\n-//@ run-pass\n-#![allow(dead_code)]\n-// Make sure const bounds work on things, and test that a few types\n-// are const.\n-\n-\n-fn foo<T: Sync>(x: T) -> T { x }\n-\n-struct F { field: isize }\n-\n-pub fn main() {\n- /*foo(1);\... |
facebook/react | 35,456 | [DevTools] Attach async info in filtered fallback to parent of Suspense | ## Summary
When a DevTools instance is filtered, we're using an unfiltered parent that's still in the reconciling Suspense boundary to attach async info to. If we attach async info to a DEvTools instance of a Suspense boundary, we treat that async info as if it's triggering the fallback of that Suspense boundary.
... | null | 5aec1b2a8d1bcafb43a7ddb64dc37eacad081bea | null | low | [
{
"filename": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3143,6 +3143,59 @@ describe('Store', () => {\n expect(store).toMatchInlineSnapshot(``);\n });\n \n+ // @reactVersion >= 17.0\n+ it('should track suspended by in filtered fallback', async () => {\n+ function ... |
huggingface/transformers | 44,672 | Fix annotations reader for python 3.14 in `PreTrainedModel` | # 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... | 9f93b61209e3a3cac026566bc11a77036941bbeb | be6cf0848668852e3267d297211eb7e983e6c786 | 19 | medium | [
{
"filename": "src/transformers/modeling_utils.py",
"patch": "@@ -1218,7 +1218,7 @@ def __init_subclass__(cls, **kwargs):\n # otherwise we derive it from the annotated `config` attribute.\n \n # defined in this particular subclass\n- child_annotation = cls.__dict__.get(\"__annotations... |
nodejs/node | 61,066 | doc: added 'secure' event to tls.TLSSocket | Fixes #61060
<!--
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 ... | e1fc3dc2fcf19d9278ab59c353aa1fa59290378b | 9b2ee5f197adca32b41182b0944236fba36c17ac | 30 | medium | [
{
"filename": "doc/api/tls.md",
"patch": "@@ -952,6 +952,18 @@ The listener callback is passed a single argument when called:\n Typically, the `response` is a digitally signed object from the server's CA that\n contains information about server's certificate revocation status.\n \n+### Event: `'secure'`\n+\... |
electron/electron | 50,489 | fix: fall back to default DPI when GTK returns 0 on Linux | Backport of #50453
See that PR for details.
Notes: none. | null | 707541d9b2697deb943ff15306710feaa581f0dd | null | low | [
{
"filename": "shell/browser/printing/printing_utils.cc",
"patch": "@@ -59,6 +59,8 @@ gfx::Size GetDefaultPrinterDPI(const std::u16string& device_name) {\n GtkPrintSettings* print_settings = gtk_print_settings_new();\n int dpi = gtk_print_settings_get_resolution(print_settings);\n g_object_unref(print... |
huggingface/transformers | 44,801 | deepseek_v2, deepseek_v3, and modernbert fix for having incorrect tokenizer class on the hub | deepseek_v2, deepseek_v3, and modernbert fix for having incorrect tokenizer class on the hub
fixes: https://github.com/huggingface/transformers/issues/44779, https://github.com/huggingface/transformers/pull/44783 | 21950930a657cdc446188d38b6979b90513bab41 | 16a5b0936dcaae6efbc03ab1a4fd98dc324bfb9e | 2 | medium | [
{
"filename": "src/transformers/models/auto/tokenization_auto.py",
"patch": "@@ -347,13 +347,16 @@\n \"deepseek_vl\",\n \"deepseek_vl_v2\",\n \"deepseek_vl_hybrid\",\n+ \"deepseek_v2\",\n+ \"deepseek_v3\",\n \"fuyu\",\n \"hyperclovax_vlm\",\n \"internlm2\",\n \"janus\",\n ... |
ollama/ollama | 13,645 | runner: fix typo 'baackend' -> 'backend' in error messages | Fix typo in three error messages where 'baackend' was written instead of 'backend' in the /health endpoint handler when initializing the dummy model load. | null | 3590fbfa761ad1d97bbd092baec58b0b8022fef4 | null | low | [
{
"filename": "runner/ollamarunner/runner.go",
"patch": "@@ -1358,7 +1358,7 @@ func (s *Server) info(w http.ResponseWriter, r *http.Request) {\n \t\t// Dummy load to get the backend wired up\n \t\tf, err := os.CreateTemp(\"\", \"*.bin\")\n \t\tif err != nil {\n-\t\t\thttp.Error(w, fmt.Sprintf(\"failed to in... |
rust-lang/rust | 142,659 | compiler-builtins: Clean up features | Remove the `compiler-builtins` feature from default because it prevents
testing via the default `cargo test` command. It made more sense as a
default when `compiler-builtins` was a dependency that some crates added
via crates.io, but is no longer needed.
The `rustc-dep-of-std` feature is also removed since it doe... | null | e1d917a035f5243711f3421740a313af9d449aba | null | low | [
{
"filename": "library/alloc/Cargo.toml",
"patch": "@@ -16,7 +16,7 @@ bench = false\n \n [dependencies]\n core = { path = \"../core\", public = true }\n-compiler_builtins = { path = \"../compiler-builtins/compiler-builtins\", features = [\"rustc-dep-of-std\"] }\n+compiler_builtins = { path = \"../compiler-b... |
ollama/ollama | 13,961 | added stakpak to web & desktop | 06bc8e6712fd71c4156dc9d4990a6edb134e0305 | cd0094f772426efdd7ccc57d1e88f35c25234130 | 1 | high | [
{
"filename": "README.md",
"patch": "@@ -466,6 +466,7 @@ See the [API documentation](./docs/api.md) for all endpoints.\n - [Clueless](https://github.com/KashyapTan/clueless) (Open Source & Local Cluely: A desktop application LLM assistant to help you talk to anything on your screen using locally served Olla... | |
vercel/next.js | 91,266 | [test] Properly log `framereceived` payload | We just stringified the value as-is which can produce invalid JS. This is only noticedable in Playwright traces where the errors are just noise.
Before:
<img width="1382" height="400" alt="CleanShot 2026-03-12 at 16 26 17@2x" src="https://github.com/user-attachments/assets/39c2519b-b2eb-4114-b50f-2ba8e595d490" />
... | null | 0b1604a8c41c8014e958b9304d21c487b4ef247d | null | low | [
{
"filename": "test/lib/browsers/playwright.ts",
"patch": "@@ -333,8 +333,12 @@ export class Playwright<TCurrent = undefined> {\n websocketFrames.push({ payload: frame.payload })\n \n if (tracePlaywright) {\n+ const { payload } = frame\n page\n- .evaluate(`conso... |
electron/electron | 50,503 | ci: add functionality for programmatic add/remove needs-signed-commits label | Backport of #50316
See that PR for details.
Notes: none
| 1b080d4097cecdd418176adabf32ea92f2664de2 | 6dfb19210b6b7838285daffff31df015e48ae75f | 14 | medium | [
{
"filename": ".github/workflows/build.yml",
"patch": "@@ -446,3 +446,30 @@ jobs:\n - name: GitHub Actions Jobs Done\n run: |\n echo \"All GitHub Actions Jobs are done\"\n+\n+ check-signed-commits:\n+ name: Check signed commits in green PR\n+ needs: gha-done\n+ if: ${{ contains(g... |
facebook/react | 35,458 | [ci] Add size-balanced test sequencer for better shard distribution |
Jest's default test sequencer sorts alphabetically, causing large test files
(eg ReactDOMFloat-test.js at 9k lines, ReactHooksWithNoopRenderer-test.js at 4k
lines) to cluster in shard 3/5. This made shard 3/5 average 117s vs 77s for
other shards, a 52% slowdown. I'm using filesize as a rough proxy for number of tests.... | null | d6cae440e34c6250928e18bed4a16480f83ae18a | null | low | [
{
"filename": "scripts/jest/config.base.js",
"patch": "@@ -2,6 +2,7 @@\n \n module.exports = {\n globalSetup: require.resolve('./setupGlobal.js'),\n+ testSequencer: require.resolve('./sizeBalancedSequencer.js'),\n modulePathIgnorePatterns: [\n '<rootDir>/scripts/rollup/shims/',\n '<rootDir>/scr... |
facebook/react | 35,459 | [ci] Increase DevTools test shards and bump timeout |
[ci] Increase DevTools test shards and bump timeout
- Increase DevTools test shards from 3 to 5
- Bump timeout to 20s
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35459).
* #35458
* __->__ #35459 | 0e180141bf9b859efdbe067cf1eb850e22048bf8 | 00908be9ff2d033ab5340e2a250b6288909d41a0 | 1 | medium | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -454,9 +454,11 @@ jobs:\n fail-fast: false\n matrix:\n shard:\n- - 1/3\n- - 2/3\n- - 3/3\n+ - 1/5\n+ - 2/5\n+ - 3/5\n+ - 4/5\n+ - 5/5\n r... |
nodejs/node | 61,064 | doc: added `requestOCSP` option to `tls.connect` | Fixes #61042
<!--
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 ... | null | 7c9f5db055f570be454e54f63ca0ed7a4454c625 | null | low | [
{
"filename": "doc/api/tls.md",
"patch": "@@ -1737,6 +1737,9 @@ changes:\n verification fails. The method should return `undefined` if the `servername`\n and `cert` are verified.\n * `session` {Buffer} A `Buffer` instance, containing TLS session.\n+ * `requestOCSP` {boolean} If `true`, specifies ... |
huggingface/transformers | 43,376 | Fix `KeyError` when patching mistral regex | # What does this PR do?
Seems like the same `fix_mistral_regex` is provided multiple times, replacing `get` with `pop` to avoid running into `KeyError` fixes the issue.
```
File "/mambaforge/envs/cf/lib/python3.10/site-packages/transformers/models/auto/processing_auto.py", line 400, in from_pretrained
retur... | 7cd2dd86ce3b2e598535f9aa1a40f79d6894f80a | cecacd374f575ad7ffe37dcd69a98cf00b551011 | 15 | medium | [
{
"filename": "src/transformers/tokenization_utils_tokenizers.py",
"patch": "@@ -456,7 +456,7 @@ def __init__(self, *args, **kwargs):\n self._tokenizer,\n self.init_kwargs.get(\"name_or_path\", None),\n init_kwargs=self.init_kwargs,\n- fix_mistr... |
rust-lang/rust | 154,551 | Skip suggestions pointing to macro def for assert_eq | Fixes rust-lang/rust#146204
It's better to suggest:
```console
help: consider borrowing here
--> src/main.rs:3:16
|
3| assert_ne!(&buf, b"----");
| +
```
but i don't want to give a too heuristic but not general enough fix, let suppress them. | 0740609ea38a7274911952fa90c28b89c71f6611 | 472c531d7a049746558147e589ba5d005c444b83 | 27 | medium | [
{
"filename": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -545,8 +545,12 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n .all(|obligation| self.predicate_may_hold(obligation))\n }) && steps > 0\n {\n+ if ... |
ollama/ollama | 13,966 | cmd: ollama launch add placeholder text for selector | aae6ecbaffb1909018f3d9e289166c50a2eaffc5 | a0923cbdd05e3928110aafe4f03340da6add62ac | 17 | medium | [
{
"filename": "cmd/config/selector.go",
"patch": "@@ -275,7 +275,11 @@ func parseInput(r io.Reader) (inputEvent, byte, error) {\n func renderSelect(w io.Writer, prompt string, s *selectState) int {\n \tfiltered := s.filtered()\n \n-\tfmt.Fprintf(w, \"%s %s\\r\\n\", prompt, s.filter)\n+\tif s.filter == \"\" ... | |
electron/electron | 50,473 | fix: crash calling OSR shared texture release() after texture GC'd | The weak persistent tracking the `OffscreenReleaseHolderMonitor` was tied to the texture object, but the `release()` closure holds a raw pointer to the monitor via its `v8::External` data. If JS retained `texture.release` while dropping the texture itself, the monitor would be freed on GC and a later `release()` call w... | null | 678adeaf7c3f31405e7b271c0e8f84eacdd414c9 | null | low | [
{
"filename": "shell/common/gin_converters/osr_converter.cc",
"patch": "@@ -155,9 +155,12 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n root.Set(\"textureInfo\", ConvertToV8(isolate, dict));\n auto root_local = ConvertToV8(isolate, root);\n \n- // Create a persistent... |
vercel/next.js | 91,221 | perf: use Buffer.from for base64 encoding of binary Flight data | ## Summary
Replace `btoa(String.fromCodePoint(...chunk))` with `Buffer.from().toString('base64')` for encoding binary Flight data chunks in `writeFlightDataInstruction`.
The spread operator `...chunk` converts the entire Uint8Array into individual arguments on the call stack. For a 64KB binary chunk, this creates 65,... | null | 5903c030dc41b506ed344aff1c3f35315af085a4 | null | low | [
{
"filename": "packages/next/src/server/app-render/use-flight-response.tsx",
"patch": "@@ -241,7 +241,14 @@ function writeFlightDataInstruction(\n // Instead let's inline it in base64.\n // Credits to Devon Govett (devongovett) for the technique.\n // https://github.com/devongovett/rsc-html-stre... |
facebook/react | 35,457 | [ci] Separate DevTools test-build into dedicated job with fewer shards |
DevTools has ~45 test files which don't distribute well across 10 shards,
causing shard 3 to run 2x slower than others (104s vs ~50s). This moves
DevTools build tests to a separate job with 3 shards for better load balancing.
| 41745339cd258065e47a692bb29d925561b70f08 | 0e180141bf9b859efdbe067cf1eb850e22048bf8 | 26 | medium | [
{
"filename": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -382,9 +382,6 @@ jobs:\n -r=experimental --env=development,\n -r=experimental --env=production,\n \n- # Dev Tools\n- --project=devtools -r=experimental,\n-\n # TODO: Update test config ... |
ollama/ollama | 13,965 | cmd: capitalize Ollama in serve command help text | ## Summary
Fixes #10165
The product name "Ollama" should be capitalized when referring to the application, while the CLI command `ollama` remains lowercase.
## Changes
Changed `"Start ollama"` to `"Start Ollama"` in the serve command's short description.
## Before
```
Available Commands:
serve Start ollama... | aae6ecbaffb1909018f3d9e289166c50a2eaffc5 | f92e362b2e1b25ab83e0d1ecd6d0f8b073abfebc | 16 | medium | [
{
"filename": "cmd/cmd.go",
"patch": "@@ -1888,7 +1888,7 @@ func NewCLI() *cobra.Command {\n \tserveCmd := &cobra.Command{\n \t\tUse: \"serve\",\n \t\tAliases: []string{\"start\"},\n-\t\tShort: \"Start ollama\",\n+\t\tShort: \"Start Ollama\",\n \t\tArgs: cobra.ExactArgs(0),\n \t\tRunE: RunServ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.