id int64 393k 2.82B | repo stringclasses 68
values | title stringlengths 1 936 | body stringlengths 0 256k ⌀ | labels stringlengths 2 508 | priority stringclasses 3
values | severity stringclasses 3
values |
|---|---|---|---|---|---|---|
2,615,410,909 | flutter | `NavigationBar` should allow fixed size centered destinations in landscape mode | ### Use case
In landscape mode on taller devices having 3 to 4 destinations present a bad UI by expanding all destinations to take the full width. Without having a fixed width option, we are forced to use `BottomNavigationBar` which might be deprecated in the future as per this [issue](https://github.com/flutter/flu... | c: new feature,framework,f: material design,c: proposal,P2,team-design,triaged-design | low | Minor |
2,615,431,567 | vscode | Remote Tunnel VSCode Server install fails if WSL default shell is not Bash | <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- 🔎 Search existing issues to avoid creat... | bug,info-needed,remote-tunnel | low | Critical |
2,615,445,218 | ui | [feat]: sidebar color option | ### Feature description
The 'themes' page does not include a color option. Therefore, it does not follow the custom color theme. I think it needs options like these:
```
--sidebar-background: 222.2 84% 4.9%;
--sidebar-accent: 217.2 32.6% 17.5%;
```
https://ui.shadcn.com/themes
### Affected component/componen... | area: request | low | Minor |
2,615,450,505 | kubernetes | Add QueueingHint for VolumeAttachment deletion events in CSI volume limits plugin | ### What would you like to be added?
In #128337, we added `VolumeAttachment` deletion event to CSI volume limits plugin's `EventsToRegister`.
We should add a corresponding `QueueingHintFn` to make requeueing more efficient by allowing the plugin to filter out useless events.
/sig scheduling
### Why is this need... | sig/scheduling,sig/storage,kind/feature,needs-triage | low | Major |
2,615,474,557 | tauri | [bug] failed overriding protocol method -[WKUIDelegate webView:requestMediaCapturePermissionForOrigin:initiatedByFrame:type:decisionHandler:]: method not found | ### Describe the bug
npm run tauri dev
> tauri-app@0.1.0 tauri
> tauri dev
Running BeforeDevCommand (`npm run dev`)
> tauri-app@0.1.0 dev
> vite
Warn Waiting for your frontend dev server to start on http://localhost:1420/...
Re-optimizing dependencies because lockfile has changed
VITE v5.4.... | type: bug,status: upstream,status: needs triage | low | Critical |
2,615,479,572 | next.js | Next.js 15 import alias not working with turbopack | ### Link to the code that reproduces this issue
https://github.com/aelassas/next-turbopack
### To Reproduce
Create a Next.js 15 project with an internal package `package1`:
```
| - my-app/
| - packages/package1/
```
Add the alias in tsconfig.json:
```js
{
"compilerOptions": {
...
"baseUrl": "./",
... | bug,Turbopack,linear: turbopack | low | Critical |
2,615,501,650 | pytorch | What version or package name will be used in aarch64 release for 2.6 on pypi? | ### 🐛 Describe the bug
An +cpu suffix is added to aarch64 (cpu) nightly package. https://github.com/pytorch/pytorch/pull/138588
Before
```
# https://download.pytorch.org/whl/nightly/cpu/torch-2.6.0.dev20241022-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
>>> torch.__version__
'2.6.0.dev202410... | high priority,oncall: releng,triaged,module: regression | low | Critical |
2,615,522,017 | node | When using microtaskMode: 'afterEvaluate', the program gets stuck in the vm and cannot return to the main program. | ### Version
v22.9.0
### Platform
```text
ubuntu 22.04
```
### Subsystem
_No response_
### What steps will reproduce the bug?
When using microtaskMode: 'afterEvaluate', the program gets stuck in the vm and cannot return to the main program.
 are tensor | ### 🐛 Describe the bug
```python
import torch
import torch.nn as nn
class DemoModel(nn.Module):
def __init__(self):
super(DemoModel, self).__init__()
self.conv = nn.Conv2d(3, 3, 3, 1, 1)
def forward(self, x):
print(x.shape[0])
print(x.numel())
x = self... | oncall: jit | low | Critical |
2,615,552,180 | neovim | Insertion after expansion of snippet starts at wrong place | ### Problem
Original issue: https://github.com/Saghen/blink.cmp/issues/94
Many Lsp's auto import module before starting the completion, but doing so results in the starting of insertion at the wrong place, tested with clangd and gopls
https://github.com/user-attachments/assets/08c26e7c-a8de-4736-860b-feb7ea43cc42
... | bug,snippet | low | Minor |
2,615,575,690 | next.js | Module '"next" has no exported member "X" (eg, 'Image', 'NextConfig'). | ### Link to the code that reproduces this issue
https://github.com/nextui-org/next-app-template
### To Reproduce
1. Upgrade to `v15` from `v14`
2. Enable turbopack
3. start dev server
*using typescript
### Current vs. Expected behavior
## Expected behevior
- Import stuff (like Image, Metadata) from `next` pack... | bug,Module Resolution | low | Minor |
2,615,594,929 | vscode | Uninstall Copilot leaves the sidebar entirely empty without notice | Steps to Reproduce:
1. install copilot
2. secondary sidebar shows
3. uninstall
=> 🐛 secondary sidebar is empty without notice to drop a view

| bug,layout,workbench-auxsidebar | low | Minor |
2,615,595,803 | godot | Being able to access a non-existing member in another class during the static analysis of GDScript | ### Tested versions
-Reproducible in 4.3 and 4.4dev
-Perhaps reproducible in previous versions
### System information
Windows 11
### Issue description
```GDScript
class D:
var q = 1
class E:
var d = D.new()
class F:
var e = E.new()
func _init() -> void:
e.d._q = 5
```
In this exam... | discussion,topic:gdscript,documentation | low | Critical |
2,615,597,762 | pytorch | compile_fx inplace modifly the input graph | ### 🐛 Describe the bug
I'm compiling a graph multiple times using inductor. I find it inplace modify the graph, and one of the graph's output changes from tensor to list of tensor.
example code:
```python
import torch
from torch import nn
@torch.library.custom_op("silly::attention", mutates_args=["out"])
... | triaged,oncall: pt2,module: inductor | low | Critical |
2,615,613,084 | deno | Will Deno support node_api_basic_finalize? | It is still experimental in node, but I think it is a fantastic feature to simplify ffi modules.
https://github.com/nodejs/node/blob/0668e64cea127d8d4fa35d1b49bf11093ecc728f/doc/api/n-api.md?plain=1#L614
It allows finalisers to run outside the js context and so executed immediately as soon as the object is gc'ed,... | suggestion,node compat,node native extension | low | Minor |
2,615,614,653 | tensorflow | `data_flow_ops.Barrier` aborts with "Check failed: i >= 0 (0 vs. -100)" | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
binary
### TensorFlow version
tf-nightly 2.19.0-dev20241025
### Custom code
Yes
### OS platform and distribution
Linux Ubuntu 20.04.3 LTS
### Mobile device
_No response_
### Python version
_No response_
### Bazel... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.18 | medium | Critical |
2,615,618,759 | tensorflow | `gen_list_ops.tensor_list_concat_v2` aborts with "Check failed: size >= 0 (0 vs. -1)" | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
binary
### TensorFlow version
tf-nightly 2.19.0-dev20241025
### Custom code
Yes
### OS platform and distribution
Linux Ubuntu 20.04.3 LTS
### Mobile device
Linux Ubuntu 20.04.3 LTS
### Python version
3.10.14
### ... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.18 | medium | Critical |
2,615,620,522 | tensorflow | `lookup_ops.StaticVocabularyTable` and `lookup_ops.StaticVocabularyTableV1` can cause a crash | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
binary
### TensorFlow version
tf-nightly 2.19.0-dev20241025
### Custom code
Yes
### OS platform and distribution
Linux Ubuntu 20.04.3 LTS
### Mobile device
_No response_
### Python versi... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.18 | medium | Critical |
2,615,627,665 | godot | Restrictive permissions on asset folder shows up as "invalid file" errors and creates import loops | ### Tested versions
- Reproducible in: v4.3.stable.mono.official [77dcf97d8]
### System information
macOS - Sonoma 14.6.1 (23G93)
### Issue description
I moved an [asset pack](https://quaternius.com/packs/stylizednaturemegakit.html) into my project folder. For some reason, the pack comes with permission ... | bug,topic:editor,topic:import | low | Critical |
2,615,637,327 | flutter | Autocomplete options overlay should automatically moves up when soft keyboard is visible | ### Steps to reproduce
When soft keyboard is visible, unless options widget is constrained or set to a specific height, part of the options overlay will be hidden behind the keyboard. This is a dealbreaker especially in mobile, since we would prefer not to set a specific height value.
### Expected results
http... | a: text input,framework,f: material design,has reproducible steps,P2,team-text-input,triaged-text-input,found in release: 3.24,found in release: 3.27 | low | Major |
2,615,638,297 | pytorch | The error compiling problem of Qt and libtorch(my solution to eliminate the bug) | When I built the code at first,it run well at the first
```cpp
#include <LogLevel.hpp>
#include <LogManager.hpp>
#include <QtCharts/QChartView>
#include <QtCharts/QLineSeries>
#include <QtWidgets/QApplication>
#include <iostream>
#include <torch/torch.h>
#include <torch/script.h>
// 定义卷积 + ReLU + 批量归一化的模... | module: dependency bug,module: cpp,triaged | low | Critical |
2,615,648,863 | yt-dlp | Issue with LUA and YT-DLP: yt-dlp sends "finished process" to LUA to early? | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm asking a question and **not** reporting a bug or requesting a feature
- [X] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#re... | external issue | low | Critical |
2,615,657,601 | next.js | useFormStatus() doesn't work with shadcn/ui Select component | ### Link to the code that reproduces this issue
https://github.com/samstr/shadcn-formstatus-demo
### To Reproduce
1. Clone https://github.com/samstr/shadcn-formstatus-demo
2. npm install
3. npm run dev
4. Go to http://localhost:3000/
5. Click the submit button on the form with an Input (pending state works)
6. ... | bug | low | Minor |
2,615,658,550 | react | [React 19] useFormStatus() pending doesn't work with Select component | ## Summary
I recently upgraded to NextJS 15 and I have noticed that react-dom's useFormStatus is no longer working when the Select component is included in the form.
I don't know if this is a shadcn/ui issue, a NextJS issue, or an underlying react-dom issue. My suspicion is it's a problem with how react-dom is ha... | React 19 | low | Major |
2,615,684,644 | tailwindcss | [v4] Tailwind CSS classes not updating in output when adding previously unused classes - requires server restart | **What version of Tailwind CSS are you using?**
```
"@tailwindcss/vite": "^4.0.0-alpha.30",
"tailwindcss": "^4.0.0-alpha.30"
```
**What build tool (or framework if it abstracts the build tool) are you using?**
```
"@solidjs/start": "^1.0.9",
"vinxi": "^0.4.3"
```
**What version of Node.js are you usin... | v4,vite | low | Major |
2,615,699,751 | TypeScript | Inline conditional JSX props spread warns as if unconditional | ### 🔎 Search Terms
"is specified more than once, so this usage will be overwritten", "jsx spread"
### 🕗 Version & Regression Information
I observed this in practice on 5.6.3, and it seems to occur in all the versions I tested with the playground.
### ⏯ Playground Link
https://www.typescriptlang.org/play/?ts=5.... | Bug | low | Critical |
2,615,732,539 | tauri | [bug] Tauri v2 is missing Zoom predefined menu item (MacOS) | ### Describe the bug
V1 has this
https://docs.rs/tauri/1.8.1/tauri/enum.MenuItem.html#variant.Zoom
Nowhere to be seen in v2
https://docs.rs/tauri/2.0.6/tauri/menu/struct.PredefinedMenuItem.html
### Reproduction
N/A
### Expected behavior
API should have access to this native macos menu item.
### Full `tauri ... | type: bug,platform: macOS,status: needs triage | low | Critical |
2,615,748,741 | react | [Compiler]: All comments removed from source code | ### What kind of issue is this?
- [ ] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)
- [X] babel-plugin-react-compiler (build issue installing or using the Babel plugin)
- [ ] eslint-plugin-react-compiler (build issue installing or using the eslint plugin)
- [ ] reac... | Type: Question,Component: Optimizing Compiler | low | Critical |
2,615,749,612 | terminal | Tab bar RMB glitches | ### Windows Terminal version
1.21.2911.0
### Windows build number
10.0.26100.0
### Other Software
_No response_
### Steps to reproduce
Open Windows Terminal. Do Right Mouse Button click multiple times on the tab, shifting a cursor along tab header area. Note that sometimes you get Windows titlebar standard conte... | Issue-Bug,Area-UserInterface,Product-Terminal | low | Minor |
2,615,765,462 | angular | Proposal: Native Component for Dynamic Metadata in Angular – Essential for SSR in SEO context | Introduce a component in Angular that functions similarly to the [`<Head>`](https://nextjs.org/docs/pages/api-reference/components/head) component in Next.js, allowing developers to manage metadata (title, meta tags, etc.) for individual pages or components directly within the Angular template.
### Why?
As Angular con... | area: server | low | Minor |
2,615,825,538 | rust | Tracking Issue for rustc's translatable diagnostics infrastructure | This is a tracking issue for rustc's translatable diagnostics infrastructure, which is related to #100717 but reflects the current status.
## Current status
Unfortunately, we have found that the current implementation of diagnostic translation infrastructure causes non-insignificant friction for compiler contributors... | E-hard,A-diagnostics,T-compiler,C-tracking-issue,WG-diagnostics,A-translation,S-tracking-needs-deep-research,D-diagnostic-infra,E-needs-design | low | Critical |
2,615,841,786 | pytorch | Error loading ".venv\Lib\site-packages\torch\lib\c10_xpu.dll" or one of its dependencies | ### 🐛 Describe the bug
When attempting to import `torch` with version `2.5.1+xpu`, I encounter the following error:
```
Error loading ".venv\Lib\site-packages\torch\lib\c10_xpu.dll" or one of its dependencies
```
I've followed the instructions from:
- https://pytorch.org/docs/stable/notes/get_start_xpu.html
... | module: windows,triaged,module: xpu | medium | Critical |
2,615,847,928 | langchain | I Can't use HuggingFaceEmbeddings and HuggingFaceBgeEmbeddings | ### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the LangChain documentation with the integrated search.
- [X] I used the GitHub search to find a similar question and didn't find it.
- [X] I am sure that this is a bug in LangChain rather than my code.
- [X] The bug is ... | stale | low | Critical |
2,615,852,275 | TypeScript | Regular Expression - improve on-hover notation for literal expressions | ### 🔍 Search Terms
regex, regular expression, syntax highlighting
### ✅ Viability Checklist
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime behavior of existing JavaScript code
- [x] This could be implemented without emitting different JS based ... | Suggestion,Awaiting More Feedback | low | Minor |
2,615,869,637 | react | [React 19] Unnecessary and unremovable `data-precedence` and `data-href` attributes on hosted `<style>` and `<script>`. | ## Summary
https://codesandbox.io/p/devbox/28rwmr
```tsx
import { Writable } from "node:stream";
import React, { StrictMode } from "react";
import { renderToPipeableStream } from "react-dom/server";
async function renderJsx(children: React.ReactNode): Promise<string> {
return new Promise((resolve, reject... | Resolution: Stale,React 19 | medium | Critical |
2,615,872,820 | vscode | debug: Indicate column of stack frame in editor | <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
If you are stopped at a breakpoint, VS-Code indicate... | feature-request,debug | low | Critical |
2,615,872,879 | godot | Error exporting apk in Godot Mobile | ### Tested versions
- Reproducible in godot 4.4.dev 3.
### System information
Godot v4.4.dev3 - Android 11 - Single-window, 1 monitor - Vulkan (Mobile) - integrated Adreno (TM) 610 - (8 threads)
### Issue description
- The apk export gives an error when placed outside the folder where the godot projects are locat... | bug,platform:android,topic:editor,topic:export | low | Critical |
2,615,873,819 | deno | [lint] ERR_MODULE_NOT_FOUND on a package without `main` or `module` (types only) | Version: Deno 2.0.3
In a case where a package has types only, e.g. `@apollo/utils.fetcher` is such, importing **without** adding type import directive results in confusion.
My gut feeling is that `deno lint` could suggest type import. I expect my existing projects to have a lot of these. Possibly something simila... | needs discussion | low | Critical |
2,615,898,042 | godot | Entering specific shader names (e.g., 'icon_shader') causes Godot editor to freeze | ### Tested versions
v4.3.stable
### System information
Windows 10. Godot v4.3.stable - Vulkan (Mobile) - NVIDIA GeForce GTX 1060 6GB - Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz (8 Threads)
### Issue description
Setting the shader name of a Sprite2D with icon.svg as its texture to res://icon_shader.gdshader causes th... | bug,topic:editor,topic:shaders | low | Minor |
2,615,922,745 | PowerToys | Remote Audio Output Capability | ### Description of the new feature / enhancement
I propose adding a feature to PowerToys that enables a Windows desktop's audio output to be played on another device, such as another PC, laptop, or smartphone. This feature would be extremely beneficial for users with faulty audio hardware on their primary device. Thro... | Needs-Triage | low | Critical |
2,615,922,857 | node | structuredClone() uses wrong context in vm.runInContext() | ### Version
v22.10.0
### Platform
```text
Darwin Silmaril.home 23.6.0 Darwin Kernel Version 23.6.0: Wed Jul 31 20:49:46 PDT 2024; root:xnu-10063.141.1.700.5~1/RELEASE_ARM64_T8103 arm64
```
### Subsystem
vm
### What steps will reproduce the bug?
```js
const vm = require('node:vm');
const context = vm.createC... | vm | low | Critical |
2,615,923,609 | PowerToys | Kontextmenu funktioniert nciht | ### Microsoft PowerToys version
0.85.1
### Installation method
Microsoft Store
### Running as admin
Yes
### Area(s) with issue?
New+, PowerRename
### Steps to reproduce
Unfortunately, reinstalling didn’t help. The only option displayed is 'Open in Terminal'."
### ✔️ Expected Behavior
_No response_
### ❌ Act... | Issue-Bug,Needs-Triage | low | Minor |
2,615,962,388 | rust | Tracking issue for release notes of #128351: Lint against `&T` to `&mut T` and `&T` to `&UnsafeCell<T>` transmutes |
This issue tracks the release notes text for #128351.
### Steps
- [ ] Proposed text is drafted by PR author (or team) making the noteworthy change.
- [ ] Issue is nominated for release team review of clarity for wider audience.
- [ ] Release team includes text in release notes/blog posts.
### Release notes text
Th... | T-lang,relnotes,relnotes-tracking-issue | low | Minor |
2,615,968,645 | go | cmd/compile: missed bounds check elimination when paired slices are resliced | ```
go version devel go1.24-140308837f Mon Oct 21 15:30:47 2024 +0200 darwin/arm64
```
When the lengths of two slices are "paired" (`dst = dst[:len(src)]`), the compiler is smart enough to apply ifs to both, but if you reslice them the pairing is lost.
```
func foo(src, dst []byte) {
dst = dst[:len(src)]
f... | Performance,NeedsInvestigation,compiler/runtime | low | Minor |
2,615,983,402 | deno | node worker_threads --conditions bug (e.g. breaks vitest for solidjs) | Version: Deno 2.0.3
Repro:
- `deno run -A npm:create-solid`
- Select: SolidStart, TypeScript, **with-vitest** example
- `deno i`
- `deno task test`
### Vitest 1.6.0
Error:
<details open >
<summary>Deno fails - vitest 1.6.0</summary>
```
➜ deno task test
Task test vitest run
RUN v1.6.0
❯ src/components/Count... | bug,node compat,node resolution | low | Critical |
2,615,988,704 | PowerToys | Tabs not saved with File Explorer window in the Workspaces utility | ### Description of the new feature / enhancement
Workspaces is potentially a great utility, especially when managing files with multiple Windows Explorer windows. The drawback is that a Workspaces cannot save the configured subfolders or tabs in the individual explorer windows.
Unfortunately, Workspaces only saves t... | Needs-Triage,Product-Workspaces | low | Minor |
2,615,995,449 | svelte | False positive TypeScript error when spreading attributes on div HTML element | ### Describe the bug
There's a type mismatch between the `<div>` element type and `HTMLAttributes<HTMLDivElement>`
### Reproduction
Type this into a Svelte file in VS Code. Notice the error on the spread of `restProps` on the `<div>`.
```svelte
<script lang="ts">
import type { HTMLAttributes } from 'svelte/ele... | types / typescript | low | Critical |
2,616,013,962 | excalidraw | feature request: excalidraw to mermaid | i saw github markdown supports mermaid now, i'd like to reduce the friction from going to excalidraw to github issue, that could help | enhancement | low | Minor |
2,616,040,391 | node | `fs.rmSync(path, { recursive: true, maxRetries: manyManyRetries})` throws on `ENFILE` | ### Version
v22.8.0
### Platform
```text
Linux tumba 6.11.4-gentoo-yuran-r7 #8 SMP Sat Oct 19 16:45:43 +08 2024 x86_64 Intel(R) Core(TM)2 Duo CPU E6550 GenuineIntel GNU/Linux
```
### Subsystem
fs
### What steps will reproduce the bug?
Set low limits or high `FILE_COUNT`, run the following:
```mjs
import... | fs | low | Critical |
2,616,046,881 | deno | vite/node project can't use i.e. `jsr:@db/sqlite` in package.json/node-compat mode. Migrating to deno.json will break resolution | Version: Deno 2.0.3
Say I try to run a project, like a new solid start example
- deno run -A npm:create-solid
- Select SolidStart, TypeScript, Basic
And then I port package.json over to deno.json
```
{
"tasks": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"v... | bug,bundler-resolution | low | Critical |
2,616,063,121 | pytorch | Support `attn_mask` in `jagged_scaled_dot_product_attention` | ### 🚀 The feature, motivation and pitch
Currently, providing an attention mask argument to [jagged_scaled_dot_product_attention](https://github.com/pytorch/pytorch/blob/main/torch/nested/_internal/sdpa.py#L677) is not supported (see https://github.com/pytorch/pytorch/blob/main/torch/nested/_internal/sdpa.py#L67).
... | feature,triaged,module: nestedtensor,module: sdpa | low | Major |
2,616,072,764 | tauri | [bug] Service worker not registered in Android | ### Describe the bug
I have Svelte app with custom service worker, it works fine in Linux app, but in Android I'm getting this error:
```
10-26 19:45:52.643 8304 8304 E Tauri/Console: File: http://tauri.localhost/src/main.ts - Line 24 - Msg: Service worker registration failed with TypeError: Failed to register a... | type: bug,status: needs triage | low | Critical |
2,616,101,638 | ollama | use arm64 extensions ? | like neon64 and way others .. ?
greets .. | feature request | low | Major |
2,616,109,844 | vscode | Insiders API Change: no NotebookData class in NotebookSerializer.serializeNotebook handed over (only same Interface) | <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions -->
<!-- 🔎 Search existing issues to avoid creat... | under-discussion,confirmed,notebook-api | low | Critical |
2,616,112,745 | rust | Variance not computed for concrete GAT references in struct fields | Similar to https://github.com/rust-lang/rust/issues/114221#issuecomment-1656912412.
I tried this code:
```rust
trait Foo {
type Ref<'a>;
}
struct Bar;
impl Foo for Bar {
type Ref<'a> = &'a u8;
}
struct Baz<'a>(<Bar as Foo>::Ref<'a>);
fn f<'a>(s: Baz<'static>) { let _: Baz<'a> = s; }
```
I expected to see... | C-discussion,A-variance,T-types,A-GATs | low | Critical |
2,616,116,856 | langchain | DOC: The bedrock documentation is under "AWS" it needs to change to the earlier "Bedrock" | ### URL
https://python.langchain.com/docs/how_to/dynamic_chain/
### Checklist
- [X] I added a very descriptive title to this issue.
- [X] I included a link to the documentation page I am referring to (if applicable).
### Issue with current documentation:
https://python.langchain.com/docs/how_to/dynamic_chain/
a... | 🤖:docs,stale | low | Minor |
2,616,121,127 | godot | Delayed crash after Animations with same name are added to the same AnimationLibrary | ### Tested versions
reproducible in v4.3.stable.nixpkgs [77dcf97d8]
### System information
Godot v4.3.stable (77dcf97d8) - NixOS #1-NixOS SMP PREEMPT_DYNAMIC Thu Sep 12 09:13:13 UTC 2024 - X11 - Vulkan (Mobile) - integrated Intel(R) Graphics (ADL GT2) - 12th Gen Intel(R) Core(TM) i5-1240P (16 Threads)
### Issue des... | bug,needs testing,crash,topic:animation | low | Critical |
2,616,129,752 | vscode | Comments broken in markdown codeblock | create markdown file:
````md
```ts
function abc() {
return;
}
```
* ```ts
function abc() {
return;
}
```
````
press comment keybind (ctrl+/) on the `return;` lines
Expected:
TS comment `//` added before the `return;` ✅
 -> impl Iterator {
std::iter::once((self, t))
}
}
```
### Current output
`cargo check` currently suggests
```
error[E0700]: hidden type for `impl std::iter::Iterator` captures lifetime that does not appear in bounds
--> src/main.rs:5:3
|
4 | fn i... | A-diagnostics,T-compiler,A-suggestion-diagnostics,D-incorrect,F-precise_capturing | low | Critical |
2,616,131,431 | TypeScript | Should validate iteree when using `using`/`await using` in loop initializer | ### 🔍 Search Terms
explicit resource management, using, await using, loop initializer, Symbol.dispose, Symbol.asyncDispose, iteration
### ✅ Viability Checklist
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime behavior of existing JavaScript code
... | Needs Investigation | low | Critical |
2,616,147,834 | PowerToys | custom time stamps in PowerToys for Shamsi calendar and Lunar Hijri calendar | ### Microsoft PowerToys version
0.85.0
### Installation method
GitHub
### Running as admin
None
### Area(s) with issue?
PowerToys Run
### Steps to reproduce
Hi, How to create custom time stamps in PowerToys Run like this for Shamsi calendar and Lunar Hijri calendar?
۱۴۰۳/۰۸/۰۵ - ۰۹:۱۸ ق.ظ
یکشنبه - ۶ آبان ۱۴۰۳... | Issue-Bug,Needs-Triage | low | Minor |
2,616,148,973 | tauri | [bug] Failed to assemble APK | ### Describe the bug
Failed to build the app for Android with Svelte template
### Reproduction
cargo create-tauri-app
Choose Typescript/Javascript
pnpm as package manager
Svelte as UI template
Typescript
cd tauri-app
pnpm i
cargo tauri android init
cargo tauri android dev
### Expected behavior
build and ru... | type: documentation | low | Critical |
2,616,159,557 | neovim | Setting 'winbar' on 'BufWinEnter' can unexpectedly cause window with 'winfixheight' to resize on opening/closing other windows | ### Problem
Setting 'winbar' on 'BufWinEnter' can unexpectedly cause window with 'winfixheight' to resize on opening/closing other windows.
Screen recording:
https://github.com/user-attachments/assets/89b167bf-7725-464a-8569-047ae7edb517
### Steps to reproduce
1. Create the `minimal.lua` file:
```lua
vim... | bug,ui,statusline | low | Critical |
2,616,229,028 | deno | `deno lint` produces unreadable output for minified files. | Version: Deno 2.0.3
This came up in https://github.com/denoland/deno/issues/26519#issuecomment-2439774489. While I think https://github.com/denoland/deno/issues/26573 will minimize impact of the problem, `deno lint` should still be smarter about printing code snippets.
If the diagnostic is produced for a rather b... | bug | low | Minor |
2,616,231,131 | godot | Can't color pick outside editor window in single window mode | ### Tested versions
* 4.2 - works in single window mode
* 4.3 - doesn't work
* 4.4.dev - doesn't work
### System information
Windows 11 - Vulkan (Forward+)
### Issue description
The `ColorPicker`'s doesn't pick colors when the mouse is outside the editor's windows when `single_window_mode` is enabled.... | bug,regression,topic:gui | low | Minor |
2,616,234,948 | ollama | Unrooted Termux install process | ### What is the issue?
I am endeavouring to set up an `ollama` server on my unrooted Termux host environment, please refer:
https://github.com/ollama/ollama/issues/7349#issuecomment-2439776813
and
https://github.com/ollama/ollama/issues/7292#issuecomment-2439781839
@vpnry @dhiltgen So, the process is:
#... | bug | low | Critical |
2,616,236,502 | kubernetes | Cronjob's stuck job was not marked as failed and blocked new schedules | ### What happened?
I have a cronjob that runs every 5 minutes, concurrency policy is forbidden:
```
apiVersion: batch/v1
kind: CronJob
metadata:
name: backup-job
spec:
concurrencyPolicy: Forbid
startingDeadlineSeconds: 200
schedule: "*/5 * * * *"
jobTemplate:
spec:
backoffLimit: 0
... | kind/bug,sig/apps,triage/needs-information,needs-triage | low | Critical |
2,616,248,137 | svelte | Svelte component won't type with runes | ### Describe the bug
If I try to use bind:this to a Svelte component in my project, the typing for the variable tosses this error when I try to type it using the component name: 'Nested' refers to a value, but is being used as a type here. Did you mean 'typeof Nested'?ts(2749)
This worked in svelte 4 and typeof ... | documentation,types / typescript | low | Critical |
2,616,262,781 | rust | Syntactically rejecting impl-Trait inside non-final path segments & inside fn ptr types is futile | This concerns both universal and existential impl-Trait.
Since #48084 (2018) we reject impl-Trait inside qselves and non-final path segments (during AST ~~validation~~ lowering (since #132214)).
Since #45918 (2017) we reject impl-Trait inside fn ptr types (during AST lowering).
However, both checks are purely syntact... | T-compiler,A-impl-trait,C-bug,T-types | low | Minor |
2,616,274,084 | excalidraw | feature request: add support for google fonts | null | enhancement | low | Minor |
2,616,279,412 | tauri | [bug] IPC fails in non-http protocol windows | ### Describe the bug
When a window is created using a non-http protocol (data:text/html,) the value of Origin is empty when calling the rust backend command. However, Origin is required when parsing the call request.
https://github.com/tauri-apps/tauri/blob/7a1a3276c49320162300fbcfecec9f6a948d65e8/crates/tauri/sr... | type: bug,status: needs triage | low | Critical |
2,616,304,220 | ui | [bug]: Unable to install any component when a folder is restricted in the project | ### Describe the bug
I'm using docker-compose to run a postgres db in my project. This creates a postgres_data folder in my project that is causing a permission denied error when attempting to install any component.
### Affected component/components
All
### How to reproduce
1. Configure docker-compose.y... | bug | low | Critical |
2,616,304,727 | tauri | [bug] Inconsistent `register_uri_scheme_protocol` behaviour on Windows. Connection refused for requests from iframe. | ### Describe the bug
**Note: The error only happens on Windows.**
## What I was trying to do
I was trying to load a static website from local file system into a tauri app using iframe (for a plugin system).
To achieve this, I implemented a custom protocol with `register_uri_scheme_protocol`.
What I did wa... | type: bug,platform: Windows,status: needs triage | low | Critical |
2,616,368,660 | pytorch | fatal error C1083: 无法打开包括文件: “cstddef”: No such file or directory error on windows | ### 🐛 Describe the bug
https://github.com/microsoft/DeepSpeed/issues/6673
try install deepspeed . on torch 2.5.0-cuda
then
running build_ext
```error
D:\my\env\python3.10.10\lib\site-packages\torch\utils\cpp_extension.py:416: UserWarning: The detected CUDA version (12.5) has a minor version mismatch with the ... | needs reproduction,module: windows,module: cpp-extensions,module: cpp,triaged | low | Critical |
2,616,403,720 | rust | Enabling `keyword_idents` lints doesn't warn about violations in other files | Consider this tiny two-file crate:
```rust
// main.rs
#![deny(keyword_idents)]
mod submod;
fn main() {}
```
```rust
// submod.rs
fn async() {}
fn await() {}
fn try() {}
fn dyn() {}
fn gen() {}
```
Building this crate should fail with several violations of the `keyword_idents_2018` and `keyword_idents_2024` lints. ... | A-lints,T-compiler,C-bug | low | Major |
2,616,412,685 | pytorch | Dependency management corrupted in pytorch 2.5.0 | ### 🐛 Describe the bug
### Expected behavior
When using a project still using python 3.8, the version of Pytorch used should be smaller than `2.5.0`.
```toml
[tool.poetry.dependencies]
python = ">=3.8"
...
torch = ">=2.0.0, !=2.0.1, !=2.1.0"
```
## Bug description
Nevertheless, the installer (in this ... | module: binaries,triaged | low | Critical |
2,616,415,925 | ollama | ollama.com search no longer paginates | ### What is the issue?
If you search for models on the website, only one page is displayed. You can no longer find all the models.
### OS
macOS
### GPU
Apple
### CPU
Apple
### Ollama version
0.3.14 | bug,ollama.com | low | Minor |
2,616,423,679 | ant-design | 增强 Row/Col 布局组件以支持 ContainerQuery | ### What problem does this feature solve?
目前 Row/Col 的布局虽说解决了些问题,但是比较局限和鸡肋,为什么呢?目前的响应式是根据整个屏幕的宽度来的,这个对于设计网站首页或以整个屏幕为基准的界面设计是没问题的,但是对于中后台页面不怎么适用,比如对于增删改查的表单,一般都是弹框式的,而这个弹框的宽度肯定只是有限的(一般小于屏幕的宽度,大于在40%-70%的屏幕宽度之间),而此时如果在Dialog中的表单上使用Row/Col 布局组件显然响应式断点整体的宽度应该相对于Dialog的宽度而不是整个屏幕的宽度。
### What does the proposed API look... | 💡 Feature Request,👷🏻♂️ Someone working on it | low | Major |
2,616,452,036 | next.js | Turbopack Not Compiling Tailwind CSS Changes in Safari | ### Link to the code that reproduces this issue
https://github.com/infinity-atom42/nextjs-turbopack-bug
### To Reproduce
1. **Initialize a New Next.js Project:**
```bash
npx create-next-app@15.0.1 .
```
2. **Configure Project Settings:**
Respond with **Yes** to all prompts except for custo... | Turbopack,linear: turbopack,CSS | medium | Critical |
2,616,519,968 | transformers | Beit image classification have different results compared from versions prior to 4.43.0 | ### System Info
- `transformers` version: 4.43.0
- Platform: Windows-10-10.0.19045-SP0
- Python version: 3.10.9
- Huggingface_hub version: 0.26.1
- Safetensors version: 0.4.5
- Accelerate version: 0.23.0
- Accelerate config: not found
- PyTorch version (GPU?): 1.13.1+cu117 (True)
- Tensorflow version (GPU... | bug,Vision | low | Major |
2,616,534,121 | neovim | Document how to defend against side effects of `nvim_get_option_value()` with `filetype` option | ### Problem
I found an attempt to call `vim.lsp.semantic_tokens.start()` on nonexisting buffer and then found that it was a dummy buffer created by `vim.api.nvim_get_option_value('lisp', { filetype = 'lua' })` called by some plugin. The following part
https://github.com/neovim/neovim/blob/25b53b593ef6f229fbec5b3dc205... | enhancement,documentation,api,lsp | low | Critical |
2,616,550,543 | rust | HashMap: panic in element destructor causes leaks of unrelated elements | <!--
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
When dropping a `HashMap` (or `HashSet`) and an element's destructor panics, then all elements that would be dropped after are leaked. This is inconsistent with... | A-destructors,A-collections,T-libs,C-discussion,I-memleak | low | Critical |
2,616,569,118 | flutter | [url_launcher] Link widget messes up TAB traversal on web | ### What package does this bug report belong to?
url_launcher
### What target platforms are you seeing this bug on?
Web
### Have you already upgraded your packages?
Yes
### Dependency versions
<details><summary>pubspec.lock</summary>
```lock
# Generated by pub
# See https://dart.dev/tools/pub/... | platform-web,p: url_launcher,package,has reproducible steps,P2,team-web,triaged-web,found in release: 3.24,found in release: 3.27 | low | Critical |
2,616,573,840 | ui | [bug]: facing issue while trying to install shadcn with npx command, working with bun but not working with npx | ### Describe the bug
Something went wrong. Please check the error below for more details.
If the problem persists, please open an issue on GitHub.
Command failed with exit code 1: npm install tailwindcss-animate class-variance-authority lucide-react @radix-ui/react-icons clsx tailwind-merge
npm error code ERESOLV... | bug | low | Critical |
2,616,608,536 | rust | Missing documentation of `use` bounds | ### Location
Concerns `rustc --explain E0700`, the Rust Book, and the Reference.
### Summary
I originally asked [this StackOverflow question](https://stackoverflow.com/questions/79129687/what-is-rusts-uselifetime-syntax?noredirect=1#comment139529892_79129687) and was advised to file a bug.
The new `use` keyword, ap... | T-compiler,A-docs,T-libs | low | Critical |
2,616,614,384 | yt-dlp | [Boosty] Support audio-only content | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm requesting a site-specific feature
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instructions](https://github... | site-enhancement,triage | low | Critical |
2,616,623,048 | godot | When duplicating a node with property setters, changing either duplicate's or original's properties temporarily changes the other | ### Tested versions
v4.3.stable.official.77dcf97d8 and also 4.2
### System information
Linux pop-os 6.9.3-76060903-generic
### Issue description
Duplicating a scene with properties, then trying to change those properties, can visually affect the original and duplicate scenes. On reload of the parent scene, only t... | bug,topic:editor,needs testing | low | Minor |
2,616,642,117 | godot | Keyframes added to animation from the animation panel occasionally change positions and replace other keyframes | ### Tested versions
Godot 4.3 Stable
### System information
Windows 10 x64, Godot 4.3 Stable, NVIDIA 3060 Ti + Ryzen 5600x
### Issue description
Keyframes, created from within the animation panel, can move around and replace other keyframes.
Also, this error message popped up:
 - dedicated NVIDIA GeForce RTX 4070 (NVIDIA; 32.0.15.6094) - 13th Gen Intel(R) Core(TM) i7-13700KF (24 Threads)
### Issue description
For the last week I've been ... | needs testing,topic:animation | low | Critical |
2,616,663,980 | ant-design | -ms-high-constrast is in the process of being deprecated. Please see https://blogs.windows.com/msedgedev/2024/04/29/deprecating-ms-high-contrast/ for tips on updating to the new Forced Colors Mode standard. | ### Reproduction link
[https://antd@5.x](https://antd@5.x)
### Steps to reproduce
formitem
### What is expected?
关闭警报或者修复
### What is actually happening?
-ms-high-constrast is in the process of being deprecated. Please see https://blogs.windows.com/msedgedev/2024/04/29/deprecating-ms-high-contrast/... | Inactive | low | Major |
2,616,672,208 | PowerToys | Strange empty desktop overlay with TextExtractor active | ### Microsoft PowerToys version
0.85.1
### Installation method
PowerToys auto-update
### Running as admin
None
### Area(s) with issue?
TextExtractor
### Steps to reproduce
Start TextExtractor any way
### ✔️ Expected Behavior
Only the TextExtractor overlay with the whole desktop with all windows visible as it... | Issue-Bug,Needs-Triage,Needs-Team-Response | low | Minor |
2,616,680,855 | rust | Upgrading from 1.81 to 1.82 create unconsistent exe file (Release only): Mingw-w64 runtime failure: 32 bit pseudo relocation | About my project https://github.com/mvvvv/StereoKit-rust I was able to create from linux (mingw 13 & 14.2) and windows (MSYS 14.2) a working windows-exe binary created with gcc.
after update to 1.82 I systematically have the following error when launching the windows-exe (windows11-pro or wine):
`Mingw-w64 runtime fai... | T-compiler,O-windows-gnu,C-discussion | medium | Critical |
2,616,690,582 | deno | Cannot read properties of undefined (reading 'bold') when Nextjs run with Turbopack | Version: Deno 2.0.3
I get it error when run with deno.
```
TypeError: Cannot read properties of undefined (reading 'bold')
at getDefs (file:///D:/Me/Projects/dev/deponet-store/node_modules/.deno/next@15.0.1/node_modules/next/dist/compiled/babel/bundle.js:1848:5496)
at highlight (file:///D:/Me/Projects/... | needs info,nextjs | low | Critical |
2,616,693,119 | terminal | Problems with cursor position escape | ### Windows Terminal version
1.22.2912.0
### Windows build number
10.0.22631.4196
### Other Software
https://github.com/cracyc/msdos-player/blob/vt/msdos.cpp#L1088
### Steps to reproduce
Start it in a new console window or run in an existing one and execute a command with lots of output.
### Expected Behavior
... | Product-Conpty,Area-Server,Issue-Bug | low | Major |
2,616,708,374 | kubernetes | GRPC healthprobe cannot handle TLS | ### What happened?
Since version 1.27 kubernetes supports the gprc healthserver for readyness and liveness probes.
I now have several services that use grpc with self-signed tls certificates. The certificates are stored as secrets in the cluster. It took me quite a while to understand why my liveness probes always... | priority/backlog,sig/node,kind/feature,triage/accepted | low | Critical |
2,616,712,649 | PowerToys | [Always on Top] Functionality fails on background click when foreground window is MobaXterm, background application is Excel. | ### Microsoft PowerToys version
0.84.1
### Installation method
GitHub
### Running as admin
Yes
### Area(s) with issue?
Always on Top
### Steps to reproduce
The `Always on Top` functionality is not working correctly. Currently, it has been observed that when the background application is `Microsoft Excel` and ... | Issue-Bug,Needs-Triage | low | Minor |
2,616,715,529 | deno | `deno fmt --quiet --check` does not exit on first difference found & does not have a `--fail-fast` option | Version: Deno 2.0.3
`deno fmt`
- updates files.
`deno fmt --check`
- if 0 issues:
- prints all needed updates.
- returns 0.
- if 1 or more needed updates:
- prints: `error: Found 1 not formatted file in 1 file`.
- returns 1.
`deno fmt --quiet --check`
- if 0 issues:
- returns 0.
- if 1 or m... | good first issue,suggestion | low | Critical |
2,616,719,185 | yt-dlp | Shout no longer working, extractor needs update? | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm reporting that yt-dlp is broken on a **supported** site
- [X] I've verified that I have **updated yt-dlp to nightly or master** ([update instruc... | site-request | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.