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,611,473,502 | godot | Button node registers press when disabled | ### Tested versions
I'm only using 4.3
### System information
Godot v4.3.stable - Windows 10.0.19045 - GLES3 (Compatibility) - NVIDIA GeForce GTX 970 (NVIDIA; 32.0.15.6094) - AMD Ryzen 5 3600 6-Core Processor (12 Threads)
### Issue description
Button is not fully inactive when disabled
You can still click a dis... | bug,topic:input,topic:gui | low | Critical |
2,611,511,636 | kubernetes | Allow different orders in OrderedReady podManagementPolicy | ### What would you like to be added?
On top of the existing [OrderedReady](https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#orderedready-pod-management) policy for a StatefulSet, I'd like to be able to pick minor variants to the order, like a descending rather than ascending order.
### Why is th... | kind/feature,sig/apps,lifecycle/stale,needs-triage | low | Minor |
2,611,601,879 | ui | [bug]: In button components section, on click of login button navigates to 404 page could not be found page. | ### Describe the bug
In Button components docs section, on click of the login button the page navigates to **/login** and shows 404 Page could not be found error.

![Screenshot from 2024-10-24 18-48... | bug | low | Critical |
2,611,643,355 | pytorch | Strange recompilations on torch 2.5 + FSDP + UNet | ### 🐛 Describe the bug
Simple compilation of UNet model works fine, but FSDP-wrapped UNet gets recompiled on every block. In real setup cache-size limit is rapidly reached.
Code:
```
import argparse
import os
from contextlib import nullcontext
from typing import List, Optional
import torch
import torch.di... | oncall: distributed,triaged,module: fsdp,oncall: pt2,module: dynamic shapes,module: dynamo,pt2d-triage-nov2024 | low | Critical |
2,611,695,665 | flutter | removeRoute unresolved future | ### Steps to reproduce
In some scenarios, developers may want to use `removeRoute()` instead of `pop()` to remove a nested route which is not the first one. By calling `removeRoute()` alone, all codes which await a call to `push()` will never end : the future will never be resolved.
```dart
final Object? result... | framework,f: routes,has reproducible steps,P2,workaround available,team-framework,triaged-framework,found in release: 3.24,found in release: 3.27 | low | Minor |
2,611,750,056 | godot | OS.has_feature doesn't work with custom features and Small Deploy | ### Tested versions
- Reproduced in v3.6.stable.official [de2f0f147]
### System information
Ubuntu Linux
### Issue description
When debugging in an android device with "Small Deploy with Network Filesystem" debug option checked, all calls to has_feature("some_custom_feature") returns false;
Without this option ch... | bug,needs testing,topic:export | low | Critical |
2,611,762,721 | Python | adding optimized code for largest rectangle histogram | ### Feature description
You are given an array of integers heights where heights[i] represents the height of a bar. The width of each bar is 1.
Return the area of the largest rectangle that can be formed among the bars.
giving optimized solution for this problem using stacks
kindly assign me this issue | enhancement | medium | Minor |
2,611,772,853 | pytorch | autograd.Function HOP (maybe others) have name conflict when lifting freevars | We should land https://github.com/pytorch/pytorch/pull/129817
I think someone ran into this internally ([internal ref](https://fb.workplace.com/groups/1075192433118967/permalink/1530131980958341/))
cc @ezyang @chauhang @penguinwu @voznesenskym @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wen... | triaged,oncall: pt2,module: dynamo,module: higher order operators,module: pt2-dispatcher,dynamo-autograd-function | low | Minor |
2,611,790,060 | PowerToys | Dark Mode Overlay (DMO) | ### Description of the new feature / enhancement
1. Shall detect the current active window /app and invert colours for those apps that does not provide any dark mode feature by default and can be toggled on or off by shortcut keys combination.
2. A later version might be smarter (detects icons and images and does not... | Needs-Triage | low | Major |
2,611,805,755 | rust | rustdoc: Show tag / badge / icon / emoji in the sidebar for unsafe, deprecated and unstable items | Currently unsafe, deprecated and unstable items are shown with different labels in a module's list of items:

I think it would be nice to also add these to the sidebar for types and traits.
Maybe this requires icons for "Deprecat... | C-enhancement,A-rustdoc-ui,T-rustdoc-frontend | low | Major |
2,611,825,896 | flutter | Unexpected Behavior When Terminating Flutter Commands with Ctrl + C | ### Type of Request
bug
### Infrastructure Environment
System Type: 64-bit operating system, x64-based processor.
Operating System: Windows 11 Pro.
Terminal Application: Command Prompt / PowerShell.
Frequency of the Issue: This has never worked for me since I started using Flutter.
![Screenshot 2024-10-24 173... | P3,team-tool,triaged-tool | low | Critical |
2,611,863,549 | rust | Can't find `thiserror_impl` crate with `-Z sanitizer` |
I tried this code:
```rust
// (empty lib.rs)
```
Cargo.toml:
```toml
[package]
name = "nightly-cant-find-crate-test"
version = "0.1.0"
edition = "2021"
[dependencies]
thiserror = "1.0.65"
```
Compiling with `env RUSTFLAGS="-Z sanitizer=address" cargo +nightly build`
I expected to see this happen: Library compiles... | T-compiler,A-sanitizers,C-bug,D-confusing | low | Critical |
2,611,865,300 | react | Bug: duplicate keys cause an extra element to render, while the console shows the correct number of items | When rendering a list with duplicate keys, React incorrectly renders an extra item, which is interactable, despite the console logging the correct number of items. This behavior occurs even though the data source has the correct number of items.
React version: ^18.0.0
## Steps To Reproduce
1. `$ npx create-rea... | Status: Unconfirmed,Resolution: Stale | low | Critical |
2,611,874,859 | PowerToys | Mouse Without Borders - Clearer communication of connection status | ### Description of the new feature / enhancement
Currently the connection status of PCs in MWB is communicated only (?) via colorful frame around the icon on the setup page. The meaning of these colors is only explained on the "further information" page of MWB.
Unless the connection is the obvious "green" (which mean... | Needs-Triage | low | Critical |
2,611,877,864 | rust | "single tab mode" for rustdoc search | currently, when performing a single-element search (i.e. a name-based search), there are 3 tabs:
1. In Names
2. In Parameters
3. In Return Types
I basically never use the other two, instead explicitly using type-based search with `->` if i want that info.
These extra tabs add visual clutter and also slow down the sea... | C-enhancement,T-rustdoc-frontend | low | Major |
2,611,879,874 | vscode | Chat: Support custom attachments for participants | Right now, in Insiders, the currently-opened editor is included as an attachment in chat requests. The user can easily disable it by clicking.
Certain participants (thinking about `@azure` particularly) would benefit from being able to default-attach their own items in this list. For example, for `@azure`, attaching `... | api,under-discussion,panel-chat | low | Major |
2,611,885,230 | pytorch | RuntimeError: HalfTensor is not supported | ### 🐛 Describe the bug
I am getting the following error in the FX Graph Mode Quantization QAT
Traceback (most recent call last):
File “”, line 1, in
File “/home/HassanBinHaroon/anaconda3/envs/FX_Graph_Mode_Env/lib/python3.9/site-packages/torch/fx/graph_module.py”, line 738, in call_wrapped
return self._wrapped_... | oncall: quantization | low | Critical |
2,611,888,528 | svelte | Bound constants are `null` in `onDestroy` | ### Describe the bug
When a parent does `bind:x` on a child's `export const x` and attempts to use this value in the `onDestroy` callback, the value of `x` is `null`.
This is a breaking change while using Svelte 4 syntax, since `x` would previously keep the same value.
### Reproduction
https://svelte.dev/playground... | documentation | low | Critical |
2,611,926,399 | pytorch | Failed to load image Python extension: libc10_cuda.so: cannot open shared object file: No such file or directory warn(f"Failed to load image Python extension: {e}") | ### 🐛 Describe the bug
/home/lmh/.local/lib/python3.10/site-packages/torchvision/io/image.py:13: UserWarning: Failed to load image Python extension: libc10_cuda.so: cannot open shared object file: No such file or directory
warn(f"Failed to load image Python extension: {e}")
Detected kernel version 5.4.0, which is... | needs reproduction,module: binaries,triaged | low | Critical |
2,611,946,704 | deno | `deno info DEPENDENCY` | To have info on a dependency
- [x] Sub-dependencies
- [x] Bundle Size
- [ ] Information from NPM / JSR manifest (description, author, which registry (NPM/JSR), link to registry + repository, ...)
- [ ] Versions (which is installed, which are available, also consider pre-releases, ...)
- [ ] Security (CVE) inform... | needs info | low | Minor |
2,611,957,405 | opencv | Add YAML 2.0 support for FileStorage | ### Describe the feature and motivation
Rationale:
Yaml 2.0 format is used by python by default. It means that configs/data in Yaml format mabe shared between OpenCV C++/Java/Python code and pure Python scrips.
### Additional context
_No response_ | feature,category: core | low | Minor |
2,611,958,280 | deno | `deno fmt` might not respects include/exclude options in workspace settings | > This is also a bug with `deno fmt`. I have a workspace setup where I have this fmt config:
>
>
>
> ```json
>
> "fmt": {
>
> "include": ["*.ts", "*.tsx"],
>
> "exclude": ["*.d.ts", "./server/*"],
>
> "lineWidth": 120
>
> },
>
> ```
>
>
>
> This still tries to process JS, CSS and even JSON f... | deno fmt,needs discussion,workspaces | low | Critical |
2,612,000,417 | flutter | Some mac bots are hanging while calling flutter doctor | ### Type of Request
bug
### Infrastructure Environment
LUCI
### What is happening?
Bots [build868-m9](https://chromium-swarm.appspot.com/bot?id=build868-m9) and [build855-m9](https://chromium-swarm.appspot.com/bot?id=build855-m9) are hanging for 20 minutes when calling `flutter doctor`
```console
[2024-10-24 0... | team-infra,P1,triaged-infra | medium | Critical |
2,612,000,710 | next.js | Get an error when upgrading to next v15 and icon.svg in the app folder | ### Link to the code that reproduces this issue
https://github.com/Cache-Hit-Shanghai/pikebaohomepage
### To Reproduce
1. Download the project from the link above.
1. Upgrade next.js to v15.
1. npm run dev
### Current vs. Expected behavior
# current
next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&... | bug | low | Critical |
2,612,006,431 | deno | `deno import` | To import manifests from other package managers
(tasks, dependencies, ...)
See [`pnpm import`](https://pnpm.io/cli/import) | suggestion | low | Minor |
2,612,026,092 | angular | Encapsulated scoped :host-context() transformation | ### Which @angular/* package(s) are the source of the bug?
compiler
### Is this a regression?
No
### Description
Hello!
I've a question about Angular's CSS transformation, creating shadow DOM for encapsulated components.
`:host-context(.bar)` is being transformed into `.bar[a-host], .bar [a-host]` by Angular.
`:... | area: core,area: compiler,core: stylesheets | low | Critical |
2,612,026,456 | ollama | after some time idle / phone standby , getting to the termux ollama run cmd makes it restart the dl from 0 | ### What is the issue?
so i know ollama can resume downloads
but the following issue happened to me now the second time on a different model dl
i run ollama run model
it downloads ..
i can switch apps , switch back to termux ollama , no problem
but after some screen of time i return to termux and see it just bega... | bug,needs more info | low | Major |
2,612,044,110 | electron | [Linux - Plasma6 - KDialog] dialog.ShowSaveDialog() -> Filename not carried over into dialog. | ### Preflight Checklist
- [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project.
- [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to.
- [x] I have searched ... | platform/linux,bug :beetle:,has-repro-gist,33-x-y,34-x-y | low | Critical |
2,612,055,374 | ui | [bug]: Installation fails with Next.js 15 and/or React 19 | ### Describe the bug
While initializing a new Next.js project with shadcn-ui using `npx shadcn@latest init`, the installation fails when attempting to install dependencies. The error occurs because @radix-ui/react-icons has a peer dependency requirement for "react@^16.x || ^17.x || ^18.x", but the project is using Rea... | bug | high | Critical |
2,612,069,955 | vscode | Devcontainer setup ad-hoc parsing fails on Rocky 8.5 | <!-- ⚠️⚠️ 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,linux,good first issue,remote | low | Critical |
2,612,107,062 | deno | Documentation missing: where does `deno task` look for commands? | Version: Deno 2.0.1
### How does `deno task` find commands?
If a dependency defines a command in (`bin` in `package.json`), how does `deno task` find that command?
Is there a way to run those commands outside of `deno task`? What's deno's equivilant of `npx`?
### Concrete example
see: https://github... | question | low | Minor |
2,612,111,782 | go | proposal: x/sys/unix: add methods to covert between time.Time and unix.PtpClockTime on Linux | ### Proposal Details
Recently we have exposed the syscalls and types related to PTP (IEEE 1588) on Linux in the `unix` package.
Amongs those is a struct representing time in PTP calls, [`unix.PtpClockTime`](https://pkg.go.dev/golang.org/x/sys/unix@master#PtpClockTime). Semantically it is very similar to Unix time, ... | Proposal | low | Minor |
2,612,153,398 | pytorch | torch.dot has inconsistent support for int64 (long) | ### 🐛 Describe the bug
`torch.dot` can be calculated with tensors of `int64` dtype on CPU, but shows as not implemented for GPU ([colab](https://colab.research.google.com/drive/1oFgSRK7T6alyBJgHbWahLbdwqC5ZgnIT?usp=sharing)).
Minimal repro:
```python
import torch
out_cpu = torch.dot(torch.tensor([2, 3], dty... | module: cuda,triaged | low | Critical |
2,612,153,508 | pytorch | [ONNX] Support for `aten.istft` | ### 🐛 Describe the bug
When I run [this](https://github.com/tuna2134/f5-tts/blob/master/onnx/convert_vocos.py), it failed.
### Versions
Collecting environment information...
PyTorch version: 2.6.0.dev20241024+cpu
Is debug build: False
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: Ubunt... | module: onnx,triaged | low | Critical |
2,612,197,768 | pytorch | Add mean and var operation for Nested Tensors | ### 🚀 The feature, motivation and pitch
For torch.Tesnor it is easy to compute mean and var, but I can not find ways to compute mean and var for Nested Tensors. Nested Tensors support layer_norm operation which include mean and var operation. Is there any ways to compute mean fo Nested Tensors?
```
x = torch.randn(... | triaged,module: nestedtensor | low | Minor |
2,612,213,135 | flutter | Flutter-web text field iframed with semantics disabled refuses to let go of focus | ### Steps to reproduce
See also https://github.com/flutter/flutter/issues/157387 which requires the same conditions (iframed, semantics disabled).
1. Requisites
a. Accessibility (semantics tree) must not be enabled, and
b. Flutter-web app must be iframed.
2. Click on one of the text field widgets withi... | a: text input,engine,a: accessibility,platform-web,f: focus,P2,customer: samehere,team-web,triaged-web | low | Minor |
2,612,250,954 | pytorch | [PTD][RPC] Verify RPC Tutorials contents and scripts | ### 📚 The doc issue
It has been a while these tutorials have been updated. Since there are not active developments on these, we should verify the scripts in the tutorials are still working as expected.
Getting Started with Distributed RPC Framework - https://pytorch.org/tutorials/intermediate/rpc_tutorial.html ... | oncall: distributed,module: docs,triaged | low | Minor |
2,612,280,385 | stable-diffusion-webui | [Bug]: ERROR: Could not find a version that satisfies the requirement pytorch_lightning==1.7.6 … | ### Checklist
- [X] The issue exists after disabling all extensions
- [X] The issue exists on a clean installation of webui
- [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui
- [ ] The issue exists in the current version of the webui
- [X] The issue has not been reported before... | asking-for-help-with-local-system-issues | low | Critical |
2,612,283,087 | langchain | Cant import any of the HuggingFaceEmbeddings because 'openssl' has no attribute 'ciphers' | ### 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,investigate | low | Critical |
2,612,299,178 | flutter | Deprecate support for ia32 | Dart is considering dropping support for ia32, please see https://github.com/dart-lang/sdk/issues/49969 for more context.
This issue is to ensure Flutter goes through a deprecation process before removing support for ia32.
List of items to consider
- [x] remove support for jit release mode which is tracked her... | P1,team-tool,triaged-tool | medium | Major |
2,612,304,607 | flutter | Test runner appears to run `test/cupertino/tab_scaffold_test.dart` 14K times | Example log:
https://logs.chromium.org/logs/flutter/buildbucket/cr-buildbucket/8733174319067180289/+/u/read_logs/tmpfg_tnxrl
In the middle of the run, you can see the following:
```txt
unhandled error during finalization of test:
/Volumes/Work/s/w/ir/x/w/flutter/packages/flutter/test/cupertino/tab_scaffold_test.... | tool,c: tech-debt,team-tool | low | Critical |
2,612,305,177 | flutter | Make `flutter analyze --suggestions` agnostic to patch versions | Context https://github.com/flutter/flutter/pull/156502#discussion_r1803810604
Our Gradle/Java/AGP compat checking code includes max known and supported Gradle and AGP versions. We should probably make the code that handles these versions agnostic to patch versions, in my opinion. | platform-android,P1,team-android,triaged-android | medium | Minor |
2,612,324,294 | svelte | Flash of content if a `fly` in-transition started immediately after out-transition | ### Describe the bug
Most of the time if the element is shown immediately after it's out-transition ended it momentarily flashes in its final state in DOM before the in-transition kicks in.
Doesn't matter if the element is shown in `onoutroend`, or in [$effect teardown in use](https://svelte.dev/docs/svelte/use)
... | bug,transition/animation | low | Critical |
2,612,328,994 | PowerToys | awake not observing the powertoys setting of keep awake indefinitely | ### Microsoft PowerToys version
0.85.1
### Installation method
PowerToys auto-update
### Running as admin
Yes
### Area(s) with issue?
Awake
### Steps to reproduce
[PowerToysReport_2024-10-24-14-11-09.zip](https://github.com/user-attachments/files/17511188/PowerToysReport_2024-10-24-14-11-09.zip)
enable awake
s... | Issue-Bug,Needs-Triage,Needs-Team-Response | low | Major |
2,612,361,234 | pytorch | `torch.distributed._state_dict_utils._broadcast_tensors` does not properly support CPU tensors. | ### 🐛 Describe the bug
When using `torch.distributed._state_dict_utils._broadcast_tensors`, it is possible for tensors which need to be broadcasted to live on the CPU (such as with a CPU offloaded optimizer state dict), however the current pytorch 2.5 implementation does not allow for this because the NCCL collecti... | oncall: distributed | low | Critical |
2,612,395,501 | go | x/tools/gopls: identifies arbitrary dotted text in strings as links | <!--
For asking questions, see:
- [Stack Overflow](https://stackoverflow.com/questions/tagged/go+visual-studio-code)
- [GitHub Discussions (Help)](https://github.com/golang/vscode-go/discussions/categories/help)
- [`#vscode` channel in Gophers Slack](https://invite.slack.golangbridge.org/messages/vscode)
Before ... | gopls,Tools,upstream-tools | low | Critical |
2,612,429,299 | go | proposal: strings, bytes: Add JoinSeq | ### Proposal Details
#61901 added SplitSeq and friends to bytes, but nothing for joining. Right now you have to do slices.Collect first or use a bytes.Buffer/strings.Builder, which feels unfortunate. I propose to add `strings.JoinSeq(seq iter.Seq[string], sep string) string` and the bytes equivalent as well. | Proposal | low | Major |
2,612,435,042 | react | [React 19] Inconsistent hoisting behavior between links created with `preload()` and manually inserted ones | ## Summary
When trying to preload the `srcset` of an image with a `link` tag. I found an unexpected behavior.
### Examples
#### Preloading srcset with `preload()`
``` js
preload('https://sample.com/foo', {
as: 'image',
imageSrcSet: 'https://sample.com/foo 1x',
});
```
##### Results (As expected)
... | Resolution: Stale,React 19 | medium | Minor |
2,612,492,249 | next.js | Next.JS does NOT support Docker Swarm. | ### Link to the code that reproduces this issue
https://github.com/SanderCokart/sandercokart.com/tree/development
### To Reproduce
`docker service create` and `docker stack deploy` both do launch the nodes and services but going to localhost:3000 results in nothing.
### Current vs. Expected behavior
Going to local... | bug,Output (export/standalone) | low | Minor |
2,612,509,514 | next.js | Example Dockerfile does not copy .npmc / .yarnrc files | ### Verify canary release
- [X] I verified that the issue exists in the latest Next.js canary release
### Provide environment information
```bash
Operating System:
Platform: win32
Arch: x64
Version: Windows 11 Pro
Available memory (MB): 32566
Available CPU cores: 16
Binaries:
Node: 20.12.2
npm:... | examples | low | Critical |
2,612,510,079 | ollama | RFC: multi-template models | Some models are being released with multiple chat_templates, eg [Aya-Expanse 32B & 8B](https://huggingface.co/CohereForAI/aya-expanse-8b/blob/b9848575c8731981dfcf2e1f3bfbcb917a2e585d/tokenizer_config.json#L304) which has a default template but also templates tuned for RAG and Tool use.
There's a few ways these could... | feature request | low | Minor |
2,612,517,201 | react | [DevTools Bug]: React profiler reporting false rendering times | ### Website or app
https://codesandbox.io/p/sandbox/suspicious-darkness-zpfcld
### Repro steps
Visit sandbox: https://codesandbox.io/p/sandbox/suspicious-darkness-zpfcld?file=%2Fsrc%2FApp.js%3A19%2C22
(This is a modified version of a sandbox from Dan Abramov's blog https://overreacted.io/before-you-memo/)
... | Type: Bug,Status: Unconfirmed,Component: Developer Tools | medium | Critical |
2,612,518,855 | flutter | [camera] Integration tests fail when Android example app targets SDK >=31 | Upon expecting an image to be at a resolution of 240, it receives 1080 instead. This is both `camera_android` and `camera_android_camerax`.
Related to https://github.com/flutter/flutter/issues/152929 | a: tests,platform-android,p: camera,package,P2,c: flake,team-android,triaged-android | low | Minor |
2,612,527,693 | react-native | Unhandled JS Exception: Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'DevMenu' | ### Description
Hi, Guys.
Im stuck in this error for a while. It only happens in release mode. I dont know if it is a react native bug or not. Can any one help me please?
The error:
Unhandled JS Exception: Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'DevMenu' when app will run on any device.... | Needs: Repro,Newer Patch Available,Needs: Attention | low | Critical |
2,612,534,794 | kubernetes | cloud-provider HasClusterID related functionality should have better documentation in the code | _note from @elmiko, i am transferring this issue from its original location https://github.com/kubernetes/cloud-provider/issues/71_
originally posted by @guettli
Looking at the basic_main.go
```go
if !cloud.HasClusterID() {
if config.ComponentConfig.KubeCloudShared.AllowUntaggedCloud {
klog.Warning("... | sig/storage,help wanted,sig/cloud-provider,triage/accepted | medium | Major |
2,612,554,272 | flutter | [in_app_purchase_storekit] ☂️ StoreKit2 Feature Tracker | Now that in_app_purchase has been [migrated from StoreKit to StoreKit 2](https://github.com/flutter/flutter/issues/116383), incrementally add missing StoreKit 2 features:
### StoreKit 2 Features 😄
- Restore Purchaes/Syncing Purchases
- [ ] https://github.com/flutter/flutter/issues/118960
- This may or not be c... | c: new feature,platform-ios,platform-mac,P2,team-ios,triaged-ios | low | Critical |
2,612,554,306 | storybook | [Bug]: @storybook/react - @types/estree is outdated | ### Describe the bug
Getting this error when building a image snapshot plugin for vitest browser mode integration:
```sh
node_modules/rollup/dist/rollup.d.ts (4:0): "BaseNode" is not exported by "node_modules/@types/estree/index.d.ts", imported by "node_modules/rollup/dist/rollup.d.ts".
DTS Build failed
```
This hap... | bug,dependencies,help wanted,sev:S3 | low | Critical |
2,612,560,268 | godot | In ParticleEmitters (at least CPU2D), the particles' gradient breaks if the parent has an animation playing. | ### Tested versions
Reproducible in v4.3.stable.official [77dcf97d8]
### System information
Godot v4.3.stable - Windows 10.0.22631 - Vulkan (Forward+) - dedicated NVIDIA GeForce RTX 2070 SUPER (NVIDIA; 32.0.15.6094) - Intel(R) Core(TM) i9-10900F CPU @ 2.80GHz (20 Threads)
### Issue description
When using CPUPartic... | bug,topic:animation,topic:particles | low | Minor |
2,612,567,186 | vscode | Multi-diff editor is not screen reader accessible | 1. Enable a screen reader
2. Open the multi=diff editor
3. Navigate the diff
4. 🐛 , only the modified line is accessible, a user cannot navigate to the original line

| accessibility,multi-diff-editor | low | Minor |
2,612,594,524 | ui | [bug]: command clicks are ignored (although enter works as expected | ### Describe the bug
Given this component:
```jsx
const SatelliteSearch = () => {
const satellites = useAtomValue($satellites);
const [selectedSatelliteIndexes, setSelectedSatelliteIndexes] = useAtom(
$selectedSatellitesIndexes
);
const [isFocused, setIsFocused] = useState(false);
return (
... | bug | low | Critical |
2,612,605,408 | three.js | KTX2Loader: Improve transcoder target format selection | ### Description
Related:
- https://github.com/mrdoob/three.js/pull/29730
As described in the issue above, Firefox may indicate support for compressed formats that it actually emulates in drivers, decompressing or transcoding to another format. This emulation has much higher cost than just transcoding to the 'r... | Suggestion,Loaders | low | Minor |
2,612,607,195 | node | dns.lookup timeout / cancellation | ### What is the problem this feature will solve?
I'm working on some dev tools that require the user to set up a local DNS record in their `/etc/hosts` file, and I'd like to check if this lookup of `some.custom.local` is resolving correctly to localhost.
If I understand correctly, dns `Resolver` does not hit the ... | dns,feature request | low | Critical |
2,612,607,982 | pytorch | [torch.export] round is not an allowed operator type | ### 🐛 Describe the bug
Hi team, just want to report that round isn't supported in export. This can be bypassed with `math.trunc(x + 0.5)`, which is supported.
repro:
```
class M(torch.nn.Module):
def forward(self, x):
ori_size = (
round(x.shape[-2] / 1),
round(x.shape[-1] ... | triaged,oncall: pt2,oncall: export | low | Critical |
2,612,611,139 | ui | [feat]: close sidebar on item click (mobile) | ### Feature description
On mobile devices, where the sidebar is displayed as a drawer, clicking on a menu item navigates to the corresponding page but leaves the drawer open. This behavior is not ideal because the drawer continues to cover the main content area, preventing users from seeing the page they've navigated ... | area: request | medium | Critical |
2,612,612,125 | pytorch | Using int(shape) in export would result in silent specialization | ### 🐛 Describe the bug
Hi team, just reporting this problem. I can bypass it if I replace int with `math.trunc`.
repro:
```
class M(torch.nn.Module):
def forward(self, x):
ori_size = (
int(x.shape[-2] / 1),
int(x.shape[-1] / 1),
)
x = F.interpolate(x, siz... | triaged,oncall: pt2,oncall: export | low | Critical |
2,612,621,283 | flutter | `TextInputType` should support `webSearch` which maps to iOS `UIKeyboardType.webSearch` | ### Use case
iOS supports since iOS 7.0 the keyboard type `webSearch` which is a system keyboard that can be used in text fields that both search, but also cope with URLs. From the official documentation:
```objc
UIKeyboardTypeWebSearch API_AVAILABLE(ios(7.0)), // A default keyboard type with URL-oriented additi... | a: text input,platform-ios,framework,engine,P2,team-text-input,triaged-text-input | low | Major |
2,612,636,003 | angular | Animations in <ng-content> Not Triggered by animateChild() When Parent Component Uses Query + Stagger Animation | ### Which @angular/* package(s) are the source of the bug?
animations
### Is this a regression?
No
### Description
When parent component has query + stagger animation that queries child animations to animate using animateChild(), animations applied to elements projected into <ng-content> are not animated. meanwhil... | area: animations | low | Critical |
2,612,641,960 | godot | 4-Channel Audio Input is not supported | ### Tested versions
- Reproducible in godot 4.3 stable
### System information
Windows 11 Pro; godot 4.3-stable 4-Channel Microphone Array
### Issue description
trying to run the audio\mic_record sample on an ASUS laptop with a 4-channel microphone array produces no audio when recording, and throws the below error ... | bug,topic:audio | low | Critical |
2,612,696,191 | langchain | Error during FAISS save_local due to __pydantic_private__ attribute | ### 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 ... | Ɑ: vector store,stale | low | Critical |
2,612,716,051 | next.js | Compatibility issue: Next.js 15 and React Three Fiber - TypeError: Cannot read properties of undefined (reading 'ReactCurrentOwner') | ### Link to the code that reproduces this issue
https://github.com/frommybrain/r3f-starter
### To Reproduce
To Reproduce:
1. Create a new Next.js 15 project using `create-next-app`
2. Install React Three Fiber and its dependencies
3. Create a simple React Three Fiber component
4. Import and use the compo... | Upstream,create-next-app,linear: next | high | Critical |
2,612,745,866 | godot | Multithreaded graphics crashes resizing window | ### Tested versions
4.2.2.stable.official
### System information
Godot v4.2.2.stable - macOS 15.0.1 - Vulkan (Forward+) - integrated Apple M1 - Apple M1 (8 Threads)
### Issue description
project with multithreaded graphics crashes when resizing
### Steps to reproduce
new project, multithreaded graphics, run proj... | bug,needs testing,crash | low | Critical |
2,612,748,543 | pytorch | [ROCm] "No available kernel" when running EFFICIENT_ATTENTION sdpa | Hit this error when running https://huggingface.co/genmo/mochi-1-preview. Repro script as followed.
```python
import torch
from torch.nn.attention import sdpa_kernel
device = torch.device("cuda")
q = torch.randn(2, 8, 1, 512, dtype=torch.bfloat16, device=device)
k = torch.randn(2, 8, 257, 512, dtype=torch.bfl... | module: rocm,triaged | low | Critical |
2,612,770,286 | vscode | Make the limit on non-ASCII characters used to disable their highlighting configurable | The highlighting of non-ASCII characters enabled by `"editor.unicodeHighlight.nonBasicASCII": true` is switched off whenever the number (or proportion? it's unclear) of non-ASCII characters in the document exceeds a threshold. A banner is then displayed, but the banner does not provide any opportunity to turn the highl... | feature-request,unicode-highlight | low | Major |
2,612,784,172 | ollama | add termux compile instructions to web page | pkg ugrade -y golang clang cmake libandroid-execinfo gzip git
git clone https://github.com/ollama/ollama ollama
cd ollama
go generate ./...
go build .
cp ollama ~/../usr/bin
this used to work to 0.3.13 then .14 the err came but i believe u change well , err will be gone , cmd working again ..
greets .. | feature request,build | low | Minor |
2,612,784,352 | rust | Rust compiler hangs when pretty-printing MIR for a constant | I tried this code:
```rust
// compiler-flags: --emit mir
fn main() {
let _dummy = [(); usize::MAX];
}
```
I expected to see this happen: Compilation should succeed and generate a MIR file
Instead, this happened: Compiler hangs
### Meta
<!--
If you're using the stable version of the compiler, you should also che... | T-compiler,A-MIR,C-bug,A-const-eval,I-hang | low | Critical |
2,612,875,593 | flutter | At step 5th in `Get to know Firebase for Flutter` codelabs, the screenshot is not synced with code | <img width="340" alt="스크린샷 2024-10-25 오전 10 40 47" src="https://github.com/user-attachments/assets/5f7444e1-cdf4-456e-b72e-1c1a7611a320">
```
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.... | team-codelabs,p: firebase,P1,triaged-codelabs | medium | Minor |
2,612,924,052 | ui | [bug]: Date Range Picker : time from did not change after selecting a value | ### Describe the bug
Date Range Picker : time from did not change after selecting a value
### Affected component/components
Date Range Picker
### How to reproduce
**Step 1** <img width="786" alt="image" src="https://github.com/user-attachments/assets/43472fa9-a027-4971-9b9d-2e7bfb98a126">
**Step 2**<img width="73... | bug | low | Critical |
2,612,924,866 | PowerToys | missing keys on Keyboard Manager | ### Microsoft PowerToys version
0.85.1
### Installation method
Microsoft Store
### Running as admin
Yes
### Area(s) with issue?
Keyboard Manager
### Steps to reproduce
1. eneble Keyboard Manager
2. click "remap a kay" _**OR**_ "a shortcut" (it happens on both options)
3. select, in any of both options ("Selec... | Issue-Bug,Needs-Triage | low | Minor |
2,612,936,561 | stable-diffusion-webui | [Bug]: OSError: Cannot find empty port in range: 7860-7860 with EC2 in Auto scaling group | ### Checklist
- [ ] The issue exists after disabling all extensions
- [ ] The issue exists on a clean installation of webui
- [ ] The issue is caused by an extension, but I believe it is caused by a bug in the webui
- [ ] The issue exists in the current version of the webui
- [ ] The issue has not been reported before... | asking-for-help-with-local-system-issues | low | Critical |
2,612,939,304 | godot | Window can not open at second time if use a button to minimize the window with fullscreen and borderless mode | ### Tested versions
Reproducible: Godot_v4.3-stable_win64
### System information
Windows 10 (and 11), Godot_v4.3, mobile
### Issue description
I use `display/window/size/borderless=true` and `display/window/size/mode=Fullscreen` in project settings, and I add a button to minimize the window.
```
func _pressed()... | bug,topic:gui | low | Critical |
2,612,941,684 | yt-dlp | Limit filename by bytes and unicode normalize at the same time | ### 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 feature unrelated to a specific site
- [X] I've looked through the [README](https://github.com/yt-dlp/yt-dlp#readme)
- [X] ... | enhancement,triage | low | Critical |
2,612,974,282 | stable-diffusion-webui | [Feature Request]: Support for SD3.5 | ### Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
### What would your feature do ?
SD3.5:
https://huggingface.co/stabilityai/stable-diffusion-3.5-large
### Proposed workflow
can use SD3.5
### Additional information
_No response_ | enhancement | medium | Major |
2,612,982,830 | langchain | [AIMessage]tool_calls.0.args is not always returned as a valid dictionary | ### 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,stale,investigate | low | Critical |
2,612,995,970 | pytorch | DISABLED test_file_reader_no_memory_leak (__main__.TestScript) | Platforms: linux
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_file_reader_no_memory_leak&suite=TestScript&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32039218367).
Over the past 3 hours, it has be... | oncall: jit,module: flaky-tests,skipped,module: unknown | low | Critical |
2,612,999,047 | kubernetes | There is a conflict between the metrics of controller-runtime and component-base, the metric workqueue_depth of controller-runtime repository not take effect | ### What happened?
https://github.com/kubernetes-sigs/controller-runtime/blob/7399a3a595bf254add9d0c96c49af462e1aac193/pkg/metrics/workqueue.go#L99
https://github.com/kubernetes/component-base/blob/03d57670a9cda43def5d9c960823d6d4558e99ff/metrics/prometheus/workqueue/metrics.go#L101
Both repository try to set ... | kind/bug,sig/instrumentation,triage/accepted | low | Minor |
2,613,013,231 | opencv | OCL sepFilter2D and Scharr freeze for several minutes | ### System Information
OpenCV version: 4.10.0 (appeared earlier?)
Device: Nothing Phone 2
OS: Android 14
CPU: Qualcomm Snapdragon 8+ Gen1
iGPU: QUALCOMM Adreno(TM) (OpenCL 3.0 Adreno(TM) 730)
### Detailed description
There are two test cases at which `cv::sepFilter2D` and `cv::Scharr()` misbehave, i.e. fre... | bug,category: imgproc,platform: android,category: ocl | low | Minor |
2,613,037,603 | vscode | augmented_images = data_aug(img) |
Type: <b>Bug</b>
Auto-generated text from notebook cell performance. The duration for the renderer, VS Code Builtin Notebook Output Renderer, is slower than expected.
Execution Time: 42ms
Renderer Duration: 2ms
VS Code version: Code 1.94.2 (384ff7382de624fb94dbaf6da11977bba1ecd427, 2024-10-09T16:08:44.566Z)
OS vers... | under-discussion | low | Critical |
2,613,042,071 | svelte | Svelte 5: onMount accepts async function, $effect does not | ### Describe the bug
In most cases, I'm trying to replace onMount with $effect, which seems to be the better way to go. However, $effect doesn't allow an async function:
```
<script lang="ts">
import type { Snippet } from 'svelte'
interface Props {
theme: string
children?: Snippet
}
let {... | types / typescript | medium | Critical |
2,613,046,069 | flutter | gclient sync of the engine cannot pull flutter/java/openjdk/linux-aarch64 | I get an error saying gclient cannot find `flutter/java/openjdk/linux-aarc64` on aarch64 Linux. Looks like it doesn't exist? https://chrome-infra-packages.appspot.com/p/flutter/java/openjdk
```
> ________ running 'cipd ensure -log-level error -root /nix/store/q0pwqcvz1il5b0b38h6r8agnifx8v2cr-flutter-engine-source-a... | engine,platform-linux,P3,platform-host-arm,platform-target-arm,e: local-engine-development,team-engine,triaged-engine | low | Critical |
2,613,063,015 | next.js | Error next js 15 image component | ### Link to the code that reproduces this issue
https://codesandbox.io/p/github/Farruh-JS/next15_image_issue/master
### To Reproduce
Codesandbox link: https://codesandbox.io/p/github/Farruh-JS/next15_image_issue/master
Github link: https://github.com/Farruh-JS/next15_image_issue
I don't know why, but on Codesan... | bug,Image (next/image) | low | Critical |
2,613,133,338 | godot | GraphEdit in the editor scales GraphNodes according to editor scale but not positions, leading to broken display at scales different than the design scale | ### Tested versions
Godot 4.3 Stable
### System information
Windows 10 64, Godot 4.3 Stable, Forward+
### Issue description
Godot Engine does not respect the grid of visual nodes (in shaders or other graphs) if the UI scale has changed. It is crucial for public projects or games developed by multiple people on dif... | bug,topic:editor,confirmed,topic:visualscript,topic:shaders | low | Critical |
2,613,142,151 | godot | When system scale changes and Godot 4 is running, it tries to adjust and usually crashes | ### Tested versions
Godot 4.3 Stable
### System information
Windows 10 and 11, Godot 4.3
### Issue description
Godot 4 is always following system scale, and there are many issues with that. It ignores the defined scale in the editor settings (if they are changed in system, it changes them again), it breaks UI elem... | bug,platform:windows,topic:porting,needs testing,crash | low | Critical |
2,613,147,626 | go | govulncheck-action: Warning: Both go-version and go-version-file inputs are specified, only go-version will be used while only 'go-version-file: go.mod' is specified | ### govulncheck version
golang/govulncheck-action@v1.0.4
### Does this issue reproduce at the latest version of golang.org/x/vuln?
- Yes.
### Output of `go env` in your module/workspace:
```shell
-
```
### What did you do?
```
- uses: golang/govulncheck-action@v1.0.4
with:
go-version-f... | NeedsInvestigation,vulncheck or vulndb | low | Minor |
2,613,151,881 | kubernetes | CRD Mutation handler with leases | ### What would you like to be added?
We have a leases feature in Kubernetes, If we have an api server is deployed with v1 we can create another v10 version of api server. When deploying CRDs we can use the apiversion v10 to deploy on a newly leased for 10 hours. So that we can test it in 10 hours and move it to v1 CR... | sig/api-machinery,kind/feature,triage/accepted | low | Minor |
2,613,181,044 | rust | ICE: `could not resolve DefId` | <!--
[31mICE[0m: Rustc ./a.rs '' 'error: internal compiler error: could not resolve DefId(0:3 ~ a[cd3a]::UnsafeCopy)', 'error: internal compiler error: could not resolve DefId(0:3 ~ a[cd3a]::UnsafeCopy)'
File: /tmp/im/a.rs
-->
auto-reduced (treereduce-rust):
````rust
trait UnsafeCopy<'a, T: Copy>
where
for<'b> <... | I-ICE,T-compiler,C-bug,S-has-mcve,S-bug-has-test,F-precise_capturing,S-has-bisection | low | Critical |
2,613,200,149 | vscode | All <span> tags in hover have a 4px bottom margin which causes nested spans to have stacking bottom margins | Type: <b>Bug</b>
When an extension provides a hover using the `HoverProvider.provideHover` API, and the hover contains Markdown with HTML in it, every span gets a 4px bottom margin. This was added in https://github.com/microsoft/vscode/pull/107442 due to https://github.com/microsoft/vscode-pull-request-github/issues/... | bug,editor-hover | low | Critical |
2,613,202,829 | pytorch | cpu faster than mps for both GRUCell and LSTMCell on apple silicon M3 max: MPS Metal | ### 🐛 Describe the bug
I compare the GRUCell & LTSMCell on both cpu and mps device on apple silicon:
````
# Example usage of the CustomminGRUCell
hidden_size = 128
batch_size = 32
input_size = 128
device = torch.device('cpu')
# Initialize cell and example data
gru_cell = nn.GRUCell(input_size,hidden_size)... | module: performance,triaged,module: mps | low | Critical |
2,613,265,857 | pytorch | Runtime error: retains_grad_hooks not implemented for compiled autograd | ### 🚀 The feature, motivation and pitch
When we use compiled autograd to compile the backward graph and get the gradient of some activation, pytorch throws the error "retains_grad_hooks not implemented for compiled autograd". Will pytorch support compiled autograd with retain_grad_hooks?
### Alternatives
_No respon... | triaged,oncall: pt2,module: compiled autograd | low | Critical |
2,613,273,378 | rust | abi_unsupported_vector_types lint is optimization-dependent | The lint guarding against https://github.com/rust-lang/rust/issues/116558 is intended to eventually become a hard error to fix this ABI issue. However, right now the lint is optimization-dependent: it runs during monomorphization to be able to figure out the actual argument types that will be passed at all call sites, ... | A-lints,T-lang,T-compiler,C-discussion,A-ABI,E-needs-design,L-abi_unsupported_vector_types | low | Critical |
2,613,301,190 | ollama | Does ollama have other model support plans?Such as TTS, graphics, video, etc | We deeply appreciate the convenience, speed, and power of Olama. In order to meet more application scenarios, we hope that Olama can increase support for other model categories, such as text generated speech, text generated images, text generated videos, etc. With the rapid development of AI, the demand for AI will als... | model request | low | Minor |
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.