Mihovil Ilakovac
Mihovil Ilakovac
Looking at the stack trace in this [Discord thread](https://discord.com/channels/686873244791210014/1280117478285905921/1280117478285905921) it's obvious we are not outputting the full error which is crucial for successful debugging. Also, we could maybe recognise common...
We are using Vitest v1 and we should upgrade to Vitest v2: https://github.com/vitest-dev/vitest/releases/tag/v2.0.0 The related deps are: - `@vitest/ui` - `jsdom` - `@testing-library/react` - `@testing-library/jest-dom` - `msw`
In #2297 we added validation for userland config files e.g. `package.json` and `tsconfig.json`. We validated only package versions that were seen causing issues i.e. Prisma and React Router. There is...
In one of our example apps, `pg_boss` filled up 1 GB of DB data without much usage. The demo app was hosted on Supabase and we exceeded their free plan...
Based on this comment: https://github.com/wasp-lang/wasp/pull/2297#discussion_r1778907510 We often return some `String` errors and to give more context we create a type alias e.g. `type ErrorMsg = String` or `type CompileError =...
We are currently at version 8, and the latest is version 10. Verison 9 had only breaking changes in terms of Node.js and PostgreSQL versions, but version 10 has some...
Some users asked how they can [debug the server's Node.js app](https://ptb.discord.com/channels/686873244791210014/1234392607849971824/1234396775385796660). Ideally, we would enable the users to use the `--inspect` with a Wasp flag: https://nodejs.org/en/learn/getting-started/debugging#enable-inspector so they can connect...
It's now at `0.13.2` and we should update it to the latest.
After a user logs out in Wasp, for some OAuth providers, it's necessary to terminate the 3rd party session as well. We could do this as a generic "log out...
We are looking to upgrade our Haskell toolchain to the latest LTS/stable version. That would mean 9.X.X for GHC and we need to investigate which makes most sense for Wasp....