Igor Šćekić
Igor Šćekić
Hi, do you have a roadmap to 1.0? It would be nice to get the benefits of semver-minor and semver-patch updates. :smile:
```tsx const abortController = new AbortController(); // the dom one, not the npm one client.request({ // ... signal: abortController.signal, }); ``` ``` Type 'AbortSignal' is not assignable to type 'AbortSignal'....
Broken: ```tsx import ky from "ky-universal"; const result = await ky .post(process.env.BE_ENDPOINT!, { json: jsonBody, }) .json(); // we never reach here, await never resolves ``` Works: ```tsx import ky...
Using the latest docker image, the `git clone` command occasionally fails with the following error: ``` git-remote-keybase error: (1) API network error: Get "https://api-0.core.keybaseapi.com/_/api/1.0/merkle/path.json?c=1&leaf_id=redacted&no_root_sigs=1&poll=10&start_seqno=redacted&tail=redacted": EOF (error 1601) ```
### Describe the bug The latest version introduces an issue where, if an infinite query has no arguments, the `react-query` plugin generates invalid types. ### Your Example Website or App...
**Is your feature request related to a problem? Please describe.** I am using keys programmatically, and the type they resolve to isn't ergonomic. Eg. ``` (string | Exact)[] ``` **Describe...
### What version of `million` are you using? "@million/lint": "1.0.0-rc.7" ### Are you using an SSR adapter? If so, which one? next 14.2.3 pages ### What package manager are you...