Tmk
Tmk
# Description Allow custom avatar url rule, backward compatible. ```diff "gitlens.remotes": [ { "domain": "gitlab.intranet.com", "type": "Custom", "name": "Company", "protocol": "https", "urls": { "repository": "https://gitlab.intranet.com/${repo}", "branches": "https://gitlab.intranet.com/${repo}/branches", "branch": "https://gitlab.intranet.com/${repo}/commits/${branch}", "commit":...
`pnpm up -r` will replace `workspace:*` with `workspace:x.x.x`, is it expected? ### pnpm version: 7.11.0 ### Code to reproduce the issue: ### Expected behavior: don't change ### Actual behavior: ###...
like `emitter.all.clear()` in [mitt](https://www.npmjs.com/package/mitt#user-content-usage)
it's 20% faster in a 10,000-invocation loop test > ❯ node ./node.test.mjs > ✔ dev (166.546375ms) > ✔ perf (133.484125ms) ```js import assert from 'node:assert' import test from 'node:test' import...
### 🔗 Linked issue #334 ### ❓ Type of change - [ ] 📖 Documentation (updates to the documentation, readme, or JSdoc annotations) - [x] 🐞 Bug fix (a non-breaking...
### Environment v16.18.1 ### Reproduction ```ts await $fetch("/404", { onRequestError(context) { context.options.retry // undefined }, }); ``` but there is a implicit retry ### Describe the bug see reproduction ###...
can we add a new `signal` option? it will be more flexible and can be used to abort the stream when a user cancels chat sessions. it meets the timeout...
Version: Deno 1.39.0 user code: ```ts Deno.serve(async (request) => { console.log("signal 1", request.signal.aborted); // expect false await new Promise((resolve) => setTimeout(resolve, 3000)); // abort during waiting console.log("signal 2", request.signal.aborted); //...
## 🎯 Changes this change keeps the same as `useQuery`, https://github.com/trpc/trpc/blob/a7c0ee0456e6dbcf8269c65047bdb0cc86dd4fbf/packages/react-query/src/shared/hooks/createHooksInternal.tsx#L134-L141 ## ✅ Checklist - [x] I have followed the steps listed in the [Contributing guide](https://github.com/trpc/trpc/blob/main/CONTRIBUTING.md). - [x] If necessary,...
## Types of changes - [ ] New feature - [x] Bug fix - [ ] Enhancement - [ ] Documentation change - [ ] Coding style change - [...