Skip to content

Releases: wasp-lang/wasp

v0.12.0-rc2

09 Feb 17:40
Compare
Choose a tag to compare
v0.12.0-rc2 Pre-release
Pre-release
Fix formatting for CI

v0.12.0-rc

29 Jan 17:23
Compare
Choose a tag to compare
v0.12.0-rc Pre-release
Pre-release

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

19 Jan 12:38
344350c
Compare
Choose a tag to compare
v0.12.0-rc1 Pre-release
Pre-release

0.12 with new auth and AI, no restructuring yet, also not well tested.

v0.11.8

14 Nov 13:42
3a5bba9
Compare
Choose a tag to compare

🎉 [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

02 Nov 12:48
0f6ca6d
Compare
Choose a tag to compare
v0.11.4-wasp-ai-12 Pre-release
Pre-release
Fixes timeouts for Mage (#1555)

v0.11.7

27 Oct 12:39
Compare
Choose a tag to compare

🐞 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

16 Oct 14:53
5e45dad
Compare
Choose a tag to compare

🎉 [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,
  },
})

⚠️ Be careful when changing the dev server port, you'll need to update the 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

10 Oct 13:23
Compare
Choose a tag to compare
v0.11.6-rc Pre-release
Pre-release
Merge branch 'release'

v0.11.5-studio-2

18 Sep 01:32
Compare
Choose a tag to compare
v0.11.5-studio-2 Pre-release
Pre-release
Fix studio build

v0.11.5-studio-1

18 Sep 00:47
Compare
Choose a tag to compare
v0.11.5-studio-1 Pre-release
Pre-release

Wasp Studio version