Releases: wasp-lang/wasp
v0.12.0-rc3
Fixes e2e tests (#1761) * Fixes e2e tests Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com> * Adds new e2e tests * Update build tests --------- Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com> Co-authored-by: Filip Sodić <filip.sodic@fer.hr>
v0.12.0-rc2
Fix formatting for CI
v0.12.0-rc
Brings Wasp AI from the CLI, new Auth, and big changes in the project structure (restructuring).
Check out https://github.com/wasp-lang/wasp/tree/8e8f61073c42af5741ef9d404824ec1d7b7f3d96/waspc/examples/todo-typescript for an example of an app that works with it.
Docs, Wasp AI, starter templates, ... -> these all still need updating.
v0.12.0-rc1
0.12 with new auth and AI, no restructuring yet, also not well tested.
v0.11.8
🎉 [New Feature] Serving the Client From a Subdirectory
You can now serve the client from a subdirectory. This is useful if you want to serve the client from a subdirectory of your domain, e.g. https://example.com/my-app/
.
To do this, you need to add the client.baseDir
property to your .wasp
file:
app todoApp {
// ...
client: {
baseDir: "/my-app",
},
}
🐞 Bug fixes / 🔧 small improvements
- Changed the minimum number of machines that a server app is using when deployed to Fly.io from 0 to 1. This prevents the server app from shutting down when there are no requests to it. There might be some other work that the server is doing e.g. running periodic Jobs or sending e-mails, so we want to make sure that the server is always running.
- Fixes a bug where copying of migrations dir failed due to a missing
migrations
dir. - Fixes a regression where a missing DB on the DB server would prevent project from running. Now, Wasp will tolerate the missing DB error and rely on Prisma to create the DB for you (like before).
- Fixes an issue on Linux where running Prisma migration command fails when a project has a path that has spaces in it.
v0.11.4-wasp-ai-12
Fixes timeouts for Mage (#1555)
v0.11.7
🐞 Bug fixes / 🔧 small improvements
- Fixed a bug with Prisma which prevent connections via SSL with our versions of Alpine and OpenSSL. We upgraded to the latest Prisma 4.X.X which fixes this issue.
v0.11.6
🎉 [New Feature] Enable Customising the Vite Config
You can now customise the Vite config for your client app. This allows you to add plugins, change the dev server settings and more.
By adding a vite.config.ts
or vite.config.js
to your client
directory, you can customise the Vite config. For example, you change the dev server behaviour
not to open the browser automatically:
import { defineConfig } from 'vite'
export default defineConfig({
server: {
open: false,
},
})
WASP_WEB_CLIENT_URL
env var in your .env.server
file.
🚧 [Experimental Feature] Wasp Studio
Running wasp studio
in the root of your project starts Wasp Studio which visualises your application and shows you the relationships between pieces of your app. It is an experimental feature which is not yet fully ready, but we are working on it and will be adding more features to it in the future.
v0.11.6-rc
Merge branch 'release'
v0.11.5-studio-2
Fix studio build