Alistair Smith
Alistair Smith
Fixes #14612 This was a feature I dearly missed from VSCode, so adding this helped me migrate to Zed without disrupting my workflow. I found that `4.0` was a nice...
Could be nice if we can pass an option to the rest client to support Bearer tokens. Would make sense to default to `Bot`. https://github.com/Didas-git/lilybird/blob/33ef0de34ca9d5e10a4ede4b66ed9ce56d0e7234/packages/core/src/http/rest.ts#L68
### What does this PR do? Fixes #19924 Fixes #13218  - [ ] Documentation or TypeScript types (it's okay to leave the rest blank...
Fixes #232 This is entirely untested and was the result of @openai/codex
6.18 just released which introduces prisma.config.ts - we should make sure it works with prisma-kysely, and then also the migration path towards Prisma 7
### What does this PR do? Fixes #23607 ### How did you verify your code works? Added a test for >=1mb JSON data
more accurately, developers cannot pass a value when expect values resolve to never. this is easy to fall into when using the `toContainKey*` matchers. falling back to PropertyKey when this...
@alii here's an example from [TS Playground](https://tsplay.dev/WYMPgW). The argument of `toContainKey` is inferred as `never` because the `.not` currently returns `Matchers`, therefore it doesn't accept anything. _Originally posted by @MonsterDeveloper...