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 |
|---|---|---|---|---|---|---|
262,992,932 | rust | Tracking issue for `#[doc(spotlight)]` | Initially implemented in https://github.com/rust-lang/rust/pull/45039, this attribute puts your own trait on every function doc if its return type implements it. | T-rustdoc,B-unstable,C-tracking-issue | medium | Major |
263,024,134 | vue | Export flow types in dist file | ### What problem does this feature solve?
If people want to use Vue flow types, they can import them from the Vue npm module.
### What does the proposed API look like?
We would include the flow directory in the npm dist files
(I'm happy to make a PR)
<!-- generated by vue-issues. DO NOT REMOVE --> | feature request | low | Minor |
263,241,254 | go | x/build/devapp: flag new contributors in CL list | I was speaking with someone today who mentioned that they read some of the CL's and issue responses and felt intimidated. Specifically they were worried that they would submit a CL and there would be a mistake with it and they'd get unfriendly feedback.
It's easy to see how this could happen. If I make a dumb mistak... | Builders,Proposal,Proposal-Accepted | medium | Critical |
263,289,306 | TypeScript | Detect duplicate nodes during printing | While rewriting code for refactorings and code fixes, it is quite easy to inadvertently insert a single `Node` into multiple positions in the tree (i.e. when it should have been cloned). It would be very helpful if the printer (or other, more appropriate, component) detected this, rather than behaving subtly incorrect... | Suggestion,Experience Enhancement | low | Minor |
263,315,267 | TypeScript | Add node flags for blank lines before and after a node | When inserting a node (e.g. during a code fix or refactoring), it would be very helpful if there were a way to say "ensure that there is a blank line following this node", rather than inserting one, since inserting one might result in a pair of blank lines. The determination of whether or not to actually insert a line... | Suggestion,In Discussion,API | low | Minor |
263,337,386 | electron | Menu.popup: implement positioningItem for all OS | It looks like [`positioningItem`](https://github.com/electron/electron/blob/master/docs/api/menu.md#menupopupbrowserwindow-options) for `Menu.popup()` is only supported on macOS. It would be great to have it on Linux and Windows as well. | enhancement :sparkles:,platform/windows,platform/linux | low | Minor |
263,387,634 | godot | [2.1.4] Collision offset of Area2D when parent is in movement | ### **Operating system or device, Godot version, GPU Model and driver (if graphics related):**
- OS: *Ubuntu 17.04*
- Godot: *2.1.4*
- GPU: unrelated, but *GTX 860m* using the proprietary drivers
### **Issue description:**
**The scenario**
- I have a ship and a player (both `KinematicBody2D`)
- The playe... | bug,topic:core,confirmed | low | Critical |
263,487,050 | rust | [Stable] ICE on Windows 7 when compiling dependencies | UPDATE 2:
I just talked over this issue on [internals](https://internals.rust-lang.org/t/familiarity-with-rustc-code/6015/2) and it strongly looks like this ICE is triggered because the code was effectively on a network drive. I moved the project to an internal disk, and now it compiles fine.
Still, I'd rather not cl... | O-windows,I-ICE,T-compiler,C-bug,O-windows-7 | low | Critical |
263,488,277 | rust | rust can't serialize 11 fields efficiently | Using noalias (#45012) lets rust generate much better code for the serialization of 10 fields in good_bake_bytes() however it falls back to terrible with the 11 fields of bad_bake_bytes()
```rust
use std::io::Write;
use std::{io, ptr};
struct UnsafeVecWriter<'a>(&'a mut Vec<u8>);
impl<'a> Write for UnsafeVec... | A-LLVM,I-slow,C-enhancement,T-compiler,WG-llvm,C-optimization | medium | Major |
263,500,311 | vscode | Customizable status bar item locations | Hello
It would be really nice if one could customize the location of the items in the status bar at the bottom of the editor. For instance, I would want to have git branch information on the right, text encoding and position on the left, etc.
Maybe allow people to sort things with something like
```javascript
... | feature-request,workbench-status,keep | high | Critical |
263,578,496 | go | image/jpeg: Unable to decode concatenated JPEGs (MIME-less "MJPEG") | #### What did you do?
Wrapping `ffmpeg -i <url> -c:v mjpeg -f image2pipe -` in a `exec.Cmd` and continuously decoding the command output in a loop with `jpeg.Decode` fails while doing the same thing with `ffmpeg -i <url> -c:v png -f image2pipe -` and `png.Decode` works.
The following example illustrates the error b... | NeedsInvestigation | low | Critical |
263,631,610 | vscode | Input box completion support | - VSCode Version: 1.17.0
- OS Version: Windows 10 x64
I'm not sure if I'm searching for the right terms, but there doesn't seem to be a way to get an extension to show an input box with completion entries, similar to the 'Show all commands' dropdown, or the 'Go to symbol in workspace' dropdown:
 2009 Microsoft Corporation. All rights reserved.
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['-v', '--no-check', '--ap-mso', 'NBC', '--ap-usernam
e', 'PRIVATE', '--ap-password', 'PRIVATE', 'http://www... | tv-provider-account-needed | low | Critical |
263,650,274 | vscode | Can we support CR line endings as well as LF and CRLF? | VSCode supports LF line endings, and CRLF line endings, but it doesn't support CR line endings.
Any chance of support for this? There _are_ some exotic platforms which still require them, such as e.g. pre OSX MacOS, and the amount of work involved ought to be trivial. This is ff=mac mode in vim.
I've tried manual... | feature-request,editor-textbuffer | high | Critical |
263,660,888 | flutter | UserAccountsDrawerHeader - Integrate account management | Would it be possible for the UserAccountsDrawerHeader to be integrated with [AccountManager](https://developer.android.com/reference/android/accounts/AccountManager) in Android and in settings bundle/within app in iOS (whichever is better)?
This would help standardize the sign in/ sign out flow, or atleast provide a... | c: new feature,framework,f: material design,package,P3,team-design,triaged-design | low | Minor |
263,662,022 | flutter | UserAccountsDrawerHeader - Implement/document user account switching | UserAccountsDrawerHeader does not seem to switch user accounts when another user account image is tapped on. May be the animations need to be triggered via some calls, may be the relevant calls are missing, may be everything required to do this is already there and I cannot see it.
In any case, the expected state is... | framework,f: material design,d: examples,P2,team-design,triaged-design | low | Minor |
263,672,194 | godot | Inconsistent execution order of _integrate_forces | **Operating system or device, Godot version, GPU Model and driver (if graphics related):**
v2.1.4 stable
**Issue description:**
The standard 2d physics step performs force integration before velocity integration. Rigid Bodies have a method binding called `_integrate_forces` that's designed to replace force integra... | bug,confirmed,topic:physics | low | Minor |
263,684,779 | neovim | startup: precedence of :syntax/:filetype autocmds | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: NVIM v0.2.1-915-g01e53a5
- Vim (version: ) behaves differently? no
- Operating system/version: WSL
- Terminal name/version: conhost/Windows 10
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
```fi... | defaults,ux | low | Major |
263,690,241 | youtube-dl | Site support request: DAZN.com | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | geo-restricted,account-needed | low | Critical |
263,704,800 | youtube-dl | Site support: www.i24news.tv | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | site-support-request | low | Critical |
263,719,668 | TypeScript | Customise extensions that import intellisense recognises | _From @Rich-Harris on October 6, 2017 15:7_
As of VSCode 1.17, typing `import x from './` offers autocomplete suggestions of local files and directories. However, the list of file extensions that are recognised is somewhat arbitrary — .js files are recognised, as are .ts and .jsx, but .json isn't (despite the fact tha... | Suggestion,In Discussion,Domain: Completion Lists,VS Code Tracked | low | Minor |
263,727,333 | go | encoding/json: Multiple issues with decoding of nulls into ",string" tagged fields. | I've been playing around with the `megacheck` tool, and found that `NullTestStrings` type in `encoding/json`'s tests is unused. It seems to be aimed at checking decoding of nulls into `",string"` fields, but there were no tests, which is the first issue. The second is that if you create one, it fails: https://play.gola... | NeedsInvestigation | low | Critical |
263,788,585 | flutter | We should exclude flutter_tools dependencies from flutter API docs | In particular, having the "file" package in there is very confusing. | tool,d: api docs,P2,team-tool,triaged-tool | low | Major |
263,877,573 | go | cmd/compile: consider adding sibling links to generated DWARF | The DWARF .debug_info section generated by the current Go compiler
does not make use of sibling links at the moment. As gc-generated
DWARF DIE's begin to get more substantial/complicated, this will make
it more time-consuming for debugger as it tries to locate the DIE for
a specific entity within the .debug_info se... | NeedsInvestigation,Debugging,compiler/runtime | low | Critical |
263,889,534 | opencv | IMREAD_LOAD_GDAL produces images with RGB band order |
**System information (version)**
- OpenCV => 3.3.0
- GDAL => 2.2.1
- Operating System / Platform => Linux 64 Bit (CentOS 7)
- Compiler => GCC 7.2
**Detailed description**
Hello, when reading color raster image using GDAL (IMREAD_LOAD_GDAL flag), the band order is RGB, which is reversed from opencv standar... | incomplete | low | Minor |
263,966,091 | rust | Grammar ambiguity with left shifts and fully qualified (UFCS) paths | Playground: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=35f2e9b9c6d48c33199bc878363a15df
```rust
trait Trait {
const CONST: u8;
}
impl Trait for *const u8 {
const CONST: u8 = 1;
}
fn main() {
0<<*const u8 as Trait>::CONST;
}
```
`0<<*const u8 as Trait>::CONST` h... | C-enhancement,A-grammar,A-parser,P-low,T-lang | low | Critical |
263,981,307 | TypeScript | [typescript] dom definitions not up to date | _From @yukulele on October 5, 2017 12:7_
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issues to prefill these. -->
- VSCode Version: 1.16.1
- OS Version: macOS Sierra 10.12.6
Steps to Reproduce:
* Create this code in typescript fi... | Bug,Help Wanted,Domain: lib.d.ts,VS Code Tracked,Effort: Casual | low | Major |
264,011,387 | go | proposal: spec: find a way to export uncased identifiers | https://github.com/golang/go/issues/5763#issue-51284151 observes “It is very strange to use, say Z成本 or Jぶつける as identifiers.” In that issue we discussed potentially changing the default export rule, but as of https://github.com/golang/go/issues/5763#issuecomment-333669811, which seemed to have general agreement, we de... | LanguageChange,Proposal,LanguageChangeReview | medium | Critical |
264,058,030 | youtube-dl | request support for http://embed.vidello.com/ | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | site-support-request | low | Critical |
264,073,495 | go | proposal: x/net/sctp: new package | # Background
This proposal will make easy to develop SCTP based applications such as HSS or MME in cellular networks.
I'd like to add this proposal to core library, because the one-to-one style SCTP interface on Linux is very similar to TCP interface. If we make an another package or add this to golang.org/x/net,... | Proposal | medium | Critical |
264,074,109 | go | cmd/link: loading c-shared into Go program crashes on Windows | ### What version of Go are you using (`go version`)?
go version devel +bb0bfd002a Tue Oct 10 01:02:27 2017 +0000 windows/amd64
### Does this issue reproduce with the latest release?
Only tip
### What operating system and processor architecture are you using (`go env`)?
```
set GOARCH=amd64
set GOBIN=
... | OS-Windows,NeedsInvestigation,compiler/runtime | high | Critical |
264,096,662 | rust | Cannot infer type in test from section 12.4 of rust book v2 | Hello everyone!
I'm learning Rust now using [this book](https://doc.rust-lang.org/book/second-edition/) and faced strange(as for me) error on section 12.4 when running tests.
[You can reproduce a bug with next snippet of code](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=908e4dd2100ae4b4... | C-enhancement,A-diagnostics,T-compiler,A-inference,D-newcomer-roadblock | low | Critical |
264,159,426 | TypeScript | Declaration merging: remove function overloads? | Let's say one of the libs come with a function like this:
```ts
// library:
declare module 'example' {
interface Animal { }
export function sayHello(a: Animal);
}
```
I want to narrow down the type to just `Dog`. This is my module augmentation:
```ts
// app.ts
declare module 'example' {
in... | Suggestion,Awaiting More Feedback | medium | Major |
264,177,295 | opencv | OpenCL native_sqrt precision | ##### System information (version)
- OpenCV => 3.3.0-dev
- Internal OpenCL 1.2 implementation.
##### Detailed description
In OpenCL the accuracy of builtin functions with the `native_` prefix is implementation defined.
The improc corner.cl file is using `native_sqrt` in two places, line [219](https://github.c... | category: imgproc,category: ocl | low | Minor |
264,214,099 | godot | GridMap Enhancement: Make use of Bresenham's line algorithm for drawing | In pixel art applications, it is common to use a line algorithm draw a line between the last two sampled input points. For example, if I move my mouse too fast for godot to handle on my PC, I get a handful of discrete tile placements. Using Bresenham's line algorithm, these would instead be solid lines of tiles.
Th... | enhancement,topic:editor,usability | low | Major |
264,252,182 | youtube-dl | Can't watch CBC The National newscast video | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | bug | low | Critical |
264,260,315 | rust | link-dead-code does not include symbols for unused inlined functions | Consider a file `x.rs`:
```rust
#[inline]
fn gggg() {}
fn main() {}
```
The symbol `gggg` is not included in the compiled binary (tested with `rustc -C link-dead-code x.rs && nm x | grep gggg`). If the inline attribute is removed, the symbol is included. | C-enhancement,A-codegen,T-compiler | low | Major |
264,313,234 | flutter | Stepper should change height with textScaleFactor | When a the textScaleFactor changes, the step names will scale, and so the height of the steps should change. | framework,f: material design,a: accessibility,a: fidelity,c: proposal,P2,team-design,triaged-design | low | Minor |
264,349,808 | vscode | [folding] allow defining folding regions in user settings and/or extensions | Would it be able to abstract out the language specifics and treat code folding similar to how `emmet` handles it...
i.e.
```
"emmet.includeLanguages": {
"php": "html",
"blade": "html",
"javascript": "javascriptreact"
},
```
So for code folding it could be...
```
"codeFoldi... | feature-request,editor-folding | medium | Critical |
264,365,282 | flutter | Document how to create bullet list and numbering list using RichText Widget with indent and outdent | Is there a way to add bullet list or numbering list in the RichText widget? How about indent and outdent?
Thanks. | framework,d: api docs,a: typography,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework | low | Major |
264,452,797 | go | net/http: go server behind nginx require read entire body before writing response | ### What version of Go are you using (`go version`)?
go version go1.9.1 windows/amd64
### Does this issue reproduce with the latest release?
YES
### What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=window... | help wanted,NeedsInvestigation | medium | Critical |
264,503,197 | go | crypto/elliptic: ECDSA parameters should be validated. | ### What version of Go are you using (`go version`)?
`go1.9.1 linux/amd64`
### What operating system and processor architecture are you using (`go env`)?
GOHOSTARCH="amd64" (intel)
GOHOSTOS="linux"
### What did you do?
Playground link:
https://play.golang.org/p/Ldd8fvrP5m
I've been playing around with Go'... | help wanted,NeedsFix | low | Minor |
264,574,059 | youtube-dl | Vevo playlist fail | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | geo-restricted | low | Critical |
264,637,370 | godot | SpotLights with shadows enabled cause artifacts to appear in the editor (`3.x` only) | **Operating system or device, Godot version, GPU Model and driver (if graphics related):** Windows 10, Godot Git https://github.com/godotengine/godot/commit/409e58e67abde4e7af6e43b32c23338e119377fb, NVIDIA
SpotLights with shadows enabled cause shading artifacts to appear in the editor, see the screenshots below. Twe... | bug,topic:rendering,confirmed,topic:3d | low | Critical |
264,659,633 | angular | Overriding 'panmove' Hammer event for multitouch does not work | ## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ ] Feature request
[ ] Documentation issue or reques... | type: bug/fix,freq1: low,area: core,core: event listeners,P3 | low | Critical |
264,672,423 | rust | [incremental] skip type-checking | This is a kind of meta-bug aimed at skipping type-checking, which is (to some extent) the "holy grail" of incremental compilation. This bug only contains a list of issues and a task breakdown. [For background on the general approach we have in mind, see this gist.](https://gist.github.com/nikomatsakis/6e9fae5319be49c70... | C-enhancement,I-compiletime,T-compiler,A-incr-comp | low | Critical |
264,688,956 | pytorch | BN slows down double-backprop enormously | When using a ConvNet without batchnorm layers, the optimization with a gradient penalty takes approximately 5 times longer than without the gradient penalty. This ratio 1:5 corresponds exactly to the ratio expected by the double-backpropagation algorithm. But when the ConvNet has batchnorm layers, this ratio goes up to... | module: performance,triaged | low | Major |
264,693,367 | rust | make easier/possible to detect `derive` attributes after expansion | In the spirit of #44942, it would be nice if the `missing_debug_implementations` and `missing_copy_implementations` lints suggested adding a derive attribute (in the case where one does not already exist) or adding `Debug` (respectively `Copy`) to the list of traits in the derive attribute (in the case where it already... | A-macros,T-compiler,C-feature-request | low | Critical |
264,756,827 | TypeScript | require.main.require imports do not work | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
<!-- Please try to reproduce the issue... | Suggestion,Awaiting More Feedback,VS Code Tracked,Domain: JavaScript | low | Critical |
264,765,998 | rust | Big performance problem with closed intervals looping | In my code I've essentially stopped using loops with ... (intervals closed on the right, recently written with the syntax ..=) because they give performance problems. This is a simple example that shows the problem:
```rust
#![feature(inclusive_range_syntax)]
#![allow(private_no_mangle_fns)]
#[inline(never)]
... | I-slow,C-enhancement,T-compiler,C-optimization | medium | Major |
264,812,360 | kubernetes | CRI: clarify optional fields in all structures | Towards https://github.com/kubernetes-incubator/cri-tools/issues/151 and https://github.com/kubernetes-incubator/cri-tools/pull/152, we need to clarify the optional fields for all structures in CRI.
| kind/cleanup,sig/node,lifecycle/frozen,triage/needs-information | low | Minor |
264,879,636 | go | runtime: crash on Plan 9 since CL 46033 | ```
#!watchflakes
post <- goos == "plan9" && log ~ `fatal error: unexpected signal` && (log ~ `&\s*os\.StartProcess` || log ~ `^\s*runtime\.newm1`)
```
Since the runtime.LockOSThread change in CL [46033](https://golang.org/cl/46033), Go programs are crashing on Plan 9 when running commands with os/exec.
```
f... | help wanted,OS-Plan9,NeedsInvestigation,compiler/runtime | medium | Critical |
264,932,364 | angular | [Proposal] medatdata / extras property for AbstractControl | ## I'm submitting a...
<pre><code>
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[x] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support... | feature,state: Needs Design,area: forms,feature: under consideration | high | Critical |
265,003,721 | opencv | about icvGetQuadrangleHypotheses function skip holes | in icvGetQuadrangleHypotheses function,
there are following code:
if (hierarchy.at(idx)[3] != -1)
continue; // skip holes
but does it right?, how about change it like the following?
if (hierarchy.at(idx)[2] != -1)
continue; // skip holes
I can not figure out whi... | category: calib3d,RFC | low | Minor |
265,050,528 | You-Dont-Know-JS | Up & Running Ch2 Transpiling - use of (void 0) and confusing paragraph | In the example foo() function it's not clear why (void 0) was used when it appears "undefined" could be used with the same effect (at least that's what I've seen). "void" was very briefly mentioned earlier in the book but wasn't fully explained.
Re the paragraph:
"You may not have realized just from looking at t... | for second edition | low | Minor |
265,056,655 | TypeScript | Support @ts-ignore for specific errors | **TypeScript Version:** 2.6.0-dev.20171011
**Code**
```ts
function countDown(n: number): void {
switch (n) {
// @ts-ignore
case 1:
console.log("1");
// intentional fall through
case 0:
console.log("0");
}
}
```
**Expected behavior:... | Suggestion,Revisit | high | Critical |
265,140,302 | youtube-dl | Fails to download truTV episode after MSO Auth appears to be successful | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | tv-provider-account-needed | low | Critical |
265,141,958 | TypeScript | JSDoc-typed node modules require special configuration in consumers to be useful | It looks like an ongoing goal for TS is to recommend JSDoc as the recommended way to give type-checking to raw JS users. As a user I am not a huge fan of this approach but I'll try to be objective in this issue.
If I write a node module `js-lib` as raw javascript typed with jsdoc, it will appear as untyped to consum... | Suggestion,Needs Proposal | medium | Critical |
265,143,974 | react | Use the native `beforeinput` event if it's supported | **Do you want to request a *feature* or report a *bug*?**
Improvement.
**What is the current behavior?**
Right now, the synthetic `onBeforeInput` event is being created based on two other events:
- `textInput` when possible—which is in Webkit.
- `keypress` as a fallback.
But these days in Chrome, Safari... | Type: Feature Request,Component: DOM | high | Critical |
265,245,440 | kubernetes | Rand utility should use per-component source instead of a global source | Offshoot from https://github.com/kubernetes/kubernetes/pull/53720#issuecomment-336232742
Using a single global source is bad, as multiple goroutines can be in lock contention for the RNG (though ideally they could've used different sources).
Also a single RNG source can bottleneck throughput in such cases.
It's al... | kind/bug,sig/api-machinery,lifecycle/frozen | low | Critical |
265,261,496 | nvm | Gemset Like Feature in NVM | #### What's the feature?
- Project based global packages.
#### What problem is the feature intended to solve?
- Lets say I have an `angular 2` project which was created and managed with `Angular CLI 1.0.0` and for some reason` That Angular CLI project` has been `updated to 2.0.0`. This updated packages do ever... | feature requests | medium | Major |
265,270,488 | TypeScript | Proposal: delegateof | # delegateof Proposal
**delegate (noun)**
A person sent or authorized to represent others, in particular an elected representative sent to a conference.
___
## Motivation
A popular and widely applied practice for creating flexible and reusable object oriented code is **delegation**.
**Delegation** invo... | Suggestion,In Discussion | low | Critical |
265,319,083 | rust | Improve rustdoc's Trait Implementations section by grouping by module | Right now, rustdoc's output for `std::option::Option` looks like this (as seen on https://doc.rust-lang.org/std/option/enum.Option.html):

This is pretty hard for me to read. I think this has been suggest... | T-rustdoc,C-enhancement | low | Minor |
265,350,811 | flutter | Updating an App on timezone or timezone definition changes | Currently Flutter apps are rebuilt when the device's locale setting is changed.
It's not clear how well we respond when the device's time zone changes or when time zone definitions change (which can actually happen).
| framework,engine,f: date/time picker,a: internationalization,has reproducible steps,P2,team-engine,triaged-engine,found in release: 3.19,found in release: 3.20 | low | Critical |
265,374,119 | angular | Feature Request: debounce in ngModelOptions | [ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting -->
[ x] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead see https://g... | feature,effort2: days,state: Needs Design,freq2: medium,area: forms,forms: ngModel,feature: under consideration | medium | Critical |
265,383,292 | vscode | Terminal should support workbench.fontAliasing | https://github.com/Microsoft/vscode/issues/2577
https://twitter.com/_developit/status/918488307968937984
| help wanted,feature-request,upstream,upstream-issue-linked,terminal-rendering | medium | Major |
265,383,499 | go | x/build: number of test failures | In lieu of an automated builder, I run the x/build tests in Travis CI. @andybons has fixed two problems with cmd/cl and with cloud.google.com depedencies, but this has revealed a number of underlying test failures:
```
--- FAIL: TestConnAgainstNetTest (2.03s)
revdial_test.go:236: warning: the revdial's SetWriteDe... | help wanted,Builders | low | Critical |
265,464,938 | rust | Lifetime errors for referenced objects when reference is moved are not clear | I believe there is room for improvement here:
```rust
use std::path::{Path,PathBuf};
use std::thread;
fn main() -> () {
let pb = PathBuf::from(".");
let p = Path::new(&pb);
thread::spawn(move|| {
println!("{:?}", p);
});
}
```
This is obviously not correct, since `p` depends on... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler | low | Critical |
265,486,019 | rust | Refactor librustc_codegen_llvm for multiple codegen backends. | ~~[#50615] Rename `librustc_trans` to `librustc_codegen_llvm`.~~
~~Make `rustc_driver` either able to choose codegen backends, or even better, pass `rustc_codegen_llvm` to `rustc_driver` from `rustc-main`.
See also #45226.~~
Possible refactoring steps:
* ~~remove `SharedCrateContext`, use `TyCtxt`~~
* ~~rename `... | A-codegen,T-compiler,C-feature-request,A-cranelift,A-gcc | low | Minor |
265,495,929 | vscode | [html] JSON edit support inside HTML document / script tag with type="application/json" | There are scenarios where it is useful to embed JSON inside an html document, such as for the [amp-bind element](https://www.ampproject.org/docs/reference/components/amp-bind):
```html
<amp-state id="myAnimals">
<script type="application/json">
{
"dog": {
"imageUrl": "/img/dog.jpg",
... | feature-request,html | medium | Critical |
265,504,890 | TypeScript | Suggestion: target specific runtimes instead of JS versions | First advantage is target to browser is native for user than target to js version. Don't need to know what each browser support.
Second is ts can transpilate more effective. Some browser can have partially support of next standard. Ts can transpilate unsupported features only.
| Suggestion,Awaiting More Feedback | high | Critical |
265,507,064 | go | cmd/link: making sense of HeadType | The linker makes extensive use of HeadType. It does not make much sense to me.
When used as a value, it is very close to meaning `GOOS`. One exception is both "android" and "linux" are represented as "Hlinux", but besides that they are equivalent.
When used as a flag to the linker, `-H`, it is the value of `GOOS`... | NeedsFix,compiler/runtime | low | Minor |
265,508,116 | angular | Enter animation doesn't work with tracked ngFor | <!--
PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION.
ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION.
-->
## I'm submitting a...
<!-- Check one of the following options with "x" -->
<pre><code>
[ ] Regression (a behavior that used to work and stopp... | type: bug/fix,area: animations,freq2: medium,P3 | low | Critical |
265,510,839 | go | crypto/tls: implement OCSP Must-Staple | A bit over a year ago, someone created an issue to add support for RFC 7633 TLS Feature Extension into `crypto/tls` but it was closed by @agl because he felt it was premature and that OCSP stapling wasn't really supported as a client in Go (not sure if that has changed?).
See #13074
It's been more than a year so ... | help wanted,Proposal-Accepted,NeedsFix,Proposal-Crypto | low | Major |
265,526,090 | rust | Better Integrate MIR dump in `rustc_mir::util::liveness` into the wider dump infrastructure | Opening this so it doesn't get lost.
In the WG-compiler-nll gitter, @nikomatsakis mentioned that we should possibly update [liveness.rs](https://github.com/rust-lang/rust/blob/ec016f80cf725a9c8a613cdcd2ac97588d5f9af2/src/librustc_mir/util/liveness.rs#L180) so that it uses the infrastructure from #45013. | C-enhancement,T-compiler,A-MIR | low | Minor |
265,536,132 | flutter | Unstructured JSON API | A while ago while noodling around I wrote the following class. I'm posting it here for us to consider if we want to expose this or something like it in the framework.
```dart
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// f... | c: new feature,framework,dependency: dart,P3,team-framework,triaged-framework | low | Minor |
265,595,336 | TypeScript | Promise.{all,race} static method's iterable definitions incorrectly omit other definitions by overloading (regression) | `es2015.iterable.d.ts` must not omit `es2015.promise.d.ts` definitions by overloading. However, npm package distributions work correctly.
**TypeScript Version:** 2.6.0 RC for Visual Studio 2015
**Code**
```ts
Promise.all([0, 0]);
```
**Expected behavior:**
Should use definitions of `es2015.promise.d.t... | Bug,Domain: lib.d.ts | low | Major |
265,638,947 | TypeScript | typeChecker.typeToString() should print most derived alias | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
<!-- Please try to reproduce the issue... | Bug | low | Critical |
265,675,823 | youtube-dl | Opera Platform is now OperaVision | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | site-support-request | low | Critical |
265,755,676 | angular | component host element removal is delayed when animation module is added to project | ## I'm submitting a...
<pre><code>
[ ] Regression
[X] Bug report
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request
</code></pre>
With imported BrowserAnimationsModule I have observed that host nodes of destroyed component instances from an old route are removed from the DOM **AFTER*... | type: bug/fix,area: animations,freq2: medium,P3 | low | Critical |
265,872,334 | go | runtime: TestLldbPython test fails with lldb 3.8 on linux | Verified the test passed with lldb 3.9 or higher, or if lldb is not installed at all.
--- FAIL: TestLldbPython (1.83s)
runtime-lldb_test.go:178: Unexpected lldb output:
Created target
Created breakpoint
Process launched
Hit breakpoint
Stopped at main.go:10
Stopped in main.main
no intvar
FAIL
... | Testing,help wanted,NeedsFix,compiler/runtime | low | Minor |
265,918,474 | TypeScript | 'Canvas#getContext' almost never returns 'null' | **TypeScript Version:** 2.5.3
**Code:**
```ts
let canvas: HTMLCanvasElement = document.createElement("canvas");
let ctx: CanvasRenderingContext2D = canvas.getContext("2d");
ctx.fillRect(0, 0, canvas.width, canvas.height);
```
**Expected behavior:**
No errors should occur because the type of canvas is HTMLC... | Suggestion,Domain: lib.d.ts,Awaiting More Feedback | medium | Critical |
265,925,274 | flutter | Allow the Dart VM to post idle task callbacks. | A mechanism for the engine to notify the Dart VM that an idle time slice was available for bookkeeping tasks was added in https://github.com/flutter/engine/pull/4012. Based on feedback from @rmacnak-google, this results in a lot of calls into the VM where there isn't much work to be done. Instead, it was suggested that... | c: new feature,engine,c: performance,dependency: dart,P2,team-engine,triaged-engine | low | Minor |
265,942,028 | flutter | Make Material Icons font a package | Currently there are special logic that pulls the font file from https://storage.googleapis.com/flutter_infra/flutter/fonts as a tool artifact cache, and a special yaml entry lets the tool add it to the flx.
Use the generic logic used in Cupertino to host a new package on pub that user apps can add dependencies on t... | framework,f: material design,c: proposal,P2,team-design,triaged-design | low | Major |
265,954,318 | flutter | PageController needs documentation about how the pages are laid out when viewportFraction is not 1.0 | It appears that the page is centered in the available space rather than top or bottom aligned (in the case of vertical paging) | framework,f: scrolling,d: api docs,P2,team-framework,triaged-framework | low | Minor |
265,975,124 | vue | vue SSR webpack plugin support template syntax for filename option | ### What problem does this feature solve?
multiple entry and output point, because webpack plugin option of filename don't support template syntac like [name]、[id], so It's not convenient on this situation.
### What does the proposed API look like?
new VueSSRServerPlugin({
filename: '[name]/vue-ssr-serve... | feature request | medium | Minor |
266,028,983 | puppeteer | Change dpi of PDFs | It seems that we can't change dpi of generated PDFs, will it be a feature ?
For some case, it would be useful. | feature,chromium | low | Major |
266,097,776 | youtube-dl | Support connection reuse / keep-alive | ### What is the purpose of your *issue*?
- [ ] Bug report (encountered problems with youtube-dl)
- [ ] Site support request (request for adding support for a new site)
- [x] Feature request (request for a new functionality)
- [ ] Question
- [ ] Other
----
Many videos from YouTube contain a lot of small video... | request | medium | Critical |
266,156,611 | puppeteer | [Feature] Call `page.goto()` as a POST request and/or with custom headers | Actually the only way to request a page through a POST or/and with custom headers is by trapping the request with `page.setRequestInterceptionEnabled(true)` (as proposed [here](https://github.com/GoogleChrome/puppeteer/issues/669#issuecomment-326797345)) or by building a custom html page with a `<form>` tag and submitt... | feature,upstream,chromium | high | Critical |
266,213,280 | every-programmer-should-know | What do you think about adding theoretical computer science in this list ? | Needs some ❤️ | low | Minor | |
266,228,215 | pytorch | Sparse tensor .new(size) can be confusing | Say `x` is a sparse tensor. When calling `y = x.new(x.size())`, it automatically creates a new sparse tensor with `y.dimensionI = x.dimensionI + x.dimensionV` and `y.dimensionV = 0`, regardless of `x.dimensionV`. This causes extremely confusing behaviors like the following, where `x.new(x.size()) + x` errors but `x.new... | module: sparse,triaged | low | Critical |
266,251,322 | TypeScript | "Debugging Language Service in VS Code" documentation is weird | The "Debugging Language Service in VS Code" wiki is vague and sometimes confusing.
>Update your user settings to use your development version of typescript, located in the .../TypeScript/built/local directory. The corresponding setting/path is
>```
>{
> "typescript.tsdk": "/path/to/repo/TypeScript/built/local"
... | Docs | low | Critical |
266,253,930 | TypeScript | Provide a way to apply quick fixes/refactorings/code actions in a bulk automated fashion | Currently, we have several quick fixes and refactorings. Some of these are generally to help reorganize your codebase/fix issues, some are more to migrate from JS to TS more easily, and some are to more-easily opt in to a more strongly-typed version of TypeScript.
The problem here is that these quick fixes/refactori... | Suggestion,Needs Proposal,Domain: Refactorings,Domain: Quick Fixes | low | Major |
266,271,137 | go | cmd/compile: odd inlining heuristic under mid-stack inlining | Suppose:
func F() { ...; G(); ... }
func G() { ... }
When midstack inlining (#19348) is enabled (-l=4), F is inlinable under two conditions:
1. G is inlineable, and F's total cost including the cost of inlining G falls under the max budget.
2. G is not inlineable, and F's total cost (excluding the co... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
266,299,066 | TypeScript | Support yarn in `Install @types/<package>` code fix | https://github.com/Microsoft/TypeScript/pull/19130 added a code fix to install packages from `@types`. This will always use `npm` to install the package. This works for updating `package.json` and `package-lock.json`, but not `yarn.lock` | Suggestion,Awaiting More Feedback,Domain: Quick Fixes | low | Major |
266,329,972 | youtube-dl | Filename truncation should apply on actual filename instead of title (was: FFMPEG chokes on default filename) | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like this: `[x]`)
- Use the *Preview* tab to see what your issue will actually look like
... | bug | low | Critical |
266,340,213 | go | os: StartProcess ETXTBSY race on Unix systems | Modern Unix systems appear to have a fundamental design flaw in the interaction between multithreaded programs, fork+exec, and the prohibition on executing a program if that program is open for writing.
Below is a simple multithreaded C program. It creates 20 threads all doing the same thing: write an exit 0 shell scr... | NeedsInvestigation | high | Critical |
266,516,973 | vscode | [theming] editor.selectionForeground is not working | - VSCode Version: Code 1.17.2 (b813d12980308015bcd2b3a2f6efa5c810c33ba5, 2017-10-16T13:57:00.652Z)
- OS Version: Linux x64 4.8.0-59-generic
---
Steps to Reproduce:
1. Add customization for `workbench.colorCustomizations.editor.selectionForeground`
2. Save settings
Expected result: a text selection should ... | feature-request,debt,themes,editor-theming | high | Critical |
266,580,026 | TypeScript | Create Annex B lib target |

[Annex B](https://www.ecma-international.org/ecma-262/6.0/#sec-additional-ecmascript-features-for-web-browsers) is the 🚽 of JavaScript with such features like a broken `escape` method and the `blink` meth... | Suggestion,Help Wanted,Committed,Effort: Moderate | 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.