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,650,065,753 | TypeScript | moduleResolution Bundler and importModuleSpecifierEnding | <!-- โ ๏ธโ ๏ธ 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... | Needs Investigation | low | Critical |
2,650,069,613 | kubernetes | Add statusz endpoint for kube-scheduler | ### What would you like to be added?
Part of
- https://github.com/kubernetes/enhancements/issues/4827
Add the `/statuz` endpoint for kube-scheduler.
Sample response:
```
Started: Fri Sep 6 06:19:51 UTC 2024
Up: 0 hr 00 min 30 sec
Go version: go1.23.0
Binary version: 1.31.0-beta.0.981+c6be932655a03b... | kind/feature,sig/instrumentation,needs-triage | low | Major |
2,650,117,494 | opencv | Documentation states that cvtColor() supports CV_16U, but seems to actually only support CV_8U and CV_32F. | ### Describe the doc issue
The cvtColor documentation:
https://docs.opencv.org/4.x/d8/d01/group__imgproc__color__conversions.html#gaf86c09fe702ed037c03c2bc603ceab14
states:
"src input image: 8-bit unsigned, 16-bit unsigned ( CV_16UC... ), or single-precision floating-point. "
but it looks like only CV_8U... | category: documentation | low | Critical |
2,650,124,188 | pytorch | asynchronous copies from accelerator to cpu: what should be the expected behaviour? | ### ๐ Describe the bug
## Problem
If you run
```python
import torch
x = torch.arange(1000, device="cuda")
y = torch.arange(1000, device="cuda")
x = x.to("cpu", non_blocking=True)
y = y.to("cpu", non_blocking=True)
# torch.cuda.synchronize()
assert (x == y).all()
```
you'll need to comment out the `tor... | module: docs,triaged,module: python frontend | low | Critical |
2,650,153,190 | next.js | Bug/inconsistency with `dynamicIO` and dynamic imports | ### Link to the code that reproduces this issue
https://github.com/amannn/nextjs-bug-repro-json-import-turbo/commit/011dc47eddfb59aaea7e5461dcde85139b908c2c
### To Reproduce
1. Clone https://github.com/amannn/nextjs-bug-repro-json-import-turbo/
2. `pnpm i`
3. `pnpm dev --turbo`
4. See error
### Current vs. Expec... | bug,linear: next,dynamicIO | low | Critical |
2,650,195,093 | vscode | pytest parametrize test results are hard to read |
Type: <b>Bug</b>
<!-- Please fill in all XXX markers -->
# Behaviour
With parametrized tests, the results are hard to read in the "running tests for ..." right side window of test results.
For non-parametrized tests, the test name is listed.
For parametrized tests, the parameters are listed without the test name... | bug,polish,testing | low | Critical |
2,650,202,502 | kubernetes | Make NoteLengthLimit for events configurable | ### What would you like to be added?
Making [NoteLengthLimit](https://github.com/carlory/kubernetes/blob/8fe10dc378b7cc3b077b83aef86622e1019302d5/pkg/apis/core/validation/events.go#L38) for events was some configurable value, rather than a hard limit at 1kb so that cluster operators could choose what size to limit e... | sig/scheduling,kind/feature,needs-triage | low | Critical |
2,650,205,188 | godot | When the `ui_text_completion_accept` shortcut is the same as `ui_indent`, `ui_indent` takes precedence | ### Tested versions
- Reproducible in v4.4.dev4.official [36e6207bb]
### System information
Godot v4.4.dev4 - Windows 10.0.19045 - Multi-window, 2 monitors - Vulkan (Mobile) - dedicated NVIDIA GeForce RTX 3080 - 12th Gen Intel(R) Core(TM) i5-12400F (12 threads)
### Issue description
I prefer the behavior of `ui_te... | discussion,topic:input,topic:gui | low | Minor |
2,650,208,034 | transformers | Changes required to `save_model` for certain models (e.g., Phi 3.5 Vision) | ### Feature request
This request proposes one of three changes (see **Motivation** for background, and **Your contribution** more thoughts on possible solutions) in order to allow saving of a certain class of models, including but not limited to Phi 3.5 Vision.
1. Accept a `state_dict` argument in the `Trainer` c... | trainer,Feature request,Safetensors | low | Critical |
2,650,213,379 | PowerToys | Sometimes Mouse Jump didn't claim the focus and pressing numbers won't work (with some other suggs in issue) | ### Microsoft PowerToys version
0.86.0
### Installation method
WinGet
### Running as admin
Yes
### Area(s) with issue?
Mouse Utilities
### Steps to reproduce
- focus on any window
- call the function
- try to press number (only tested happening on main area's number row but the numkeys on the right since my ... | Issue-Bug,Needs-Triage | low | Minor |
2,650,220,218 | tauri | [feat] Expose raw window procedure messages on Windows | ### Describe the problem
On Windows, there isn't a way to inspect raw incoming wndproc messages. This is useful in a lot of advanced Win32 API use cases, and is necessary for e.g. the [appbar APIs](https://learn.microsoft.com/en-us/windows/win32/shell/application-desktop-toolbars). An appbar is a special window that... | type: feature request | low | Major |
2,650,222,087 | pytorch | [RFC] Distributed manual_seed API for N-D parallelism | ### Background
In distributed training scenarios, RNG initialization matters for ensuring a correct model initialization, and in some cases also controlling random ops during training (e.g. dropout). For model initialization, the objective is to ensure that when different ranks initialize different shards of a layer... | oncall: distributed,triaged,module: c10d | low | Major |
2,650,278,861 | PowerToys | FanzyZones Issues with Multiple Adobe Apps | ### Microsoft PowerToys version
0.86.0
### Installation method
Microsoft Store
### Running as admin
Yes
### Area(s) with issue?
FancyZones
### Steps to reproduce
This has been an ongoing issue with FancyZones and Adobe applications for a very long time.
Specifically:
Adobe Illustrator:
Problem: Project file... | Issue-Bug,Needs-Triage | low | Minor |
2,650,299,146 | next.js | Failed to parse source map: TypeError: Cannot read properties of undefined (reading 'bold') for deno | ### Link to the code that reproduces this issue
https://github.com/howdoicomputer/issue-reproduction
### To Reproduce
1. Create a new project and add
```
import OpenAI from 'openai';
const client = new OpenAI();
```
To the top of `app/page.tsx`
2. `deno run dev`
3. Watch app crash when the index pag... | bug,linear: next | low | Critical |
2,650,355,573 | animate.css | [Docs] Svelte-Animate | ### Is your feature request related to a problem? Please describe.
I just created [Svelte-Animate](https://svelte-animate.codewithshin.com/) based on animate.css. It will be greate if you can mention about it.
### Describe the solution you'd like.
Svelte-Animate on the doc page.
### Describe alternatives you've con... | feature request | low | Minor |
2,650,368,717 | three.js | Haptics example crashes after switching from hands to controllers (or vice verse) | ### Description
While investigating a separate issue (#29861), I found that the haptics example crashes after switching between hands and controllers followed by trying to touch one of the music notes. Error log below
```
webxr_xr_haptics.html:250 Uncaught TypeError: Cannot read properties of undefined (reading ... | WebXR | low | Critical |
2,650,389,266 | flutter | [a11y] When focusing Widget created by showModalBottomSheet, focus is not immediately on contained actions | ### Steps to reproduce
1. Enable voiceover on your platform.
2. Launch a modal bottom sheet via `showModalBottomSheet`.
3. Navigate to it via voiceover.
4. Observe that the dialog itself is focused instead of the contents of the dialog.
### Expected results
The interactive contents of the dialog should be f... | framework,f: material design,a: accessibility,has reproducible steps,P2,found in release: 3.24,team-accessibility,triaged-accessibility,found in release: 3.27 | low | Minor |
2,650,398,292 | vscode | VSCode trying to update WSL on launch for literally no reason |
Type: <b>Bug</b>
Every time I launch VS Code after the latest update, it opens a Terminal.exe that tries to update WSL. I don't have WSL installed at all on my system, and I don't have any exstensions that require or assume WSL to be installed. This is really annoying. Please fix.
```
Windows Subsystem for Linux mus... | bug,WSL,terminal-profiles | low | Critical |
2,650,404,289 | go | cmd/compile: consider giving a warning or an error if a PGO profile looks mismatched | For example, if I run `go build` on a Go codebase with a `default.pgo` file, and the PGO logic can see that the majority of the symbols mentioned in the profile are not present in the source code at all, it could give a warning or an error to the user because one of two things might have happened:
1) The profile was... | Thinking,NeedsInvestigation,compiler/runtime | low | Critical |
2,650,453,783 | electron | Allow to disable usage of GPU completely, preferably via ENV variable. | ### 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 ... | enhancement :sparkles: | low | Critical |
2,650,480,488 | kubernetes | Add statusz endpoint for kube-controller-manager | ### What would you like to be added?
Part of
https://github.com/kubernetes/enhancements/issues/4827
Add the /statuz endpoint for controller-manager.
Sample response:
Started: Fri Sep 6 06:19:51 UTC 2024
Up: 0 hr 00 min 30 sec
Go version: go1.23.0
Binary version: 1.31.0-beta.0.981+c6be932655a03b-dirty... | kind/feature,sig/instrumentation,needs-triage | low | Minor |
2,650,497,665 | kubernetes | Add statusz endpoint for kube-proxy | ### What would you like to be added?
What would you like to be added?
Part of
https://github.com/kubernetes/enhancements/issues/4827
Add the /statuz endpoint for kube-proxy.
Sample response:
Started: Fri Sep 6 06:19:51 UTC 2024
Up: 0 hr 00 min 30 sec
Go version: go1.23.0
Binary version: 1.31.0-beta.0.98... | kind/feature,sig/instrumentation,needs-triage | low | Minor |
2,650,504,736 | langchain | langchain template list - 404 and never loads package | ### 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,650,506,044 | flutter | iOS Voice Control number label shown on parent widget with Semantic label when child widget is actionable | ### Steps to reproduce
1. Create a parent widget, and wrap it in Semantics(label: 'Hello world)
2. Add a child widget with an action, like TextButton
3. Activate Voice Control on iOS
4. Say "Show numbers"
5. Notice a number is shown on the parent, and it has no actions
### Expected results
The parent AND c... | platform-ios,framework,a: accessibility,has reproducible steps,P1,team-ios,triaged-ios,found in release: 3.24,found in release: 3.27 | medium | Major |
2,650,559,285 | go | proposal: net/http: optionally disable recover on panic | ### Proposal Details
Similar to the previous proposals in #16542 and #25245,
I propose a per `Server` opt out of panic recovering and printing.
While the automatic panic recovery was previously deemed regrettable, the above proposals declined for being somewhat backwards incompatible, especially when `ErrAbortH... | Proposal | low | Critical |
2,650,567,715 | three.js | hapticActuators not working in XR sessions started with hand tracking used first | ### Description
If an XR session is started with hand tracking being used, and then in the middle of the session you pick up your controllers, the hapticActuators won't work. I believe the issue is specific to three.js as it does not occur here: https://cabanier.github.io/webxr-samples-1/input-selection-2.html
I fi... | WebXR | low | Minor |
2,650,568,110 | pytorch | torch_dispatch x HOP handling | From discussion with @Chillee and @bdhirsh.
1. torch_dispatch mode should have a flag for if it accepts HOPs or not. If it does, then the HOP should get passed into the `__torch_dispatch__`.
2. We should give HOPs similar properties to ops. That is, they should have a .tag, the .opoverload field should probably poi... | triaged,module: dispatch,oncall: pt2,module: higher order operators,module: pt2-dispatcher | low | Minor |
2,650,609,894 | angular | resource signal : have a way to make value() to persists while loading like when we use reload() | ### Which @angular/* package(s) are relevant/related to the feature request?
core
### Description
My typical use case is a resource loading data for a sortable table like this :
```typescript
readonly tableResource = resource({
request: () => ({
sort: this.sort(),
}),
loader: async ({ request }) =... | area: core,core: reactivity,cross-cutting: signals | medium | Major |
2,650,611,399 | rust | Tracking issue for RFC 3458: Unsafe fields | This is a tracking issue for:
- https://github.com/rust-lang/rfcs/pull/3458
The feature gate for the issue is `#![feature(unsafe_fields)]`.
### About tracking issues
Tracking issues are used to record the overall progress of implementation. They are also used as hubs connecting to other relevant issues, e.g., bugs... | T-lang,C-tracking-issue,B-experimental,F-unsafe_fields | low | Critical |
2,650,617,708 | TypeScript | Change the behavior of `tsc` on a tsconfig solution | ### ๐ Search Terms
The Vite starters now use a "solution" tsconfig, as documented in the docs.
The issue is that a lot of people are used to run `tsc` or `tsc --noEmit` at the root of the project, and now, this silently does nothing.
### โ
Viability Checklist
- [x] This wouldn't be a breaking change in existing ... | Suggestion,In Discussion | low | Critical |
2,650,620,917 | three.js | GLTFExporter: Provide a way to export a mesh with multiple primitives | ### Description
Currently when exporting a model with GLTFLoader all geometry-material pairs are separated into different "mesh" nodes that all have a single primitives in the final GLTF file. This sacrifices a lot of control over the final file, though, since GLTF can support multiple primitives (with unique material... | Enhancement | low | Major |
2,650,643,233 | terminal | Add options to control the new Builtin Box Drawing Glyphs | ### Description of the new feature
Since the new Builtin Box Drawing Glyph feature is parametric, exposing some of it to the user could be beneficial.
Specifically Line Width and Roundiness is most useful if a user wants to emulate the look of the original box drawing characters.
### Proposed technical implementatio... | Help Wanted,Area-Settings,Product-Terminal,Issue-Task | low | Minor |
2,650,670,068 | godot | ENet Node not found errors | ### Tested versions
I'm pretty sure it can be reproduced in any version.
### System information
Windows 11 64bit, Godot 4.3 stable win64
### Issue description
RPC calls can arrive to clients before the node is replicated and after it's freed, causing 'get_node: Node not found: NodePath' errors.
### Steps to repro... | bug,topic:network | low | Critical |
2,650,670,287 | pytorch | AWS A100 runners reliability issue | Compiler team reports that there are still some reliability issues with AWS A100 where some runners start to crash since last weekend. For example,
* https://github.com/pytorch/pytorch/actions/runs/11763098772
* https://github.com/pytorch/pytorch/actions/runs/11773760797/attempts/1
cc @ezyang @gchanan @zou3519 @... | high priority,module: ci,triaged | low | Critical |
2,650,680,348 | next.js | Conditionally Rendering Form Component Causes Server Action Error | ### Link to the code that reproduces this issue
https://codesandbox.io/p/devbox/elastic-raman-mdp554
### To Reproduce
I attached the CodeSandbox for a minimal reproduction. I am purposely calling the action from onSubmit so that I can do both client-side and server-side validation. I removed explicit validation part... | bug,Runtime | low | Critical |
2,650,686,043 | rust | non-camel-case-types lint does not flag `repr(C)` types | ### Code
```Rust
#![forbid(non_camel_case_types)]
#[repr(C)]
pub struct foo_bar {}
```
### Current output
```Shell
<no error>
```
### Desired output
```Shell
Compiling playground v0.0.1 (/playground)
error: type `foo_bar` should have an upper camel case name
--> src/lib.rs:4:12
|
4 | pub struct foo_bar {}
| ... | A-lints,T-lang,T-compiler,C-discussion,A-repr,L-non_camel_case_types | low | Critical |
2,650,691,649 | langchain | Neo4jVector.from_existing_index() doesn't error if given an invalid index_name | ### 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,650,705,824 | rust | build and target aren't distinguished during llvm building | <!--
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.
-->
Cross-compiling rust 1.82.0 itself fails with custom LLVM used on the build and vendored llvm on the host.
```
$ ./x.py build -j30 -v
...
-- Installing: /root/... | A-cross,T-bootstrap,C-bug | low | Critical |
2,650,719,349 | go | cmd/go: TestScript/fileline failures | ```
#!watchflakes
default <- pkg == "cmd/go" && test == "TestScript/fileline"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8731521742206735809)):
=== RUN TestScript/fileline
=== PAUSE TestScript/fileline
=== CONT TestScript/fileline
script... | NeedsInvestigation | low | Critical |
2,650,724,905 | tauri | [feat] Push Notifications | ### Describe the problem
Several platforms supported by Tauri - macOS, iOS, and Android, to name a few - have some kind of built-in push notifications system. For Apple systems, of course there is [APNS](https://developer.apple.com/documentation/usernotifications/registering-your-app-with-apns), and for Android and ... | type: feature request | medium | Critical |
2,650,729,697 | PowerToys | Mouse zoom utility. | ### Description of the new feature / enhancement
A mouse utility that lets users zoom in on small text and content, improving readability and focus for better visualization.
### Scenario when this would be used?
A mouse utility that enables users to quickly zoom in on small text and content, improving readability fo... | Needs-Triage | low | Minor |
2,650,770,585 | pytorch | Halide CPU backend numerical issue for inplace add | ### ๐ Describe the bug
Found this bug when I debug a test failure in https://github.com/pytorch/pytorch/pull/140249
```
import torch
from torch._inductor import config
config.cpu_backend = "halide"
@torch.compile
def f(x, y):
return x.add_(y)
x = torch.ones([2, 12, 13, 17]).transpose(1, 2)
y = ... | triaged,oncall: pt2,topic: inductor halide backend | low | Critical |
2,650,776,768 | pytorch | Flaky bot might be missing some data when making a judgement | ### ๐ Describe the bug
See https://github.com/pytorch/pytorch/issues/139057 and https://github.com/pytorch/pytorch/issues/137771 that were closed today as no longer reproduced, only to be reopened soon afterwards as still happening
Which hints at some gaps in the logic that tracks whether or disabled tests are act... | module: ci,triaged | low | Critical |
2,650,782,791 | neovim | Terminal cleanup broken when resizing text in tmux, In WSL2 | ### Problem
**Description**:
Found an issue with how neovim cleans up the terminal screen when exiting after screen resize, but only happens inside tmux (or possibly other buffer based scroll-restricted environments).
**Current behavior**:
Neovim only partially cleans the screen, showing some of what was previously d... | bug,tui | low | Critical |
2,650,786,446 | svelte | Svelte 5 and CSP | @eltigerchino please find a minimal reproduction attempt [here](https://github.com/mulder999/svelte-bug-12879)
This is basically the standard sveltekit demo and adjustment were made in commit `92df14f` (static adapter + CSP).
To reproduce:
1. `npm run build`
2. `npm run preview`
3. Open project home page and s... | bug | low | Critical |
2,650,790,769 | pytorch | inconsistency in ```torch.special.i0e``` on CPU and GPU | ### ๐ Describe the bug
testing the function torch::special::i0e() with a bfloat16 tensor for the consistency between CPU and GPU.
```python #
#include <iostream>
#include <torch/torch.h>
int main() {
torch::Tensor self = torch::tensor(
{
{
{
{{-0.1064, 0.75... | module: numerical-stability,module: cuda,triaged,module: bfloat16,module: special | low | Critical |
2,650,825,791 | tauri | [bug] It still doesn't display the window borders correctly on Windows 10. | ### Describe the bug
When I set decorations to false, the initial window has no left or bottom border. However, when I resize the window, they appear. But it's noticeable that their color is differentโslightly darker.
 | Platforms: inductor
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_cross_cuda_float32&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32836195920).
Over the pa... | triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor | low | Critical |
2,650,936,064 | create-react-app | problem with jest matchers | <!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon... | needs triage,issue: bug report | low | Critical |
2,651,042,535 | vscode | Do not show publisher information for workspace extensions install recommendation notification | IIRC this used to say Microsoft instead of ms-vscode

| feature-request,extensions | low | Major |
2,651,042,984 | godot | Loss of float precision when using `save as` on a text resource or scene | ### Tested versions
current master @ ec6a1c0e792ac8be44990749800a4654a293b9ee
### System information
macOS 14.5.0, M2 Pro, Vulkan
### Issue description
Re-saving a text scene/resource as another text scene/resource with float properties results in a loss of precision when the float has a precision of >6.
This ... | bug,topic:core | low | Minor |
2,651,050,043 | vscode | Support IME contextual conversion (pre- and post-conversion references) | <!-- โ ๏ธโ ๏ธ Do Not Delete This! feature_request_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
## Summary
This request is for Visual Studio Code t... | feature-request,editor-input-IME | low | Critical |
2,651,058,867 | deno | refactor(ext/node): do not prefix private function with `_` in node compat JS implementation | In Node compat JS implementation, we generally follow Node.js source code as far as possible, but with `_` prefix for private functions in a file (ex. `afterConnect` in `lib/net.js` in Node.js becomes `_afterConnect` in our code base). This `_` prefix is confusing for comparing the 2 code bases. So we should remove the... | refactor | low | Minor |
2,651,068,850 | godot | Switching Editing and Preview keep reloading the Editor | ### Tested versions
The Godot editor keeps reloading whenever you preview the game, regardless of whether the project is simple or complex. This constant reloading is frustrating, as it forces you to wait for the editor to reload each time you switch between preview and editing, which slows down development. This issu... | bug,platform:android,topic:editor | low | Major |
2,651,132,937 | godot | Large Font Size Pushes Bottom Tab Bar Off Screen | ### Tested versions
v4.3.stable.official [77dcf97d8]
### System information
MacBook Pro 13 inch M1 2020
### Issue description
Opening the audio tab pushes the bottom tab bar off the bottom of the screen entirely.
<img width="1552" alt="Screenshot 2024-11-11 at 9 58 21โฏPM" src="https://github.com/user-at... | bug,topic:editor | low | Minor |
2,651,136,227 | pytorch | FlexAttention gives me an INTERNAL_ASSERT_FAILED during mask_mod | ### ๐ Describe the bug
I am running some small, batch size 1 evaluations at inference, and get the following error with Flex Attention:
```Python
File "/opt/conda/envs/main-env/lib/python3.11/site-packages/torch/nn/attention/flex_attention.py", line 873, in create_block_mask
mask_tensor = create_mask(mask_... | needs reproduction,triaged,bug,oncall: pt2,module: higher order operators,module: pt2-dispatcher,module: flex attention,module: sdpa | low | Critical |
2,651,137,282 | go | x/tools/cmd/goimports: confusing error message when file contains CRLF | ### Go version
go version go1.23.3 windows/amd64
### Output of `go env` in your module/workspace:
```shell
set GO111MODULE=
set GOARCH=amd64
set GOBIN=
set GOCACHE=C:\Users\runneradmin\AppData\Local\go-build
set GOENV=C:\Users\runneradmin\AppData\Roaming\go\env
set GOEXE=.exe
set GOEXPERIMENT=
s... | NeedsInvestigation,Tools | low | Critical |
2,651,155,333 | ollama | Embedded struct in `ToolFunction` | ### What is the issue?
https://github.com/ollama/ollama/blob/65973ceb6417c2e2796fa59bd3225bc7bd79b403/api/types.go#L165-L177
This makes creating tools really annoying.
```go
package main
import (
ollama "github.com/ollama/ollama/api"
)
var modFunctions = []ollama.Tool{{
Type: "function",
Function: ... | bug | low | Minor |
2,651,183,325 | deno | Mutual TLS authentication for servers/listen | #6170 was closed because connectTls can be given a cert now, but there is still no way for listenTls (or upgraded listen with startTls) to get the client cert of the connection for authentication purposes. | suggestion,tls | low | Minor |
2,651,203,734 | pytorch | DISABLED test_comprehensive_complex_cuda_float64 (__main__.TestInductorOpInfoCUDA) | Platforms: inductor
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_complex_cuda_float64&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32839476883).
Over the ... | triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor | low | Critical |
2,651,203,835 | pytorch | DISABLED test_sparse_gradients_grad_is_view (__main__.DistributedDataParallelTest) | Platforms: linux
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_sparse_gradients_grad_is_view&suite=DistributedDataParallelTest&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32835409615).
Over the pas... | oncall: distributed,module: flaky-tests,skipped | low | Critical |
2,651,245,526 | flutter | [flutter_svg] Incorrect behavior of BoxFit parameter | ### What package does this bug report belong to?
flutter_svg
### What target platforms are you seeing this bug on?
iOS
### Have you already upgraded your packages?
Yes
### Dependency versions
<details><summary>pubspec.lock</summary>
```lock
# Generated by pub
# See https://dart.dev/tools/pub/g... | package,team-ecosystem,has reproducible steps,P2,triaged-ecosystem,found in release: 3.24,found in release: 3.27,p: flutter_svg | low | Critical |
2,651,254,264 | vscode | deleted files don't go to trash |
Type: <b>Bug</b>
I delete files in the explorer using `del` key of keyboard, files are deleted and cannot be found in the trash bin
VS Code version: Code 1.95.2 (e8653663e8840adaf45af01eab5c627a5af81807, 2024-11-07T11:07:22.054Z)
OS version: Linux x64 6.8.0-48-generic snap
Modes:
<details>
<summary>System Info</sum... | bug,linux,snap | low | Critical |
2,651,266,206 | godot | Cannot Play any Games Made with Godot | ### Tested versions
Latest versions of games released, both games made in Godot and published on Steam and one published on Itch.io and not updated since 2022 (Friday Night Funkin Benjine), all with the same result.
### System information
Windows 11 23h2 Core i9-13900HX 32gb RAM Nvidia Laptop 4080
### Issue descrip... | bug,platform:windows,topic:rendering,needs testing | medium | Critical |
2,651,327,935 | godot | [4.4.dev4] Inherited scenes doesn't update. | ### Tested versions
v4.4.dev4.official [36e6207bb]
### System information
Godot v4.4.dev4 - Android - Single-window, 1 monitor - OpenGL ES 3 (Compatibility) - Adreno (TM) 610 - (8 threads)
### Issue description
Inherited scene doesn't update after making any changes inside Inherited scene.
https://github.com... | bug,topic:editor | low | Minor |
2,651,368,562 | deno | Failed resolving types. [ERR_TYPES_NOT_FOUND] | Version: Deno 2.0.6
I used a lodash-es package when building a jsr plugin, but this package is full of js files, and an error was reported when publishing
``` ts
// lodash.ts
export * from "lodash-es";
```
``` ts
// main.ts
import { isArray } from "./lodash.ts";
export function test() {
console.log(isA... | needs investigation,types | low | Critical |
2,651,368,709 | ant-design | wrong position resize hundler in textarea | ### Reproduction link
[](https://codesandbox.io/s/antd-reproduction-template-forked-nnq4mn?file=/index.tsx)
### Steps to reproduce
1. need to set style={{resize: 'both'}} to TextArea with showCount (TextArea with prop showCount addin... | ๐ Bug,help wanted,Inactive | low | Major |
2,651,388,286 | react | [Compiler Bug]: `eslint-plugin-react-compiler`: npm warn deprecated `@babel/plugin-proposal-private-methods` | ### What kind of issue is this?
- [ ] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)
- [ ] babel-plugin-react-compiler (build issue installing or using the Babel plugin)
- [X] eslint-plugin-react-compiler (build issue installing or using the eslint plugin)
- [ ] reac... | Type: Bug,Status: Unconfirmed,Component: Optimizing Compiler | low | Critical |
2,651,395,059 | excalidraw | Keep original ratio when updating width/height of multiple elements through properties panel | In my work I need to use too many images and need to grid them to make them read easylier and look beautiful. Now I chang them size by Shape Properties one by one, beacuse if I change them size by Properties at same time, images only change Hight or Width and borken their aspect ratio.
I want to type the width size, an... | enhancement,UX/UI | low | Minor |
2,651,427,994 | excalidraw | FR: Easy to grid selected images | ### Need for Image Organization
In my work, I often handle large volumes of images that need to be arranged in grids for clarity and visual appeal. An efficient way to organize images in a grid would save time and enhance readability.
### Solution Found in Miro
In Miro, an online whiteboard, I discovered a helpful fea... | enhancement | low | Minor |
2,651,476,994 | ollama | Role field should not be repeated in streamed response chunks | ### What is the issue?
The streamed chat-completion response from ollama's openai-compatible API repeats `"role": "assistant"` in all returned chunks. This is different to OpenAI's API which just has this in the first chunk. This breaks compatibility with the `client.beta.chat.completions.stream` helper from the opena... | bug,api | low | Minor |
2,651,524,537 | react | [Compiler Bug]: Cannot alter scroll values on a element - Mutating a value returned from 'useState' | ### What kind of issue is this?
- [X] React Compiler core (the JS output is incorrect, or your app works incorrectly after optimization)
- [ ] babel-plugin-react-compiler (build issue installing or using the Babel plugin)
- [ ] eslint-plugin-react-compiler (build issue installing or using the eslint plugin)
- [ ] reac... | Type: Bug,Status: Unconfirmed,Component: Optimizing Compiler | medium | Critical |
2,651,537,323 | material-ui | Support passing theme into `css()` (or its wrapper) from `'@emotion/react'` | ### Summary
According to the documentation ([one](https://mui.com/material-ui/migration/migrating-from-jss/#migrating-from-jss-to-emotion), [two](https://mui.com/material-ui/integrations/interoperability/#the-css-prop), [three](https://emotion.sh/docs/typescript#emotionreact)), passing the `theme` is currently only ... | new feature,package: system,customization: css | low | Minor |
2,651,571,524 | pytorch | Differentiable quadratic programing solver | ### ๐ The feature, motivation and pitch
Many libraries, such as `qpsolvers` provide solvers for solving quadratic programming using various methods from the literature.
A [quadratic programming problem](https://en.wikipedia.org/wiki/Quadratic_programming) consists of minimizing a quadratic form $\frac{1}{2}(x-a)^\... | module: autograd,triaged,needs research | low | Minor |
2,651,571,598 | electron | Electron 32/33 `Intl` API returns `Etc/Unknown` time zone | ### 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:,status/reviewed,32-x-y | low | Critical |
2,651,573,616 | next.js | Truly dynamic imports with Turbopack, i.e. support for Monaco editor | ### 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 Enterprise
Available memory (MB): 65225
Available CPU cores: 32
Binaries:
Node: 2... | Turbopack | low | Critical |
2,651,622,799 | pytorch | DISABLED test_comprehensive_nn_functional_glu_cuda_float16 (__main__.TestInductorOpInfoCUDA) | Platforms: inductor
This test was disabled because it is failing in CI. See [recent examples](https://hud.pytorch.org/flakytest?name=test_comprehensive_nn_functional_glu_cuda_float16&suite=TestInductorOpInfoCUDA&limit=100) and the most recent trunk [workflow logs](https://github.com/pytorch/pytorch/runs/32845155069).
... | triaged,module: flaky-tests,skipped,oncall: pt2,module: inductor | low | Critical |
2,651,684,301 | electron | Icon missing in OS Desktop Notification when packaged in Electron 32.2.1 | ### 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-comment,32-x-y | low | Critical |
2,651,700,209 | opencv | Potential API changes in OpenCV 5 | Let's note potential API changes in OpenCV 5 here | feature | low | Minor |
2,651,728,722 | go | x/tools/gopls: -remote causes the first run with Helix to not work for a few seconds | #### What did you do?
Running gopls with https://helix-editor.com/ and with `-remote=auto`, I open a Go file inside a Go module for the first time without gopls already running in remote mode, and ask gopls a question very quickly, such as go-to-definition or the workspace symbol picker.
#### What did you expect ... | gopls,Tools | low | Critical |
2,651,733,886 | rust | Add support for host tools on the `arm64e-apple-darwin` target | **Known Issues**:
- [ ] https://github.com/rust-lang/rust/issues/131884: Integrate `jemallocator` for the `arm64e-apple-darwin` target.
Blocked by https://github.com/tikv/jemallocator/issues/102
**Definition of Done**:
- [ ] The `arm64e-apple-darwin` target meets the requirements of the [Tier 1 Target Policy](h... | O-Arm,C-tracking-issue,O-apple | low | Minor |
2,651,775,616 | go | net/http: TestTransportDiscardsUnneededConns/h2 failures | ```
#!watchflakes
default <- pkg == "net/http" && test == "TestTransportDiscardsUnneededConns/h2"
```
Issue created automatically to collect these failures.
Example ([log](https://ci.chromium.org/b/8731850052493175777)):
=== RUN TestTransportDiscardsUnneededConns/h2
=== PAUSE TestTransportDiscardsUnneededC... | NeedsInvestigation | low | Critical |
2,651,798,023 | vscode | CLI development set up is not helpful | CLI development set up is not helpful - It is not clear what tools to install and build the project and how to debug the project.
https://github.com/microsoft/vscode/blob/main/cli/CONTRIBUTING.md | debt | low | Critical |
2,651,843,925 | yt-dlp | [Niconico] Comment count and real amount of comments downloaded do not match | ### DO NOT REMOVE OR SKIP THE ISSUE TEMPLATE
- [X] I understand that I will be **blocked** if I *intentionally* remove or skip any mandatory\* field
### Checklist
- [X] I'm asking a question and **not** reporting a bug or requesting a feature
- [X] I've looked through the [README](https://github.com/yt-dlp/yt... | site-bug,triage | low | Critical |
2,651,864,429 | tailwindcss | [v4] Usage of `@tailwindcss/postcss^4.0.0-alpha.25` with `svelte-preprocess` for svelte file with style tag: problematic dependency scanning | ## Version
`@tailwindcss/postcss^4.0.0-alpha.25` & `tailwindcss^4.0.0-alpha.25`, i.e all versions of v4 alpha from **25** to **33** (as of this writing).
## Environment
Output of `npx envinfo --system --binaries --browsers --npmPackages "{svelte,@sveltejs/*,vite,tailwindcss,@tailwindcss/postcss}"`:
```
S... | v4 | low | Critical |
2,651,887,009 | godot | AnimationPlayer Inspector never displays correct keyframe data for sub-property keyframe tracks (e.g. position:x, scale:y, modulate:a, etc.) | ### Tested versions
Reproducible in:
- **v4.4.dev5.official [9e6098432]**
- v4.4.dev5.mono.official [9e6098432]
- v4.4.dev4.mono.official [36e6207bb]
- v4.4.dev4.official [36e6207bb]
- **v4.4.dev3.official [f4af8201b]**
Not Reproducible in:
- v4.4.dev2.official [97ef3c837]
- v4.4.dev1.official [28a72fa43]
- v4.3.stab... | bug,topic:editor,topic:animation | low | Minor |
2,651,980,312 | vscode | Enter inserts // | 
```ts
const obsWorkspace = new FakedObservableWorkspace();
obsWorkspace.addDocument({
uri: createDocumentUri(URI.parse(`file://test.ts`).toString()), initialValue: '' });
const originalTextDoc = new StringValue(
);
... | bug,polish,editor-autoindent | low | Major |
2,651,981,069 | vscode | Highlight all found text in DEBUG console | <!-- โ ๏ธโ ๏ธ Do Not Delete This! feature_request_template โ ๏ธโ ๏ธ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
In the DEBUG console, when searching for text, the me... | feature-request,debug,debug-console | medium | Critical |
2,651,981,746 | flutter | [go_router] GoRouterState.error is only populated for errorBuilder when the route is not found | ### Steps to reproduce
The `GoRouterState` object has an `error` property which I would expect to hold a `GoException` when I open a non-existing route. Currently this exception is only available in `errorBuilder` and `errorPageBuilder`, but always `null` in `onException` and `redirect`.
My use case would be: I try... | package,has reproducible steps,P2,p: go_router,team-go_router,triaged-go_router,found in release: 3.24,found in release: 3.27 | low | Critical |
2,652,183,416 | pytorch | DistributedDataParallel with compile(..., mode="max-autotune") hangs in 2.5+ | ### ๐ Describe the bug
I have a DCNN-like network that I'm training with DDP and 2 GPUs. This always got a speedup from ```compile(net, mode="max-autotune")```. However, since PyTorch 2.5+ and still in current Nightly, the compile step hangs forever. In ```nvtop``` I can see memory usage go up, slight burst of GPU ... | high priority,oncall: distributed,triaged,module: cuda graphs,oncall: pt2,pt2d-triage-nov2024 | low | Critical |
2,652,184,590 | pytorch | Optional ```clamp_k``` Argument for Handling Out-of-Range Values in ```torch.topk``` | ### ๐ The feature, motivation and pitch
Currently, the ```torch.topk``` function raises an error when the specified ```k``` value exceeds the total number of elements in the input tensor.
### Proposed Solution
Introduce an optional argument, ```clamp_k```, which adjusts ```k``` to the minimum of the specified ... | triaged,enhancement,has workaround,module: sorting and selection | low | Critical |
2,652,210,577 | PowerToys | Multi Monitor Enhancement | ### Description of the new feature / enhancement
A product similar toโ https://github.com/mgth/LittleBigMouse โIt is suggested to add a tool that not only supports the movement trajectory of the mouse according to the actual physical size, but also can unify the size of the Win window when setting different DPI scalin... | Needs-Triage | low | Minor |
2,652,239,118 | svelte | <svelte:element> hydration is broken in with SvelteKit | ### Describe the bug
I'm not sure if this should be in Svelte or Kit repo, but since it appeared with Svelte 5, i'm posting it here.
`<svelte:element>` is not properly hydrated when using SSR with SvelteKit.
With the following code, the page should render a `button` once hydrated:
- it does with Svelte 4
- it ... | documentation | low | Critical |
2,652,326,722 | langchain | AzureMLChatOnlineEndpoint does NOT support HumanMessage with list of dict content | ### 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,652,335,784 | ui | [bug]: fetch() URL is invalid | ### Describe the bug
I am getting the below error when I am initializing shadcn or adding new component
Tried with bun (bunx) and pnpm too
```
โ Preflight checks.
โ Verifying framework. Found Next.js.
โ Validating Tailwind CSS.
โ Validating import alias.
Something went wrong. Please check the error below ... | bug | low | Critical |
2,652,363,306 | opencv | 4.10.0 - visionOS compile errors with VideoIO | ### System Information
OpenCV 4.10.0
GitHub Actions macOS latest
https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
### Detailed description
```
/Users/runner/work/apothecary/apothecary/apothecary/build/opencv/modules/videoio/src/cap_ios_abstract_camera.mm:40:31: error: 'AVCaptu... | category: build/install,platform: ios/osx | low | Critical |
2,652,446,982 | deno | deno task doesn't handle signals correctly (repro comparison with npm run attached) | Version: Deno 2.0.6
deno tasks doesn't handle signals properly (but npm scripts do). I created a simple repro for issue here:
https://github.com/mo/deno-tasks-signal-issue-repro
./docker-compose.sh and "npm run docker-compose" both exit immediately when CTRL-C is press twice.
However, "deno task docker-compos... | needs info,task runner | low | Minor |
2,652,448,715 | pytorch | `torch.export` ViT+flex attention: `Attempting to use FunctionalTensor on its own` | ### ๐ Describe the bug
Exporting a VIT with flexattention I got this error https://github.com/pytorch/pytorch/issues/137759#issuecomment-2470595683
As in that thread It seems that is a distinct issue I've opened this one.
### Versions
nightly
cc @ezyang @chauhang @penguinwu @zou3519 @ydwu4 @avikchaudhuri @gmago... | oncall: pt2,module: higher order operators,oncall: export,module: pt2-dispatcher,module: flex attention | medium | 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.