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,781,443,131 | godot | Can't use window manager shortcuts to resize/fullscreen/minimize a floating game window anymore depending on focus | - *Related to https://github.com/godotengine/godot/issues/100883.*
### Tested versions
- Reproducible in: 4.4.dev 24d74510e
### System information
Godot v4.4.dev (24d74510e) - Fedora Linux 41 (KDE Plasma) on X11 - X11 display driver, Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4090 (n... | bug,platform:linuxbsd,topic:editor,topic:porting | low | Minor |
2,781,456,293 | flutter | Flutter Notable Commits - 2025 | <!--- From https://upload.wikimedia.org/wikipedia/commons/e/e3/Weighing_a_marlin_on_a_wharf_%28AM_74863-1%29.jpg --->
<img src="https://user-images.githubusercontent.com/1377460/221257032-4e8a1ee4-5250-4ecb-9df9-4f03817d5e08.jpeg" align="left" width="250" />
<p>
For years, Flutter's Framework team has been reviewin... | framework,engine,P1,permanently locked,team-framework,triaged-framework | medium | Minor |
2,781,460,028 | transformers | from_pretrained fails to save weights.py and layers.py into cache, therefore fails to find them in cache | - weights.py and layers.py confirmed exist in local model folder, originally saved via cloning (attempt1) and via save_pretrained (attempt2)
- attempting to set custom cache dir as argument or by TRANSFORMERS_CACHE ENV... both ways no effect
- cache folder and other files are saved successfully, so not a permissions ... | bug | low | Minor |
2,781,460,982 | kubernetes | [Compatibility Version] Provide option for a feature to opt out of emulated version | ### Why is this needed?
If a Beta feature is going through a lot of changes, it could be impractical to be fully emulate the old behavior at the emulated version: it might mean a lot of `if else` statements.
### What should we do?
Instead of failing at unexpected places, or emulate the feature with unpredictable ... | sig/api-machinery,sig/architecture,triage/accepted | low | Critical |
2,781,465,384 | godot | Float-to-int cast and rounding math functions are inconsistent between platforms on non-finite cases | ### Tested versions
- Reproducible in: v4.3.stable.flathub [77dcf97d8]
### System information
Phone:
Android 10, Samsung Galaxy J6+ (SM-J610G), armeabi-v7a - OpenGL API OpenGL ES 3.0 V@415.0 (GIT@d39f783, I79de86aa2c, 1591296226) (Date:06/04/20) - Compatibility - Using Device: Qualcomm - Adreno (TM) 308
PC (x64):
G... | bug,topic:core,topic:porting | low | Critical |
2,781,468,988 | flutter | Cocoon `listFiles()` logic is faulty: only looks at the first 30 files in the PR! | Cocoon [uses a wrapper](https://github.com/flutter/cocoon/blob/00e056313e88d81ea5a96bea24f78f05b86b105e/app_dart/lib/src/service/github_service.dart#L270-L281) around the GitHub REST API that calls ["List pull request files"](https://docs.github.com/en/rest/pulls/pulls?apiVersion=2022-11-28#list-pull-requests-files):
... | team-infra,P1,c: tech-debt | medium | Minor |
2,781,475,416 | flutter | `Icons.link_sharp` displays as a thin outline at sizes < 100 on Windows desktop | ### Steps to reproduce
1. Add `Icon(Icons.link_sharp)` and `Icon(Icons.link_sharp, size: 100)` in flutter code.
2. Run the app and view the result.
### Expected results
Icon should be filled regardless of size.
### Actual results
Icon displays as a thin outline at sizes < 100. Below is a screenshot with the ico... | platform-windows,a: desktop,P3,team-windows,triaged-windows | low | Minor |
2,781,498,679 | pytorch | Compiling with clang fails in torch inductor, miscategorized as gcc | ### 🐛 Describe the bug
In torch inductor, if the clang compiler is used on Linux, it may be miscategorized as gcc.
Specifically in the current code below, the regex will match with ```clang++```, and then return that the compiler is gcc.
```python
def _is_gcc(cpp_compiler: str) -> bool:
if sys.platform ... | triaged,oncall: pt2,module: inductor | low | Critical |
2,781,500,704 | react-native | Warnings from react-native & @react-native/codegen about missing Peer Dependencies | ### Description
Using yarn 3.6.4 (berry) on a new react-native project, I get the following dependency warnings:
```shell
$ yarn
➤ YN0000: ┌ Resolution step
➤ YN0002: │ @react-native/babel-plugin-codegen@npm:0.76.6 doesn't provide @babel/preset-env (pda3fc), requested by @react-native/codegen
➤ YN0002: │ babel-pl... | Resolution: PR Submitted | low | Minor |
2,781,502,794 | PowerToys | The software fails to enable the automatic display sleep on Windows systems. | ### Microsoft PowerToys version
0.87.1
### Installation method
Microsoft Store
### Running as admin
None
### Area(s) with issue?
Awake
### Steps to reproduce
After installing the software, using the system's power management to automatically turn off the display causes the system to immediately wake up each ti... | Issue-Bug,Needs-Triage | low | Minor |
2,781,523,987 | flutter | [iOS] Hot restart randomly stops working on real devices after upgrading to Flutter 3.27.1 | ### Steps to reproduce
1. Upgrade to Flutter 3.27.1
2. Connect iPhone 15 Pro
3. `flutter run --verbose`
4. Press R
Happens on all apps.
### Expected results
Hot restart completes.
### Actual results
Hot restart almost never completes between iPhone Pro and MacBook Pro.
Rarely, and unexplainably,... | e: device-specific,platform-ios,tool,t: hot reload,e: OS-version specific,team-ios | low | Critical |
2,781,525,934 | langchain | Runtime/post init request header patch for LLMs does not work | ### 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 b... | 🤖:bug,Ɑ: models | low | Critical |
2,781,579,119 | go | proposal: sync: add WaitGroup.Notify to use with select | ## Background
Integrating `WaitGroup` with `select` statements, especially in context-aware operations where cancellation might be necessary, requires creating an additional channel for signaling.
## Proposal
I propose extending `sync.WaitGroup` with a new method:
```go
func (wg *WaitGroup) Notify() <- ch... | Proposal,LibraryProposal | low | Major |
2,781,582,823 | tauri | [bug] Cannot start iOS simulator without external network | ### Describe the bug
Hey,
When trying to start iOS simulator with `RUST_BACKTRACE=full. bun run tauri ios dev --host` I am unable to do so and tauri exits with the following stacktrace:
```
No external IP detected.
stack backtrace:
0: 0x11b54c5bc - _napi_register_module_v1
1: 0x11b179d8... | type: bug,status: needs triage | low | Critical |
2,781,589,304 | PowerToys | POWER RUN DOES NOT WORK PROPERLY | ### Microsoft PowerToys version
0.87.1
### Installation method
Microsoft Store
### Running as admin
None
### Area(s) with issue?
PowerToys Run
### Steps to reproduce
Execute the keyboard command to use Power Run
### ✔️ Expected Behavior
The keyboard command (default or custom) may show the search bar
### ❌ ... | Issue-Bug,Needs-Triage | low | Critical |
2,781,619,181 | transformers | running utills.fx.symbolic_trace on gp2 raised an error: torch.fx.proxy.TraceError: Proxy object cannot be iterated, which does not occur in the previous version | ### System Info
- `transformers` version: 4.48.0
- Platform: Linux-4.18.0-535.el8.x86_64-x86_64-with-glibc2.28
- Python version: 3.9.21
- Huggingface_hub version: 0.27.0
- Safetensors version: 0.4.5
- Accelerate version: 1.2.1
- Accelerate config: - compute_environment: LOCAL_MACHINE
- distributed_ty... | bug | low | Critical |
2,781,620,946 | pytorch | broken `torch.compile` with `"meta"` device tensors | ### 🐛 Describe the bug
Consider the following code:
```python
import torch
@torch.compile
def foobar(x):
return x * 2
def test(device):
foobar(torch.empty((1, 16, 128, 128), device = device))
foobar(torch.empty((1, 32, 64, 64), device = device))
# OK
test("cuda")
print("cuda ok")
# F... | good first issue,triaged,actionable,oncall: pt2,module: dynamic shapes,module: inductor | low | Critical |
2,781,623,750 | rust | Building rustc-1.84.0 tarball fails when using system LLVM | I have LLVM 19.1.6 installed on my system, and when building, I encounter the following:
```
Dist rust-std-1.84.0-x86_64-apple-darwin
finished in 0.534 seconds
Installing stage2 std (x86_64-apple-darwin)
install: creating uninstall script at /tmp/dst.rustc/usr/local/lib/rustlib/uninstall.sh
install: installing compon... | A-LLVM,O-macos,T-bootstrap,C-bug,O-apple | medium | Critical |
2,781,624,400 | PowerToys | MiniDump settings | ### Description of the new feature / enhancement
I would really like to see a tweaker that would allow us to set a windows memory dump to save in a particular place with a particular name that can be created by using varialbles. Mainly I want to see a way to save every crash with a name that uses the date in a format ... | Needs-Triage | low | Critical |
2,781,627,676 | deno | Many new access requests for DNS and IPs that were not in 2.1.4 | Version: Deno 2.1.5
I'm connecting to Twitch with the `npm:@twurple/*` packages.
**None of these access requests are necessary in 2.1.4 or earlier.**
Re-confirmed by downgrading to 2.1.4.
Probably related to https://github.com/denoland/deno/pull/25470, maybe also https://github.com/denoland/deno/pull/27572.
Deno scr... | question,working as designed | low | Critical |
2,781,629,203 | godot | Static typing for for loop variable errors on invalid references | ### Tested versions
v4.3.stable.official [77dcf97d8]
### System information
Godot v4.3.stable - Windows 10.0.19045 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 2060 (NVIDIA; 32.0.15.6636) - AMD Ryzen 5 7600X 6-Core Processor (12 Threads)
### Issue description
v4.3.stable.official [77dcf97d8]
The recently ad... | bug,discussion,topic:gdscript | low | Critical |
2,781,646,353 | transformers | Unsupported: hasattr SkipFunctionVariable when i compile the mixtral model with muti-gpus | ### System Info
none
### Who can help?
_No response_
### Information
- [ ] The official example scripts
- [ ] My own modified scripts
### Tasks
- [ ] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...)
- [ ] My own task or dataset (give details below)
### Reproduction
import torch
... | bug | low | Critical |
2,781,691,945 | PowerToys | Applying a custom contrast theme in windows causes an exception | ### Microsoft PowerToys version
0.87.1
### Installation method
PowerToys auto-update
### Running as admin
No
### Area(s) with issue?
PowerToys Run
### Steps to reproduce
- Open the Windows Settings app
- Go to Accessibility/Contrast Themes
- Select and apply a **custom** contrast theme **OR** select *"None"* w... | Issue-Bug,Needs-Triage | low | Critical |
2,781,715,044 | node | MD5 SIMD | ### What is the problem this feature will solve?
MD5 hashing is quite commonly used for file handling in HTTP. However, the algorithm is quite slow and is not able to fully utilize modern hardware.
### What is the feature you are proposing to solve the problem?
While it's not possible to do much more to optimize a s... | feature request | low | Major |
2,781,725,672 | pytorch | Build breaks on FreeBSD on arm platforms: Unrecognized CMAKE_SYSTEM_NAME = FreeBSD | ### 🐛 Describe the bug
```
-- The ASM compiler identification is Clang with GNU-like command-line
-- Found assembler: /usr/local/llvm15/bin/clang
CMake Error at aten/src/ATen/native/quantized/cpu/qnnpack/CMakeLists.txt:65 (message):
Unrecognized CMAKE_SYSTEM_NAME = FreeBSD
-- Configuring incomplete, errors... | module: build,triaged | low | Critical |
2,781,726,542 | flutter | `DartUri: Cannot read packages spec` in workspace environment | ### Steps to reproduce
Short: Create a flutter project inside a workspace and add a web target.
1. Create an empty folder
2. Add a `pubspec.yaml` with a `name` and `workspace` attribute
3. Create a subfolder using `flutter create --platforms=web -e app`
4. Add `resolution: workspace` to its `pubspec.yaml` and th... | tool,has reproducible steps,P1,team-tool,triaged-tool,found in release: 3.27,found in release: 3.28 | medium | Critical |
2,781,751,841 | flutter | How to obtain Flutter Engine Unit Test Coverage on Android | ### Steps to reproduce
I can run Flutter Engine Unit Test on Android through such a command:
`./testing/run_tests.py --type android --android-variant android_debug_arm64`
but how to obtain unit test coverage? It seems that --coverage is not supported on the android platform.
### Expected results
I can obtain t... | a: tests,platform-android,engine,P2,team-android,triaged-android,e: engine-tests-in-framework-repo | low | Critical |
2,781,753,531 | deno | 2.1.5 requires API IsWow64Process2 | Version: Deno 2.1.5
Tested on 64-bit Windows Server 2012R2 / Windows 6.3 (build 6300).
Downgrading to 2.1.4 fixes the issue.
| bug,help wanted | low | Minor |
2,781,753,899 | three.js | Improve explanation on how to migrate from 151 to 152 color management | ### Description
I feel that certain revisions to instructions provided in "[Updates to Color Management in three.js r152](https://discourse.threejs.org/t/updates-to-color-management-in-three-js-r152/50791)" would benefit the community.
### Solution
Merge the following text into the current explanation where ap... | Suggestion,Documentation | low | Major |
2,781,754,386 | godot | scaling node3d containing character3d to <0 causes hang (gpu or system) | ### Tested versions
4.3
### System information
windows 10
### Issue description
gpu or system hang.
dont want everything to break.
### Steps to reproduce
- run preview
- 2-view with one cinematic preview mode also
- transform scale a node3d containing a characterbody, to below 0
- hang gpu or system
did it twic... | bug,topic:physics,needs testing,crash,topic:3d | low | Minor |
2,781,772,198 | transformers | Segmentation fault: address not mapped to object at address 0x100000007 | ### System Info
transformers-cli env causes the same Segfault.
Uname-a: `Linux matteo-thinkpadr61 6.12.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 02 Jan 2025 22:52:26 +0000 x86_64 GNU/Linux
`
[cpuinfo.txt](https://github.com/user-attachments/files/18385563/cpuinfo.txt)
[piplist.txt](https://github.com/user-attachments/... | bug | low | Critical |
2,781,776,407 | react-native | TextInput inside ScrollView is immediately closed when covered by IME | ### Description
`TextInput` inside a `ScrollView` immediately closes itself when obstructed by the input method window.
This was originally discovered by @anarchtism and haaaaah.
### Steps to reproduce
1. Install https://codeberg.org/natkr/SuperTallInputMethod (clone and `./gradlew installDebug`)
2. Open the Sup... | Component: TextInput,Component: ScrollView,Needs: Repro,Needs: Attention | low | Critical |
2,781,781,611 | pytorch | Inductor C++ Wrapper + autograd cause error in the second run because of FX graph cache | ### 🐛 Describe the bug
```python
import torch
import torch._inductor.config as config
from torch import Tensor
config.cpp_wrapper = True
@torch.compile
def foo(x: Tensor):
return x.sin()
x = torch.tensor(0.0, device="cuda", requires_grad=True)
foo(x).backward()
print(x.grad)
```
run this... | triaged,module: fx,oncall: pt2,module: inductor,compile-cache | low | Critical |
2,781,797,020 | ui | [feat]: Button behavior | ### Feature description
In a recent project, I needed to add a new behavior to the button component, which is quite simple to do using ShadCN. Later, when I started another project, I felt the need for the same feature again and thought it might be useful if this behavior was part of the default ShadCN package.
T... | area: request | low | Minor |
2,781,800,777 | rust | rustc segfaults on `global_asm!("jz [foo]")` on x86_64-pc-windows-msvc (exit code: 0xc0000005, STATUS_ACCESS_VIOLATION) | <!--
Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide
a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for
how to create smaller examples.
http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
-->
### Code
```Rust
use std::arch::global_asm;
g... | I-crash,A-LLVM,O-windows,T-compiler,O-windows-msvc,C-bug | low | Critical |
2,781,821,785 | rust | Unexpected result when selecting aliases | Happens when building docs `cargo docs --document-private-items`
https://github.com/paradigmxyz/reth/pull/13735
https://github.com/paradigmxyz/reth/pull/13735/commits/2fe6d519b4a8d0c22aaf49d161aac498618c21b6
<!--
Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide
a minimal verifiable ... | T-rustdoc,I-ICE,C-bug,A-synthetic-impls,A-auto-traits | low | Critical |
2,781,821,907 | neovim | Treesitter `query:iter_captures()` don't respect `stop` parameter | ### Problem
Both reproducible on `latest` and `nightly`.
I use treesitter to query some special code block in python code. In this case, I want to capture the content of string expression statement in special range.
But the `start` parameter is respected, but `stop` parameter don't.
### Steps to reproduce
Save... | bug,has:workaround,treesitter | low | Critical |
2,781,835,163 | godot | Godot Editor does not support Custom Android Build Templates written in Kotlin (build.gradle.kts) | ### Tested versions
- Reproducible in **Godot 4.3** v4.3.stable.offlicial [77dcf97d8]
### System information
Windows 11 Godot v4.3.stable.offlicial [77dcf97d8] Mobile
### Issue description
In the Godot Source code: [platform/android/export/export_plugin.cpp#L2552](https://github.com/godotengine/godot/blob/abf8e1e... | enhancement,discussion,platform:android,topic:export | low | Minor |
2,781,848,795 | pytorch | some errors in torch.compile(model,fullgraph=True,mode="reduce-overhead") on muti-gpu | ### 🐛 Describe the bug
code:
```python
import torch
from transformers import StaticCache
NUM_TOKENS_TO_GENERATE = 40
torch_device = "cuda"
from torch.nn.attention import SDPBackend, sdpa_kernel
def decode_one_tokens(model, cur_token, input_pos, cache_position, past_key_values):
logits = model(
cur_token,
... | needs reproduction,triaged,oncall: pt2 | low | Critical |
2,781,866,496 | kubernetes | VolumeAttachment is not deleted when the CSI plugin change from requiring attach to not requiring attach | ### What happened?
After [volumeAttacher.Attach](https://github.com/kubernetes/kubernetes/blob/v1.32.0/pkg/volume/util/operationexecutor/operation_generator.go#L271) executes successfully, the volumeattachment will be created. At this point, if CSI's ATTACHREQUIRED changes from true to false, it will cause [MarkVolume... | kind/bug,sig/storage,needs-triage | low | Critical |
2,781,877,129 | PowerToys | Add Cloud-Based TTS Voices as System-Wide Windows Voices | ### Description of the new feature / enhancement
The feature would allow users to register cloud-based Text-to-Speech (TTS) services, such as Azure Cognitive Services or OpenAI's TTS API, as system-wide Windows voices. These voices would appear in the Windows Speech settings and would be selectable in any application ... | Needs-Triage | low | Minor |
2,781,878,383 | godot | Gridmap Duplicate/Move tool: Cursor is jumping to a new position | ### Tested versions
Godot 4.3dev7
### System information
Godot v4.4.dev7 - Windows 11 (build 22631) - Multi-window, 2 monitors - OpenGL 3 (Compatibility) - NVIDIA GeForce RTX 2060 (NVIDIA; 32.0.15.5613) - Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz (12 threads)
### Issue description
When pressent C or X to duplicate... | bug,topic:editor,topic:3d | low | Minor |
2,781,885,357 | godot | Gridmap Moving/Duplicating tool: Undo does not cancel the operation correctly | ### Tested versions
Godot 4.4dev7
### System information
Godot v4.4.dev7 - Windows 11 (build 22631) - Multi-window, 2 monitors - OpenGL 3 (Compatibility) - NVIDIA GeForce RTX 2060 (NVIDIA; 32.0.15.5613) - Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz (12 threads)
### Issue description
When we press CTRL+Z (Undo) while... | bug,topic:editor,topic:3d | low | Minor |
2,781,905,080 | flutter | MenuAnchor is overlapping with button when opening upwards | ### Steps to reproduce
Simply run the sample code within documentation page code editor of sample #2.
On rendered UI, click button on top and click button on bottom and compare the layout.
---
I was checking documentation of PopupMenuButton https://api.flutter.dev/flutter/material/PopupMenuButton-class.html ,... | d: examples,platform-web,a: desktop,has reproducible steps,P2,team-design,triaged-design,found in release: 3.27,found in release: 3.28 | low | Critical |
2,781,918,475 | pytorch | [CUDA] Illegal Memory Access with `ConvTranspose2d` | ### 🐛 Describe the bug
The following code causes illegal memory access in PyTorch.
```python
import torch
D = 40000
C = 10
m1 = torch.randn(C, D, 2).cuda()
model = torch.nn.ConvTranspose2d(C, 2, kernel_size=(1, 1), stride=(200, 200)).cuda()
model(m1)
```
The bug is detected via `computer-sanitizer`
```b... | module: cuda,triaged,topic: fuzzer | low | Critical |
2,781,920,096 | pytorch | [CUDA] Illegal Memory Access with `torch.bmm` | ### 🐛 Describe the bug
The following code causes illegal memory access in PyTorch.
```python
import torch
m1 = torch.randn(2, 291105, 1).to_sparse().cuda()
m2 = torch.randn(2, 1, 1).cuda()
print([m1.size(), m2.size()])
torch.bmm(m1, m2)
```
The bug is detected via `computer-sanitizer`
```bash
comput... | module: cuda,triaged,topic: fuzzer | low | Critical |
2,781,928,167 | PowerToys | Advanced Paste: Switch from gpt-4o to gpt-4o-mini | ### Description of the new feature / enhancement
**Summary:**
Switching from GPT-4o to GPT-4o Mini in the Advanced Paste feature can save **94% on input tokens** and **16.7x cheaper output tokens**, with minimal performance difference. MMLU benchmark: 82% (GPT-4o Mini) vs. 88.7% (GPT-4o).
---
### Change:
- **File:... | Needs-Triage | low | Major |
2,781,932,802 | transformers | static cache with mixtral will cause CUDA error: device-side assert triggered | ### System Info
None
### Who can help?
_No response_
### Information
- [X] The official example scripts
- [ ] My own modified scripts
### Tasks
- [ ] An officially supported task in the `examples` folder (such as GLUE/SQuAD, ...)
- [ ] My own task or dataset (give details below)
### Reproduction
## code
``` b... | bug | low | Critical |
2,781,935,134 | pytorch | The label marked by torch.profiler.profile.record_function() appears twice in the output | ### 🐛 Describe the bug
I have followed the tutorials in [link](https://pytorch.org/tutorials/recipes/recipes/profiler_recipe.html)
I ran the code as follows
```python
import torch
import torchvision.models as models
from torch.profiler import profile, record_function, ProfilerActivity
if torch.cuda.is_avail... | oncall: profiler | low | Critical |
2,781,944,274 | pytorch | Different Result with Different GPUs (A6000, A40) | ### 🐛 Describe the bug
I set most of parameters right but get different result with different GPUs.
### Versions
```
def set_deterministic_pytorch(seed: int):
# Set CUBLAS workspace config
cublas_workspace_config = os.environ.get("CUBLAS_WORKSPACE_CONFIG")
if cublas_workspace_config is None:
... | needs reproduction,module: cuda,triaged,module: determinism | low | Critical |
2,781,952,467 | PowerToys | Right click menu leftovers after uninstall - "Loading..." | ### Microsoft PowerToys version
0.87.1
### Installation method
GitHub
### Running as admin
None
### Area(s) with issue?
File Locksmith
### Steps to reproduce
Install Powertoys.
Uninstall Powertoys.
Right click on any file in the File Explorer.
Several lines with "Loading..." shows on the context menu briefly a... | Issue-Bug,Needs-Triage | low | Minor |
2,781,955,139 | PowerToys | [Settings] ImageResizer preset descriptions do not show units | ### Microsoft PowerToys version
0.87.1
### Installation method
PowerToys auto-update
### Running as admin
No
### Area(s) with issue?
Settings
### Steps to reproduce
Open the ImageResizer section of the Settings application and observe the **Image sizes** section of the page.
### ✔️ Expected Behavior
The unit... | Issue-Bug,Product-Settings,Resolution-Fix Committed,Product-Image Resizer | low | Minor |
2,781,958,802 | vscode | Ctrl-click links don't make browser active window |
Type: <b>Bug</b>
When clicking 'Follow link' on link hover it does activate browser window, instead they should either both do or don't (preferably do because I had no ideas browser tabs were even opening resulting in a mess of tabs which is bad UX)
, Intel (XPU), AMD (ROCm) | ### 🚀 The feature, motivation and pitch
Allow a single pytorch binary/pkg to support all major gpu platforms. One pytorch env that can execute code on `cpu`, `mps`, `cuda`, `xpu`, and `rocm`. Not 3 torch virtual envs where they can't talk to each other.
Reasons why we need this:
* It is only the natural soluti... | module: build,feature,module: rocm,triaged | low | Minor |
2,782,043,007 | godot | Posix formatting strings visible in Visual Studio output on building | ### Tested versions
4.4 Master
### System information
Windows 10 - Visual Studio 2022
### Issue description
I have noticed recently that the way the compilation status is displayed in the output has become not very readable, for example we can see text like `[34mCompiling [1mmodules\godot_physics_3d\godot_step_3d.... | platform:windows,topic:buildsystem,needs testing,regression | low | Major |
2,782,065,982 | langchain | Offset by 1 bug on RecursiveJsonSplitter::split_json() function | ### 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 b... | 🤖:bug | low | Critical |
2,782,077,791 | yt-dlp | [vice] Unable to download JSON metadata: HTTP Error 404: Not Found | ### 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... | account-needed,geo-blocked,site-bug,triage,can-share-account | low | Critical |
2,782,078,480 | next.js | Next build fails only in Github Action | ### Link to the code that reproduces this issue
https://github.com/jpaise/search-frontend
### To Reproduce
```
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '1... | Output (export/standalone) | low | Critical |
2,782,104,953 | next.js | Passing data to both client & server component result in always async server tree | ### Link to the code that reproduces this issue
https://stackblitz.com/edit/stackblitz-starters-ex8vzvqf?file=app%2Fpage.tsx
### To Reproduce
1. Start the application in development
2. Observe the code inside `page.tsx`, `components/client.tsx` and `components/server.tsx`.
3. Note what the children's type of... | create-next-app,Webpack,Turbopack | low | Minor |
2,782,121,020 | ui | [bug]: Responsive Breadcrumb Example Doesn't Work | ### Describe the bug
Looking at the responsive example for the [breadcrumb](https://ui.shadcn.com/docs/components/breadcrumb) component and resizing my browser or opening on my phone doesn't ever seem to trigger the drawer behavior. Is the `useMediaQuery()` hook bugged?
### Affected component/components
Breadcrumb
... | bug | low | Critical |
2,782,121,085 | react-native | Codegen complains about unsupported spec type despite of using `includesGeneratedCode: true` | ### Description
I'm developing Turbo Native Module, which utilizes [Event Emitter JS Spec](https://github.com/reactwg/react-native-new-architecture/blob/main/docs/turbo-modules.md#add-event-emitting-capabilities).
The Event Emitter JS Spec was [cherry-picked in 0.76.2](https://github.com/facebook/react-native/commit/... | Platform: iOS,Needs: Triage :mag:,Type: New Architecture | low | Critical |
2,782,127,789 | rust | Status of the riscv32im-risc0-zkvm-elf target | We currently have a target called `riscv32im-risc0-zkvm-elf`, which targets the [RISC Zero Zero Knowledge VM](https://risczero.com/). This target is maintained by @SchmErik, @jbruestle, @flaub #134721 has revealed some issues in this target.
The biggest issue is that the target sets `target_os = "zkvm"`. A "Zero Knowl... | T-compiler,O-risc0 | low | Major |
2,782,132,053 | vscode | Open Recent doesn't include project if closed in 2nd app instance |
Type: <b>Bug</b>
Currently the list just builds as projects are opened but if 2 VSCodes are open and more than 10 projects opened in 2nd instance, closing open project in 1st instance will not include in list, even though it was factually among the 2 most recently open ones thus still very relevant/useful to this men... | feature-request,workbench-history | low | Critical |
2,782,139,773 | godot | Scons-Generated VS Project is Missing Defines and Include Search Paths for IntelliSense | ### Tested versions
- Reproducible in: master branch
### System information
Windows 10 - Godot master branch
### Issue description
When I generate a Visual Studio project using Scons, the resulting solution opens/compiles/runs in Visual Studio 2022 without issue. However, IntelliSense for various files throughout ... | bug,topic:buildsystem,topic:thirdparty,needs testing | low | Critical |
2,782,144,974 | langchain | [Bug] Arg Returns in docstring not found in function signature even when it is provided | ### 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 ... | 🤖:bug,Ɑ: core | low | Critical |
2,782,169,289 | ui | CanvasRevealEffect does not work on react 19 bc cant import * as THREE from "three"; | ### Feature description
CanvasRevealEffect does not work on react 19 bc cant import * as THREE from "three";
even if you npm install --force framer-motion clsx tailwind-merge three @react-three/fiber
it wont work
<img width="409" alt="Screenshot 2025-01-11 at 3 16 34 PM" src="https://github.com/user-attachments/as... | area: request | low | Minor |
2,782,175,212 | PowerToys | MacOS / Linux like screenshot feature | ### Description of the new feature / enhancement
Provide MacOS-like screenshot utility that could take screenshot and save the place of screenshot for another one (like CMD+SHIFT+5)
### Scenario when this would be used?
Power user is taking a lot of screenshots to document his job. The feature would help to remain p... | Needs-Triage | low | Minor |
2,782,182,366 | godot | Vulkan error: Get_tree().quit() freezes computer for 10+ seconds with a black screen, returns with the console constantly printing this message (Compatability mode is fine) | ### Tested versions
Godot 4.2-4.4 dev 7
### System information
Godot v4.3.stable - Windows 10.0.26100 - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1660 SUPER (NVIDIA; 32.0.15.6636) - AMD Ryzen 5 3600 6-Core Processor (12 Threads)
### Issue description
 fails on .local addresses | ### Tested versions
- Reproducible in v4.3.stable.official [77dcf97d8]
### System information
Godot v4.3.stable - Freedesktop SDK 24.08 (Flatpak runtime) - Wayland - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 2070 SUPER (nvidia) - Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz (8 Threads)
### Issue description
Whe... | bug,topic:network | low | Minor |
2,782,195,854 | flutter | [3.27.] : Build error because of wrong code that's not being shown by IDE | ### Steps to reproduce
When trying to build the app using Flutter 3.27.1 it fails and report code error that's not on "PROBLEMS" tab, even after running flutter clean and everything it persists. Reversing to Flutter 3.22.x the project builds correctly.
### Expected results
Should build or IDE report code error befo... | framework,dependency: dart,f: routes,has reproducible steps,P2,team-framework,triaged-framework,found in release: 3.27,found in release: 3.28 | low | Critical |
2,782,196,455 | material-ui | [material-ui] Compatibility issues with Remix | ### Steps to reproduce
Steps:
1. Install remix defaults `npx create-remix@latest remix-mui-bug`
2. Install mui defaults `npm install @mui/material @emotion/react @emotion/styled`
3. Import and add any MUI component, like a `<Button>`
### Current behavior
Hydration errors (and also for some reason the button co... | bug 🐛,package: material-ui | low | Critical |
2,782,198,653 | vscode | Your Code installation appears to be corrupt. Please reinstall. |
Type: <b>Bug</b>
I have uninstalled VS Code multiple times and attempted to install various versions, including both user and system installations. Despite my efforts, the issue persists. I’ve also tried following numerous YouTube tutorials and read several articles in search of a solution, but nothing has worked so ... | info-needed | low | Critical |
2,782,200,935 | flutter | Gradle Wrapper-related files in Flutter Gradle Plugin sources should be either commited or gitignored | When working on `packages/fluter_tools/gradle` in IntelliJ, I always end up with:
```
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
packages/flutter_tools/gradle/... | platform-android,tool,t: gradle,c: proposal,P1,team-android,triaged-android | medium | Major |
2,782,217,891 | pytorch | 144x less efficient CPU usage when training NN past a certain width | ### 🐛 Describe the bug
The code below is a minimal NN training loop with a fully connected NN of shape (10->width->width->10).
When width is 45, everything is fine, the code takes about 1 second, and only uses 1 CPU.
When width is 46, the code takes 9 seconds, and uses all 16 cpus.
So it's 144x less efficient (w... | module: performance,triaged,module: arm | low | Critical |
2,782,226,572 | pytorch | [MPS] `torch.mps.synchronize` hangs on error | ### 🐛 Describe the bug
Consider following code
```python
import torch
lib=torch.mps._compile_shader("kernel void foo(device float* x) {__builtin_trap();}")
lib.foo(torch.rand(3, device="mps"))
torch.mps.synchronize()
```
It will hang the process, and few attempt to reproduce the same resulted in system hang
... | triaged,module: deadlock,module: mps | low | Critical |
2,782,236,338 | yt-dlp | ERROR: [Globo] xxxxxxx: Unable to download webpage: | ### 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-bug,triage | low | Critical |
2,782,248,172 | tauri | [bug] Rendering not working correctly with GDK_BACKEND=wayland | ### Describe the bug
I am new to tauri but I have this issue:
When running `cargo tauri dev` with `GDK_BACKED=wayland` my app looks like this:

However when running with `GDK_BACKED=x11` it looks like this:
... | a: text input,framework,f: focus,has reproducible steps,P2,workaround available,team-text-input,triaged-text-input,found in release: 3.27,found in release: 3.28 | low | Major |
2,782,262,933 | godot | Uniforms break particle shaders after conversion from a ParticleProcessMaterial | ### Tested versions
- Reproducible in v4.3.stable
### System information
Godot v4.3.stable - Windows 10.0.22631 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 4070 SUPER (NVIDIA; 32.0.15.6636) - 13th Gen Intel(R) Core(TM) i5-13600KF (20 Threads)
### Issue description
I'm experimenting with particle shaders and... | bug,needs testing,topic:shaders,topic:particles | low | Critical |
2,782,274,615 | TypeScript | Getting a setter-only property is typed as the setter's parameter's type instead of undefined | ### 🔎 Search Terms
setter only
### 🕗 Version & Regression Information
- This is the behavior in every version I tried, from 5.7.3 down to 3.3.3333
### ⏯ Playground Link
https://www.typescriptlang.org/play/?ts=5.7.3#code/MYewdgzgLgBANgQzAcwK4OQUxgXhgbwCgYYJNZhUAnKzMKACjAQFtMAuUqKgSxQEoCxEjCgALHhAB0cEMikAHVBDFNWmf... | Suggestion,Awaiting More Feedback | low | Major |
2,782,277,604 | pytorch | CheckpointError with `torch.distributed.algorithms._checkpoint.checkpoint_wrapper` and `torch.compile` | ### 🐛 Describe the bug
```python
import functools
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.distributed.algorithms._checkpoint.checkpoint_wrapper import apply_activation_checkpointing, checkpoint_wrapper, CheckpointImpl
@torch.compile(mode='reduce-overhead')
class SelfAt... | module: checkpoint,triaged,activation-checkpointing | low | Critical |
2,782,288,815 | go | x/crypto/nacl: function docs should describe return values | ### Go version
go version go1.23.0 darwin/arm64
### Output of `go env` in your module/workspace:
```shell
GO111MODULE=''
GOARCH='arm64'
GOBIN=''
GOCACHE='/Users/jeff/Library/Caches/go-build'
GOENV='/Users/jeff/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='arm64'
GOHOSTO... | Documentation,NeedsInvestigation | low | Critical |
2,782,295,985 | PowerToys | "VK242 → Alt" works as bug | ### Microsoft PowerToys version
0.70
### Installation method
Microsoft Store
### Running as admin
None
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
After mapped "VK242 → Alt", any button doesn't work correctly when I use ""VK242 → Alt" + Enter"".
### ✔️ Expected Behavior
_No response_
###... | Issue-Bug,Needs-Triage | low | Critical |
2,782,298,303 | angular | Angular Resource and rxResource | ### Which @angular/* package(s) are relevant/related to the feature request?
core
### Description
Introduce the ability to pause/stop/resume, the resource and rxResource, so that we can temporarily pause/resume the listener for signal changes.
We can use `.destroy()` but the data using this resource is also removed... | area: core,cross-cutting: signals | low | Minor |
2,782,303,895 | ollama | Add MoonDream 2 rev:2025-1-9 support | Moondream2 has a new release, rev 2025-1-9, which is incredibly good for its size
It also support bbox and gaze detection
MoonDream architecture is already supported in ollama, so I think it is easy to cook the new model in ollama | model request | low | Minor |
2,782,305,343 | frp | 将您重定向的次数过多。 | ### Bug Description
我通过frp 映射内网的esxi 服务器控制台地址访问的时候会这样
<img width="954" alt="image" src="https://github.com/user-attachments/assets/932f8f1e-9bf1-41bd-ad75-b20b06c868b5" />
我不确定是不是esxi 局域网访问会提示:不安全的连接提示那个问题导致的重定向
<img width="1337" alt="image" src="https://github.com/user-attachments/assets/84e81c8f-9675-4de9-a564-... | lifecycle/stale | low | Critical |
2,782,317,400 | pytorch | torch.vmap + autograd.Function + current_level bug | ### 🐛 Describe the bug
It we call ```torch._C._functorch.current_level()``` inside of an autograd function's ```setup_context``` method, and then apply ```torch.vmap``` on top of it, it errors out.
Repro:
* Checkout and apply https://github.com/pytorch/pytorch/pull/143811
* Replace ```key = id(Generated)``` with `... | module: autograd,triaged,module: vmap,module: functorch | low | Critical |
2,782,325,719 | PowerToys | error | ### Microsoft PowerToys version
0.87.0.0
### Installation method
PowerToys auto-update
### Running as admin
None
### Area(s) with issue?
General
### Steps to reproduce
Version: 0.87.0.0
OS Version: Microsoft Windows NT 10.0.22631.0
IntPtr Length: 8
x64: True
Date: 2025/01/12 11:34:52
Exception:
System.OutOfM... | Issue-Bug,Needs-Triage | low | Critical |
2,782,346,710 | transformers | ValueError: MllamaForConditionalGeneration does not support Flash Attention 2.0 yet | ### System Info
- `transformers` version: 4.47.1
- Platform: Linux-4.18.0-553.22.1.el8_10.x86_64-x86_64-with-glibc2.28
- Python version: 3.10.15
- Huggingface_hub version: 0.26.3
- Safetensors version: 0.4.5
- Accelerate version: 0.34.2
- Accelerate config: not found
- PyTorch version (GPU?): 2.5.1+cu121 (Tr... | bug | low | Critical |
2,782,353,194 | electron | typo in code-signing.md | while going through electronjs.org in https://www.electronjs.org/docs/latest/tutorial/code-signing
there is a typo in the page code signing being codesigning it should have a space
 | documentation :notebook:,bug :beetle: | low | Minor |
2,782,372,814 | rust | Tracking issue for release notes of #134300: remove long-deprecated no-op attributes no_start and crate_id |
This issue tracks the release notes text for #134300.
### 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... | A-attributes,T-lang,T-compiler,relnotes,relnotes-tracking-issue | low | Minor |
2,782,378,589 | react | Question: Async React Reconciler | Apologies for using the bug template, but I have a question regarding React Reconciler. I understand that this is not intended for questions, and I appreciate your understanding.
I'm building a custom React reconciler by using `react-reconciler` package. I'm wondering if it is possible having an async reconciler. I ... | Status: Unconfirmed,Resolution: Needs More Information | low | Critical |
2,782,382,519 | PowerToys | The PowerToys Preview pane cannot preview files properly, you need to close the format in the preview | ### Microsoft PowerToys version
0.87.1
### Installation method
GitHub
### Running as admin
Yes
### Area(s) with issue?
File Explorer: Preview Pane
### Steps to reproduce
Normal open file Explorer, preview txt display can not preview this file, but close the format support in file preview, and you can preview t... | Issue-Bug,Needs-Triage | low | Minor |
2,782,385,781 | material-ui | [RFC] Start a small collaboration with RJSF to enhance the Material UI theme they have created? | ### What's the problem?
The [RJSF library](https://github.com/rjsf-team/react-jsonschema-form) has a community-maintained Material UI theme. The library is actively maintained and used in many projects.
However, some widgets do not properly use Material UI theming. There is the `data-url` widget and the date & time o... | waiting for 👍,ready to take,RFC | low | Minor |
2,782,387,115 | langchain | get_buffer_string() use deprecated keys | ### 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 ... | 🤖:bug | low | Critical |
2,782,424,628 | react-native | undefined is not an object (evaluating 'window.location.href') | ### Description
I am getting app crash on launch for both the platform android and ios, If I run app in debug mode then it works fine and as soon as removed from debug mode app getting crashed.
I am not getting clear log specific to a library or syntext, only gettine below error.
**Error** - undefined is not an ob... | Needs: Repro,Needs: Attention,Type: Unsupported Version | low | Critical |
2,782,432,917 | PowerToys | A number of mistranslation in Korean text | ### Microsoft PowerToys version
0.87.1
### Utility with translation issue
General
### 🌐 Language affected
Korean
### ❌ Actual phrase(s)
1. Microsoft PowerToys는 **강력한 사용자**가 생산성을 높이기 위해 Windows 환경을 조정하고 간소화할 수 있는 유틸리티 세트입니다. **Microsoft 및 PowerToys 💗커뮤니티에서** 만들었습니다. (Microsoft PowerToys is a set of utilities fo... | Issue-Bug,Area-Localization,Needs-Triage,Issue-Translation | low | Minor |
2,782,463,769 | rust | E0499 mentions "previous iteration of the loop" in proc macro code without any loops. | ### Code
```Rust
use quote::quote;
#[proc_macro]
pub fn my_macro(_: proc_macro::TokenStream) -> proc_macro::TokenStream {
quote! {
struct Thing<'a>(&'a mut i32);
impl Drop for Thing<'_> {
fn drop(&mut self) {}
}
#[allow(unused)]
fn test() {
let mut f... | A-diagnostics,T-compiler | low | Critical |
2,782,466,846 | rust | Wrong type suggested in `overflowing_bin_hex` | ### Code
```Rust
fn main() {
_ = 0x8FFF_FFFF_FFFF_FFFEu32;
}
```
### Current output
```Shell
error: literal out of range for `i32`
--> src/main.rs:2:9
|
2 | _ = 0x8FFF_FFFF_FFFF_FFFE;
| ^^^^^^^^^^^^^^^^^^^^^
|
= note: the literal `0x8FFF_FFFF_FFFF_FFFE` (decimal `10376293541461622782`) does ... | A-diagnostics,T-compiler | low | Critical |
2,782,468,199 | puppeteer | [Bug]: getting started seems buggy | ### Minimal, reproducible example
```TypeScript
// index.js
import puppeteer from "puppeteer";
(async () => {
// Launch the browser and open a new blank page
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
// Navigate the page to a URL
await page.... | bug,confirmed,documentation,P3 | 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.