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,594,065,098 | flutter | Possibility to anchor `showMenu` within its `RelativeRect` | ### Use case
When creating drop down buttons a very common use-case is to align them with the right edge of their parents, like this:

But as far as I'm aware it is not possible to do this consistently since you can't access... | c: new feature,framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Minor |
2,594,068,226 | excalidraw | Add distribute tool for equidistant spacing | I am missing the distribute feature from Inkscape. It would be awesome if that could be added.
See
https://inkscape-manuals.readthedocs.io/en/latest/align-and-distribute.html

| good first issue,UX/UI | low | Minor |
2,594,078,271 | rust | A out-of-air lifetime that that may not live long vs. the implementation is not general enough | ### Code
````rust
fn test<F>(f:F)
where F: for<'b> FnOnce(&'b i32){}
fn main(){
test(|s:&'static i32|{});
}
````
### Current output
```
--> src/main.rs:11:11
|
11 | test(|s:&'static i32|{});
| ^ help: if this is intentional, prefix it with an underscore: `_s`
error: lifetime may not live l... | A-diagnostics,T-compiler,A-NLL,NLL-diagnostics,D-confusing,D-terse,A-higher-ranked | low | Critical |
2,594,086,834 | tensorflow | DLPack with Int32 tensor on the GPU: inconsistent eager mode / graph mode / XLA | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
binary
### TensorFlow version
v1.12.1-117097-gecf05620570 2.19.0-dev20241016
### Custom code
No
### OS platform and distribution
Linux Ubuntu 22.04
### Mobile device
_No response_
### Python version
3.12
### Bazel... | stat:awaiting tensorflower,type:bug,comp:apis,comp:gpu | medium | Critical |
2,594,181,170 | pytorch | Inconsistent behavior of `torch.tensor` in converting `NaN` to int32 on normal list input and numpy array, and different architectures. | ### ๐ Describe the bug
When converting `NaN` value to `int32`, the behavior of `torch.tensor` are different on different input type and different platform.
If the input is a python built-in list containing NaN value, there will be an exception. However, if the list is wrapped with numpy array, `torch.tensor` will ... | module: error checking,triaged | low | Critical |
2,594,190,258 | TypeScript | Add a new type of class declaration to support mixins | ### ๐ Search Terms
"mixin", "InstanceType", "typeof", "class"
### โ
Viability Checklist
- [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
- [x] This wouldn't change the runtime behavior of existing JavaScript code
- [x] This could be implemented without emitting different JS based on t... | Suggestion,Awaiting More Feedback | low | Critical |
2,594,214,036 | rust | `IntErrorKind` should derive `Copy` and `Hash` | When including std errors as part of custom types, I've noticed that [`IntErrorKind`](https://doc.rust-lang.org/std/num/enum.IntErrorKind.html) does not derive the `Copy` or the `Hash` traits, and I think it most probably should, since it would make it easier to propagate and embed it. For example [`IoErrorKind`](https... | T-libs-api,C-feature-request | low | Critical |
2,594,216,636 | pytorch | [profiler] are CUDA events mutually exclusive with _ExperimentalConfig.profiler_metrics? | ### ๐ Describe the bug
Trying to profile with the _ExperimentalConfig options, looks like with non-empty 'profiler_metrics' CUDA events are not captured, given the following case trace_handler displays nothing, are they mutually exclusive or I'm using the API (and the metrics) the wrong way? Thanks.
Minimal repro:... | oncall: profiler | low | Critical |
2,594,248,473 | material-ui | After applying high contrast themes, there is no differentiation between selected and non-selected control in Windows. | ### Steps to reproduce
Link to live example: (required)
https://mui.com/material-ui/react-button/
Prerequisites:
Turn on High Contrast Aquatic/Desert Modes (Go to settings->Contrast Themes->High Contrast aquatic/Desert Themes).
Steps:
1. Open URL-https://mui.com/material-ui/react-button/
2. "React Material U... | bug ๐,waiting for ๐,component: button,ready to take,platform: windows | low | Minor |
2,594,280,779 | ant-design | ColorPicker with presets doesn't correctly recognizes screen boundaries | ### Reproduction link
[https://ant.design/components/color-picker#color-picker-demo-presets](https://ant.design/components/color-picker#color-picker-demo-presets)
### Steps to reproduce
- Open the documentation page
- Scroll to the position shown on the screenshot
- Open color picker
<img width="681" alt="i... | Inactive,unconfirmed | low | Minor |
2,594,289,630 | pytorch | Torch Dynamo support for Flux Transformer model | ### ๐ Describe the bug
I'm using the script below to export the Flux Transformer model to ONNX using torch.onnx.dynamo_export(). However, I run into a TypeError relating to an attribute type.
The script below can be used to reproduce the issue:
```
import torch
from diffusers.models import FluxTransformer2DM... | module: onnx,triaged | low | Critical |
2,594,294,708 | electron | "second-instance" is not triggered with Deep Links when running with admin privileges | ### 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/windows,bug :beetle:,has-repro-gist,33-x-y | low | Critical |
2,594,297,653 | terminal | Broadcast Exit to multiple panes crash | ### Windows Terminal version
1.22.2702.0_x64
### Windows build number
10.0.22631.4317
### Other Software
_No response_
### Steps to reproduce
1. Open the Windows Terminal Preview
2. Create a second pane.
3. Toggle broadcast input to all panes (you should now be able to type in all panes)
4. Press Ctrl + D or typ... | Needs-Repro,Issue-Bug,Area-UserInterface,Severity-Crash,Product-Terminal | low | Critical |
2,594,333,695 | pytorch | Torch Dynamo support for Flux T5 model | ### ๐ Describe the bug
I'm using the script below to export the Flux T5 model to ONNX using torch.onnx.dynamo_export(). However, I run into an error due to missing support for `fused_layer_norm_cuda.PyCapsule.rms_forward_affine`.
The script below can be used to reproduce the issue:
```
import torch
from trans... | module: onnx,triaged | low | Critical |
2,594,346,608 | pytorch | Compile error with -WERROR on clang-12 | ### ๐ Describe the bug
EDIT(albanD): removed llm example showing the final result works and reworded a little bit.
When trying to compile the lattest torch version on my system with amd cpu. the compilation failed. In order for it to compile i had to modify a file which i specified below.
The file i had to mo... | triaged,actionable | low | Critical |
2,594,403,515 | pytorch | Faster dropout (aten.bernoulli) on cpu | ### ๐ The feature, motivation and pitch
I use torch 2.3.1 on MacOS 15.1 beta
I profiling my model and observed that aten::bernoulli is taking 34% of the runtime on cpu while dropout time is marginal for MPS (GPU) device.
Can we optimize bernoulli computation for cpu ?
### Alternatives
_No response_
### A... | module: performance,triaged,module: mps | low | Minor |
2,594,444,341 | pytorch | Crash on Apple MPS (M2) when inverting large matrix | ### ๐ Describe the bug
Matrix inversion on MPS fails for matrices larger than 1024. Below is a minimal example that includes a working and non-working situation. The non-working situation throws error: ```/AppleInternal/Library/BuildRoots/5a8a3fcc-55cb-11ef-848e-8a553ba56670/Library/Caches/com.apple.xbs/Sources/Metal... | high priority,module: crash,triaged,module: third_party,module: linear algebra,module: mps | low | Critical |
2,594,474,660 | kubernetes | Support for expanded 'operators' (e.g. In) in field selectors | ### What would you like to be added?
Support for selecting objects using 'set operations' (notably 'In') with field selectors, bringing parity with labelSelectors.
More specifically, I'd like to be able to select over the `metadata.namespace` field, so I can establish multi-namespace watches with consistent RV se... | sig/api-machinery,kind/feature,triage/accepted | medium | Major |
2,594,486,812 | node | `Buffer.concat` and `Buffer.copy` silently produce invalid results when the operation involves indices equal or greater than 2^32 | ### Version
v22.9.0, v23.0.0
### Platform
```text
Windows 11 x64
Microsoft Windows NT 10.0.22631.0 x64
```
### Subsystem
Buffer
### What steps will reproduce the bug?
```js
const largeBuffer = Buffer.alloc(2 ** 32 + 5)
largeBuffer.fill(111)
const result = Buffer.concat([largeBuffer])
console.log(result... | confirmed-bug,help wanted,buffer,regression | medium | Critical |
2,594,530,399 | next.js | Cookies cannot be read in middleware while defined in server actions (since 14 at least) | ### Link to the code that reproduces this issue
https://github.com/ScreamZ/reproduction-app-cookies-middleware
### To Reproduce
1. Start application
2. Clic "click me" button
### Current vs. Expected behavior
Cookies are set in Server action and middleware is not able to catch it!
 | ### Checked other resources
- [X] I added a very descriptive title to this issue.
- [X] I searched the [LangGraph](https://langchain-ai.github.io/langgraph/)/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 | low | Critical |
2,594,574,646 | kubernetes | Unexpected Job Creation After CronJob Schedule Update | ### What happened?
I have a CronJob running on an EKS cluster (1.28) with an initial schedule of `40 23 * * *`.
1. At `23:40 UTC`, a job was successfully completed, taking few seconds.
2. At around `23:55 UTC`, I changed the CronJob schedule to `50 23 * * *`.
3. At `03:31:03 UTC`, an unexpected job was created... | kind/bug,sig/apps,triage/accepted | low | Major |
2,594,582,105 | next.js | Including exclamation mark(" ! ") in assetPrefix compilation will result in an error | ### Link to the code that reproduces this issue
https://codesandbox.io/p/devbox/xenodochial-easley-ddh8vq?workspaceId=6bdce0be-af7a-405b-adec-ac633e9ed70d
### To Reproduce
Add the following config to "next.config.mjs":
```js
output: "export",
assetPrefix: "https://mycdn.com/!mark",
```
if the assetPrefix incude... | create-next-app,bug | low | Critical |
2,594,601,539 | PowerToys | Add แธฐ แธฑ | ### Description of the new feature / enhancement
Being able to select
- **แธฑ** on [**K**]
- **แธฐ** on [**Shift**] +[**K**]
### Scenario when this would be used?
Transcription of the Proto-Indo-European language.
### Supporting information
https://en.wikipedia.org/wiki/%E1%B8%B0 | Idea-Enhancement,Good first issue,Resolution-Fix Committed,Product-Quick Accent | low | Minor |
2,594,615,110 | ant-design | Table็ปไปถ๏ผ่ฎพ็ฝฎไบstickyๅ summaryๅฑๆง๏ผ scroll: { x: 'max-content' }ไธ็ๆ | ### Reproduction link
[![Edit on CodeSandbox][(https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/p/sandbox/ji-ben-yong-fa-antd-5-21-4-forked-tnc9fy?file=%2Fdemo.tsx%3A79%2C9&workspaceId=73767ffe-8e59-46a5-8f0d-9959add1714c)](https://codesandbox.io/p/sandbox/ji-ben-yong-fa-antd-5-21-4-fo... | Inactive | low | Major |
2,594,678,468 | flutter | NSInternalInconsistencyException(Modifications to the layout engine must not be performed from a background thread after it has been accessed from the main thread.) | ### Steps to reproduce
The crash is occasional. I refer to issue https://github.com/flutter/flutter/issues/135501 that illustrates the crash will
be solved after 3.16.x. But I meet the occasional crash on flutter 3.22.2
### Expected results
NO crash
### Actual results
Crash
### Code sample
No c... | c: crash,platform-ios,a: production,P2,c: fatal crash,needs repro info,team-ios,triaged-ios | low | Critical |
2,594,697,622 | vscode | nushell doesn't work with debugpy (python debugger) | <!-- โ ๏ธโ ๏ธ 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,debug | low | Critical |
2,594,699,295 | tensorflow | tf.linalg.expm fails to support half/float16 data type, which is inconsistent with doc | ### Issue type
Bug
### Have you reproduced the bug with TensorFlow Nightly?
Yes
### Source
source
### TensorFlow version
2.17.0
### Custom code
Yes
### OS platform and distribution
_No response_
### Mobile device
_No response_
### Python version
_No response_
### Bazel version
_No response_
### GCC/co... | stat:awaiting tensorflower,type:bug,comp:ops,2.17 | low | Critical |
2,594,749,659 | stable-diffusion-webui | [Bug]: AttributeError: 'ImageDraw' object has no attribute 'multiline_textsize' | ### Checklist
- [ ] 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
- [ ] The issue has not been reported before... | bug-report | low | Critical |
2,594,751,317 | bitcoin | Mining Interface doesn't allow for Bitcoin Core to create blocks when it wants | Finally getting around to reviewing the mining interface, and sadly its missing some critical features that a new mining protocol should have. Specifically, one of the key goals of replacing `getblocktemplate` is that Bitcoin Core should be able to push work to clients at opportune times. This includes the ability to c... | Mining | medium | Major |
2,594,772,309 | three.js | CCDIKSolver constraint limits | ### Description
When using CCDIK Solver with GLTF models, the constraints only works well when it's an interval between [-ฯ, ฯ] ( -180ยฐ and 180ยฐ).
My problem is when bone have already an offset rotation like ฯ by default (Seems pretty common with the mixamo model I found on internet).
In the case of an offset ... | Addons | low | Minor |
2,594,790,421 | pytorch | NaN value produced by F.conv2d (cuda) with large values in input | ### ๐ Describe the bug
The result values of this simple convolution operation is NaN starting with pytorch `2.4.0`. Values of input tensor needs to be big enough (e.g. 4e36 used below), and channels large enough (in my test >= 28, somewhat a strange number) to trigger this bug. I haven't tested if other convolution... | needs reproduction,module: cuda,triaged,module: NaNs and Infs | low | Critical |
2,594,796,926 | pytorch | `.all()` on `float32` CUDA tensors causes "illegal memory access" exception with PyTorch 2.5 | ### ๐ Describe the bug
# Summary
Using `Tensor.all()` on CUDA tensors with `float32` dtype causes an "illegal memory access" exception after upgrading to PyTorch 2.5 in combination with Python 3.12 (does not happen with 3.10 and 3.11).
# Code to reproduce
```python
import torch
x = torch.ones(4, device... | needs reproduction,module: cuda,triaged | low | Critical |
2,594,813,540 | pytorch | [fx] make_fx with tracing_mode="real" errors with 'PythonKeyTracer' object has no attribute 'graph' | ### ๐ Describe the bug
```python
import torch
from torch.fx.experimental.proxy_tensor import make_fx
def foo(x):
return x + 1
g = make_fx(foo)(torch.randn(3,))
```
Error
```python
Traceback (most recent call last):
File "/usr/local/lib/python3.12/dist-packages/torch/fx/experimental/proxy_tensor.... | triaged,module: fx,oncall: pt2,module: ProxyTensor,module: pt2-dispatcher | low | Critical |
2,594,826,274 | opencv | OpenCL pow with integer order fails on kernel compilation stage | ### System Information
Platform: Linux + NVIDIA OpenCL (GF 1080)
Become visible after https://github.com/opencv/opencv/pull/26061
### Detailed description
```
[ RUN ] OCL_PowFixture_iPow.iPow/0, where GetParam() = (640x480, 8UC1)
1 error generated.
OpenCL program build log: core/arithm
Status -11: CL... | bug,category: core,category: ocl | low | Critical |
2,594,854,346 | opencv | estimateAffinePartial2D without scaling | ### Describe the feature and motivation
I use [estimateAffinePartial2D](https://docs.opencv.org/4.x/d9/d0c/group__calib3d.html#gad767faff73e9cbd8b9d92b955b50062d) function to stabilize a set of images of a fixed camera dedicated to coastline monitoring. The camera zoom is fixed. There are small camera movements due ... | feature | low | Minor |
2,594,911,974 | pytorch | Dynamo x autograd.Function: leverage compiled autograd on graph break in backwards | There are four quadrants (see table below); we're talking about quadrant III. When we are torch.compiling an autograd.Function, we trace the forward and backward into subgraphs. If the forward can be traced into a subgraph, but the backward cannot, we graph break on the forward.
With compiled autograd in the loop, w... | triaged,oncall: pt2,module: compiled autograd,dynamo-autograd-function | low | Minor |
2,594,920,904 | ollama | Pull Private Huggingface Model | Hi, so I believe it's now possible to pull huggingface models directly by prepending hf.co to the pull statement. I would just like to get clarity on how this works with private models? I have my huggingface token set as an environment variable, but I can't seem to pull a private model. | feature request | low | Minor |
2,594,971,927 | pytorch | [PT2] Don't graph break on loss.backward() | @vmoens mentioned this recently in a talk on TorchRL pain points but I didn't see an existing issue.
We can actually support loss.backward() in Dynamo. There are a couple of cases (ranging from easy to difficult):
1) If the only differentiable inputs to a torch.compile region are graph leaves, then we can handle ... | triaged,oncall: pt2,module: dynamo,module: compiled autograd | low | Minor |
2,594,995,513 | deno | `util.inspect` behaves differently from Node.js when using proxies | Version: Deno 2.0.0
The following code throws in Deno, while it returns a string in Node.js
```js
import util from "node:util"
util.inspect(new Proxy({ x: 1 }, { ownKeys: () => undefined }))
```
| bug,ext/console | low | Minor |
2,595,003,551 | langchain | Context failed to generate pydantic json schema, so chains containing Context steps not working in LangServe | ### 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,595,004,869 | pytorch | Update auto_functionalized_v2 to pass view subgraphs | In Inductor, auto_functionalization_v2 needs to reconstruct views given some base tensors. The way we do that today is that we pass the (sizes, strides, storage_offsets) of the views to auto_functionalization_v2 and then generate .as_strided() calls into the Inductor post_grad_graph.
Our current design has a couple ... | triaged,module: functionalization,oncall: pt2,module: pt2-dispatcher | low | Minor |
2,595,007,404 | rust | Tracking issue for all the ways in which -C compiler flags can alter the ABI | If a `-C` flag alters the ABI, mixing crates built with different flags causes UB. This issue is gathering all the ways in which this can happen, so that we can figure out what to do with them. The general goal is to make it impossible to alter these flags without realizing that they are "special" and need to be set co... | T-compiler,C-tracking-issue,A-ABI,A-target-feature | low | Minor |
2,595,013,480 | yt-dlp | [yandexmusic:track] Can't fully fetch track title from yandex music | ### 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... | geo-blocked,site-enhancement | low | Critical |
2,595,014,100 | pytorch | auto_functionalized_v2 doesn't support export | When we implemented auto_functionalized_v2, it was easier to add support for it to compile and then worry about export later. Today, export is still using auto_functionalized_v1.
The main delta is that auto_functionalized_v2 supports reinplacing custom ops that mutate inputs, where the inputs may be views of other t... | oncall: pt2,oncall: export | low | Minor |
2,595,047,440 | terminal | On keypress or output, openconsole should scroll down like conhost | ### Windows Terminal version
1.22.2702.0
### Windows build number
10.0.19045.5011
### Other Software
cmd.exe
bash.exe (wsl1)
### Steps to reproduce
get some output from dir or from ls -alR so that the windows scrolls.
then scroll up
then write anything.
conhost.exe scrolls to the input line. openconsole.exe doe... | Product-Conhost,Area-Interaction,Issue-Bug,In-PR | low | Minor |
2,595,063,803 | react | Bug: Uncaught runtime error with 'removeChild' and long lists | React version: 18.3.1
## Steps To Reproduce
1. `$ npx create-react-app my-app`
2. `$ cd my-app`
3. Replace the contents of App.js with the code listed below
4. `$ npm run start`
5. Open the page in Google Chrome or Edge (issue does not reproduce in Firefox/Safari)
6. Click one of the "x" labels
7. Click "hi... | Status: Unconfirmed | low | Critical |
2,595,080,170 | ollama | add module/plug-in system to ollama | llm > go code > ollama add-on
no ollama recompil but fast evolution without you have more work... | feature request | low | Minor |
2,595,093,963 | pytorch | No guards for frozen dataclasses and readonly configs | ### ๐ The feature, motivation and pitch
Currently, a guard will be put for a frozen dataclass:
```
TORCH_LOGS="+guards" python -c """from dataclasses import dataclass
import torch
@dataclass(frozen=True)
class MyDC:
x: int
@torch.compile(fullgraph=True)
def func(dc: MyDC, t):
return dc.x + t
f... | triaged,topic: not user facing,oncall: pt2,module: dynamo,module: guards,dynamo-triage-june2024 | low | Critical |
2,595,148,222 | Python | Add TSP problem in Graph Data Structure | ### Feature description
I will add the Traveling Salesman Problem (TSP) Implementation to the Graph Data Structure file. As it's a must do problem when solving graphs in DS.
Kindly assign this issue to me. | enhancement | low | Minor |
2,595,160,354 | flutter | [Impeller] adjustment to DlImageFilter APIs required for coverage computation | In https://github.com/flutter/engine/pull/55843 I attempted to switch the impeller dispatcher to use the DL mechanism for filter bounds computation. Specifically, using `get_input_device_bounds` transform the coverage limit from the parent coordinate space to the child coordinate space:
There are two current issues ... | P2,e: impeller,team-engine,triaged-engine | low | Minor |
2,595,162,145 | PowerToys | Powertoys not opening & keyboard delayed by 1-2 seconds | ### Microsoft PowerToys version
0.85.1
### Installation method
PowerToys auto-update, Microsoft Store
### Running as admin
No
### Area(s) with issue?
General
### Steps to reproduce
Not sure
### โ๏ธ Expected Behavior
Keyboard works properly, and PowerToys settings window opens
### โ Actual Behavior
Keyboard ... | Issue-Bug,Needs-Triage | low | Major |
2,595,163,467 | material-ui | [Autocomplete] renderInput is using an old api | ### Steps to reproduce
The props passed through renderInput use the old API InputProps and InputLabelProps.


### Current behavior
_N... | component: autocomplete,enhancement | low | Minor |
2,595,185,734 | flutter | [packages] Scrub Android plugins for pre-API 21 support | The current stable version of Flutter now requires API 21+, but most of our plugins have not been updated to reflect that, and still support API 19+. We have some tech debt related to older API support, and it would be good to find an clean out proactively (examples we've seen so far include https://github.com/flutter/... | team,platform-android,package,P2,c: tech-debt,team-android,triaged-android | low | Minor |
2,595,213,480 | kubernetes | ๐ Switch to`opencontainers/runc` as a library (Was: Explore replacing opencontainers/runc with containerd/cgroups) | Kubernetes use of `opencontainers/runc` as a library is placing undue burden on the runc team, for example:
- https://github.com/opencontainers/runc/issues/3028
- https://github.com/opencontainers/runc/issues/3221#issuecomment-925972992
We now have a cgroups specific library in containerd org that we can explore t... | sig/node,area/code-organization,needs-triage | medium | Major |
2,595,225,840 | node | Request signal isn't aborted after garbage collection | ## Bug Description
Passing a signal to Request() and aborting it does not cause the underlying request signal to be aborted after it's been garbage collected. This leads to issues where you want to listen on the request signal even after the request itself falls out of scope - e.g., the request is instantiated with ... | confirmed-bug | low | Critical |
2,595,230,361 | godot | Problems inferring type of variables in an autoloaded node's script at runtime | ### Tested versions
- Reproducible in: 4.3, 4.4.dev2, 4.4dev3
### System information
Godot v4.4.dev3 - Arch Linux #1 SMP PREEMPT_DYNAMIC Thu, 12 Sep 2024 17:21:02 +0000 on Wayland - Wayland display driver, Single-window, 2 monitors - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1080 Ti (nvidia; 560.35.03) ... | bug,topic:gdscript | low | Critical |
2,595,249,910 | flutter | [Impeller] compute minimum input hint for shared backdrop layer. | Right now we're defaulting to blurring the entire backdrop, but this can be speed up by computing the union of all saveLayer coverages during the pre-pass. | P2,e: impeller,team-engine,triaged-engine | low | Minor |
2,595,260,399 | flutter | [Impeller] AHB swapchain broken on NVIDIA SHIELD Android TV. | ### Steps to reproduce
I was following with this link: https://api.flutter.dev/flutter/widgets/CustomMultiChildLayout-class.html
The app works fine on my Android Pixel 7 Pro phone. It works fine on my Windows 11 desktop. However, it renders a large dash across the screen on my Android TV (Android SHIELD)
### Expec... | e: device-specific,platform-android,engine,c: rendering,P1,e: impeller,team-engine,triaged-engine,e: impeller-naughty-driver | medium | Critical |
2,595,267,618 | pytorch | [cond] Cond lifts duplicate symint inputs | ### ๐ Describe the bug
```python
def test_cond_symint_input(self):
class M(torch.nn.Module):
def forward(self, x, y, z):
a = y.shape[0]
b = z.shape[0]
def true_fn(x):
return x + a
def false_fn(x):
... | triaged,oncall: pt2,module: higher order operators,module: pt2-dispatcher | low | Critical |
2,595,284,871 | PowerToys | Color picker add copy default code when color selected | ### Description of the new feature / enhancement
When a color is selected, we should have an option to automatically copy our default code (I use hex, but you can set other defaults) so you can save an extra mouse-click.
### Scenario when this would be used?
All the time when selecting colors and needing a code for ... | Needs-Triage,Needs-Team-Response | low | Minor |
2,595,320,082 | godot | Cannot specify base url for GDExtension on web platform | ### Tested versions
Tested in 4.3-stable
### System information
Web/WASM
### Issue description
I am trying to serve a Godot project on the web and am unable to load GDExtension wasm from urls not relative to the current page. The urls used by the server look something like:
```
https://servername.com/play/
http... | platform:web,needs testing,topic:gdextension | low | Minor |
2,595,329,032 | rust | Duplicate error for using allow inside forbid | ### Code
```
// USE `-Zdeduplicate-diagnostics=false`
#[forbid(unsafe_code)] // NO UNSAFE CODE IN HERE!!
fn main() {
{
#[allow(unsafe_code)] // let's have some unsafe code in here
{
}
}
}
```
### Current output
```
error[E0453]: allow(unsafe_code) incompatible with previous forbid
--... | A-diagnostics,T-compiler | low | Critical |
2,595,340,388 | godot | Using enum from other class as a signal parameter type doesn't work as expected | ### Tested versions
- Reproducible in Godot v4.4.dev3.mono
### System information
Godot v4.4.dev3.mono - Windows 10.0.19045 - Multi-window, 1 monitor - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1060 6GB (NVIDIA; 32.0.15.6094) - Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz (4 threads)
### Issue description
Creat... | discussion,topic:gdscript | low | Critical |
2,595,352,397 | kubernetes | Pod admission can fail due to webhooks + context deadline exceeded, even when all webhooks are set to failurePolicy = Ignore | ### What happened?
Pod admission failed with the error "Timeout: request did not complete within requested timeout - context deadline exceeded"
This occurred with Datadog's admission controller, when a default deny policy was applied and the network policy allowing ingress to Datadog's admission controller was mi... | kind/bug,sig/api-machinery,triage/accepted | low | Critical |
2,595,368,116 | next.js | Next.js App Router ISR doesn't remove noindex meta tag on cache revalidation | ### Link to the code that reproduces this issue
https://stackblitz.com/edit/stackblitz-starters-ws74xq?file=README.md
### To Reproduce
1. Build the project and start it in production mode `npm run build && npm start`
2. Open a new terminal and run the backend server `npm run server`
3. Open the application on the ... | bug | low | Minor |
2,595,375,446 | deno | deno migrate command | Hello there, i'm new to deno exiting ecosytem, recently i'm experimenting with my old nodejs project to deno, my project has standard configuration of a nodejs typescript project, it has tsconfig, eslint, pritter etc...
When i'm run deno install command and deno task dev command the project run okay, but if i open ... | cli,suggestion | low | Critical |
2,595,403,540 | excalidraw | Add 2 new urls to the Web Embed URLs whitelist | I would like the two urls to be whitelisted:
- https://perchance.org/cynews
- https://dddice.com/room/hx6kaq_/stream/chat?key=[REDACTED]
dddice.com used to working in a previous version, but that does not seem the case anymore.
Thanks in advance, | whitelist | low | Minor |
2,595,428,354 | node | `parallel/test-performance-measure` is flaky | ### Test
`test-performance-measure`
### Platform
Linux x64
### Console output
```console
---
duration_ms: 1225.808
exitcode: 1
severity: fail
stack: |-
node:internal/assert/utils:281
throw err;
^
AssertionError [ERR_ASSERTION]: The expression evaluated to a falsy value:
assert.ok(d... | flaky-test,perf_hooks,linux | low | Critical |
2,595,454,441 | rust | Implicit calls to `deref` and `deref_mut` are a footgun with raw pointers | I tried this code (which models library code with invariants for all valid instances of A but without all the details):
```rust
use std::ops::Deref;
use std::mem::MaybeUninit;
struct A{
b: MaybeUninit<B>,
}
struct B{
field: String,
}
impl Deref for A {
type Target = B;
fn deref(&self)->&B{
p... | C-discussion | low | Major |
2,595,482,293 | godot | Godot unresponsive - any and all windows related to the application | ### Tested versions
Issue has been consistent since 3.5 and is still occurring in 4.3 stable
### System information
Godot v4.3.stable - Windows 10.0.26100 - GLES3 (Compatibility) - NVIDIA GeForce RTX 3060 Ti (NVIDIA; 32.0.15.6590) - Intel(R) Core(TM) i5-9400F CPU @ 2.90GHz (6 Threads)
### Issue description
ext... | bug,topic:rendering,needs testing | low | Critical |
2,595,483,983 | flutter | [Release] Update release documentation | As part of regular release engineering maintenance we need to ensure release documentation is accurate and up-to-date. This issue tracks the verification and updating of these documents.
Once a document is verified and updated, please check the corresponding box. If a change is made, please reference the PR.
- [... | team-release | low | Minor |
2,595,506,668 | ollama | Pulling models from private OCI Registries | According to #2388 it should be possible to push and pull models to a Docker/OCI registry (without authentication).
Even though it's an unsupported feature, I find it very useful and would like to contribute a short description how to do this.
Potential use cases are
- organisation-internal registries for org... | feature request | low | Critical |
2,595,535,448 | excalidraw | text not synced if pasted into wysiwyg | in collab (affects E+ too):
1. enter wysiwyg editor
2. paste text that's in font and code range that aren't currently already rendered on canvas
3. the text element is not synced to other client (even after confirmation)
/cc @Mrazator | bug,collaboration | low | Minor |
2,595,547,739 | godot | Tileset collision polygon does not appear when clicking away after drawing the polygon | ### Tested versions
- Reproduce in v4.3.stable.official [77dcf97d8]
### System information
Godot v4.3.stable - Windows 10.0.22631 - GLES3 (Compatibility) - AMD Radeon RX 6750 XT (Advanced Micro Devices, Inc.; 32.0.12011.1036) - 12th Gen Intel(R) Core(TM) i5-12600KF (16 Threads)
### Issue description
When... | bug,topic:editor,topic:2d | low | Critical |
2,595,549,230 | kubernetes | `kubeapiservertesting.StartTestServer` mutates global state and prevents parallel tests within the same package | The following recent changes make it hard to run parallel integration tests from within the same package (the `utilruntime.Must` call will occasionally `panic`):
https://github.com/kubernetes/kubernetes/blob/632ed16e002d87fa7166a8f4ca1dc48d4f0a9725/cmd/kube-apiserver/app/testing/testserver.go#L196-L208
This can b... | sig/api-machinery,triage/accepted | low | Minor |
2,595,564,146 | svelte | Feat: [Types] Improves "svelte/element" with directive-free types, and a configurable children | ### Describe the problem
The module "svelte/elements" provides the definitions of HTML attributes that can be used to declare props to spread in a component that "wrap" a HTML element.
For example for a component `Button`, using directly the type `HTMLButtonAttributes`
```svelte
<script lang="ts">
import typ... | types / typescript | low | Minor |
2,595,589,825 | kubernetes | Race when scheduling statefulset pods with local PV, resulting in pods pending forever | ### What happened?
A statefulset has a volumeclaimtemplate which uses a local PV storage class. The PVs created by this storage class are tightly bound to a single node.
In this example lets say that ordinal 0 of the statefulset is running on node A with a PVC which is bound to a PV on node A as well.
1. delet... | kind/bug,sig/scheduling,lifecycle/stale,needs-triage | low | Minor |
2,595,640,433 | excalidraw | Failure to Automatically Read and Save to Existing Excalidraw Canvas File After Reload | When saving an Excalidraw canvas file and reloading the webpage, the app fails to automatically read from the previously saved file.
After reloading, users cannot save changes to the existing file. Instead, they must save to a new file or manually reopen the existing one to continue working | bug | low | Critical |
2,595,671,866 | pytorch | Adam optimizer without first moment estimate, for less vram | ### ๐ The feature, motivation and pitch
Many GANs like StyleGan use the Adam optimizer with betas=(0.0, 0.999), this means that the first moment estimate is disabled but it still uses a lot of vram for it, is it possible to add an option to stop this from happening and reduce vram usage?
### Alternatives
_No respon... | module: optimizer,triaged,actionable | low | Major |
2,595,728,783 | pytorch | torch._inductor.exc.LoweringException in `torch._export.aot_compile` | ### ๐ Describe the bug
Install most recent diffusers, torchao and pytorch
```
pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu121
pip install git+https://github.com/huggingface/diffusers
pip install torchao
```
<details>
<summary>Repro</summary>
```python
import torch
fr... | oncall: pt2,oncall: export,module: aotinductor | low | Critical |
2,595,731,969 | ui | [bug]: breaking changes for calendar using react-day-picker 9.1.4 | ### Describe the bug
As it is, the calendar component breaks, if you update react-day-picker to `9.1.4`.
I discovered this while I initially wanted to try out the new timeZone feature.
More details on what may be affected are provided in the docs:
https://daypicker.dev/upgrading
Styles & custom components are ... | bug | low | Critical |
2,595,760,487 | PowerToys | PowerToys Settings not showing window properly | ### Microsoft PowerToys version
0.85.1
### Installation method
Microsoft Store
### Running as admin
No
### Area(s) with issue?
Welcome / PowerToys Tour window
### Steps to reproduce
I've installed noramlly by Winget at first when i got this error, then I removed all files and unistalled all, to try the install... | Issue-Bug,Needs-Triage,Needs-Team-Response | low | Critical |
2,595,765,392 | pytorch | `_native_batch_norm_legit`: `aot_eager` backend incorrectly raising an error. | ### ๐ Describe the bug
`out=` variant of `_native_batch_norm_legit` operation does not work with `aot_eager` backend.
```python
args = (
torch.rand(5, 5, 5),
torch.rand(5),
torch.rand(5),
torch.rand(5),
torch.rand(5),
True,
0.5,
0.6,
)
out = (
torch.empty(5, 5, 5... | triaged,oncall: pt2,module: pt2-dispatcher | low | Critical |
2,595,811,547 | rust | LUB coercions can't combine unsafe fn item with safe fn item or pointer | <!--
Thank you for filing a bug report! ๐ Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
I tried this code: [playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=e3e838d025de542f3773ff98ab7e4488)
```rust
fn safe_fn()... | C-bug,A-coercions,T-types | low | Critical |
2,595,835,669 | vscode | Have a setting to always delete untitled workspaces on close | <!-- โ ๏ธโ ๏ธ 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... | feature-request,workbench-multiroot | low | Critical |
2,595,840,518 | pytorch | `out=` dynamo support using `eager` (on CPU) backend. | List of operations, whose `out=` variants are not consistent with eager (i.e. run with eager, but fail with dynamo). I have grouped them according to the error each of them raise.
_Note: ~I'm only using CPU, here. Using CUDA seems to generate a different list of operations.~ I have confirmed both CPU and CUDA result... | triaged,oncall: pt2,module: dynamo | low | Critical |
2,595,850,012 | neovim | windows: `nvim.exe` exits with code -1073741819 immediately after startup | ### Problem
when run `nvim`, cmd is cleared and only a new prompt at the end of the cmd screen, pressing more enter key will cause the cmd to crash (dev version will directly crash cmd when press enter or run echo %ERRORLEVEL% after run nvim)
both 0.10.2 and dev version have this issue
in the picture, the next ran co... | bug,platform:windows,bug-crash,startup | low | Critical |
2,595,855,009 | deno | Feat: Configure permission profiles to shorten task commands, like `deno run --permission-profile main-script main.ts` | Task commands for a simple application look like this:
```json
{
"tasks": {
"start": "deno run --allow-env --allow-read --allow-run npm:concurrently 'deno run server' 'deno run bundle'",
"bundle": "deno run --allow-env --allow-read --allow-run npm:esbuild src/main.ts --watch --bundle --outfile=public/m... | suggestion,task runner | low | Major |
2,595,860,299 | go | cmd/nm: running nm on object from different version can crash | ### Go version
tip
### Output of `go env` in your module/workspace:
```shell
GO111MODULE=''
GOARCH='amd64'
GOBIN=''
GOCACHE='/home/iant/.cache/go-build'
GOENV='/home/iant/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
GOMODCACHE='/home/iant/gopath/pkg... | NeedsFix,compiler/runtime | low | Critical |
2,595,874,054 | pytorch | Torch 2.5.0 vs 2.4.1: torch nested in BetterTransformer fastpath implementation | ### ๐ Describe the bug
Thanks for the new torch release!
I am using torch nested in the bettertransfromer implementation. https://pytorch.org/blog/a-better-transformer-for-fast-transformer-encoder-inference/
Here is the exact code where torch compile breaks:
https://github.com/huggingface/optimum/blob/1e501... | needs reproduction,triaged,module: nestedtensor,oncall: pt2 | low | Critical |
2,595,891,524 | flutter | [Flutter GPU] Use unsigned Dart FFI types where appropriate. | Dart FFI supports unsigned types like Uint32. So we should use those instead of int types when passing things like enums to the engine. | engine,c: proposal,P2,team-engine,triaged-engine,flutter-gpu | low | Minor |
2,595,931,643 | PowerToys | PowerToys tray icon missing after upgrade to Windows 11 Home 24H2. | ### Microsoft PowerToys version
0.85.1
### Installation method
GitHub
### Running as admin
Yes
### Area(s) with issue?
System tray interaction
### Steps to reproduce
Update Windows 11 Home 23H PC to Windows 11 Home 24H2. (Without NPU).
(Optionally: uninstall PowerToys usings winget, and install it system wide ... | Issue-Bug,Needs-Triage,Needs-Team-Response | low | Major |
2,595,954,952 | pytorch | Refactor FlexibleLayout to separate out "this stride can be changed" and "how this buffer is allocated can be changed" | ### ๐ The feature, motivation and pitch
Currently, we have two layouts:
- FixedLayout
- FlexibleLayout
Where FixedLayout basically means "We already decided the layout, don't change it" while FlexibleLayout means "we are free to change this layout".
However, I think there are actually two different components... | triaged,oncall: pt2,module: inductor | low | Minor |
2,595,969,024 | kubernetes | Recreate the Device Manager gRPC server if failed | We need to ensure Device Plugin infrastracture is reliable by implementing the following:
1. Retry to start the server if it failed (see https://github.com/kubernetes/kubernetes/pull/125513 for places where the gRPC server may fail).
2. If server is not up, integrate it as a source for the kubelet health status (se... | priority/backlog,area/kubelet,sig/node,kind/feature,help wanted,triage/accepted | low | Critical |
2,595,993,758 | rust | Footgun with Rc::assume_init and related methods | ### Location
I came across https://doc.rust-lang.org/nightly/std/rc/struct.Rc.html#method.assume_init recently, and spotted a footgun that I think ought to be called out:
### Summary
The safety section does not clarify whether multiple `Rc`s are allowed to exist when `assume_init` is called. If they are, then whet... | T-libs-api,A-docs,T-libs | low | Major |
2,596,043,771 | next.js | Missing `src.blurDataURL` for default metadata images while importing `apple-icon.png`/`icon.png`/`opengraph-image.png`/`twitter-image.png` with Turbopack enabled | ### Link to the code that reproduces this issue
https://github.com/dimaMachina/repro-next/tree/missing-src.blurDataURL
### To Reproduce
Run `pnpm dev`
### Current vs. Expected behavior
See errors:
```text
Error: Image with src "/_next/static/media/opengraph-image.41136f47.png" has "placeholder='blur'" property... | bug,Turbopack,linear: turbopack | low | Critical |
2,596,074,517 | create-react-app | How to fix module not found error | how would i fix this error:
Module not found: Error: Can't resolve '.src/.Components' in 'C:\Users\12142\OneDrive\Desktop\Form Data 2 JS\datascripts\src' | needs triage | 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.