Results 153 issues of Trim21

Current there is no way to disable this message `silent: true` can't disable this message and also I'd like to keep the output of what command are actually executing. Just...

feature

## Describe the feature 支持导出query的filed 对应的类型。 ## Motivation 我目前是用gen来生成所有的SQL数据库表,然后把query绑定到不同的repository struct上面使用的。 虽然看到了之前的issue,可以在方法或者函数里面直接把query field赋值给变量,但在我的使用场景中,一个struct只会用到一两个table,不会用到query上面的全部SQL表。所以比较合适的办法是直接把query上面的某几个dao挂到我的不同struct上,而非把整个query挂到结构体上,然后再每次从query上面赋值出来。 同时因为这些类型没有导出,我也没法直接把query.Field 赋值给结构体的某个字段再使用。 希望能增加一个mode直接导出没有绑定context的表类型。 ## Related Issues

I'm not quite sure that is my mistake or its a bug of `peewee_migrate`. ![image](https://user-images.githubusercontent.com/13553903/57952058-9c505180-791e-11e9-9be1-e55a66214839.png) left is my first migration, and i didn't change `followed` table, but edited another table....

**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** Currently, I'm play a episode from a season or a playlist. And in WEB,...

enhancement

Type: Bug Report ## Your Environment - Version used: - 4.6.0 - dafe0365 - Environment name and version: - Node.js version: `v14.17.0` - npm version: `6.14.13` - Web browser: irrelevant...

I want to use `aiomysql`'s `pool_recycle` feature, so I create my db pool like this ```python db = peewee_async.PooledMySQLDatabase( config.MYSQL_DB, host=config.MYSQL_HOST, user=config.MYSQL_USER, password=config.MYSQL_PASSWORD, charset='utf8mb4', pool_recycle=3600 ) ``` It works fine...

A example: ```python from typing import TypeVar, Type T = TypeVar('T') class Manager: async def get(self, source_: Type[T], *args, **kwargs) -> T: pass ```

```js const braces = require('braces'); console.log(braces(['{js, ts, json}'], { expand: true })); ``` expected: `[ 'js', 'ts', 'json' ]`

request

## Requested feature This issue proposal generating a typed `.Return(` for `*gomock.Call`. it's a re-open for closed issue #427 . ## Why the feature is needed currently `.Return(` has a...

status: needs more info
type: feature request

I'm using pyment on windows with python3 All my python files are utf-8 encoded, and when I try to use it on my codes with CJK, I got `UnicodeDecodeError: 'gbk'...