Skip to content

Releases: wasp-lang/wasp

v0.14.0-rc1

03 Jul 12:53
8ead2e0
Compare
Choose a tag to compare
v0.14.0-rc1 Pre-release
Pre-release

Read the pre-release docs here: https://wasp-docs-on-main.pages.dev/

v0.13.2

11 Apr 16:45
Compare
Choose a tag to compare

0.13.2 (2024-04-11)

🐞 Bug fixes

  • Fixed problems with Wasp's type inference in projects created using Wasp 0.13.1.

v0.13.1

04 Apr 17:33
Compare
Choose a tag to compare

0.13.1 (2024-04-04)

🐞 Bug fixes

  • Vite HMR now works correctly with Wasp's new project structure (no more full-page reloads).
  • Keycloak UI helpers are now correctly exported.

🔧 Small improvements

  • Improved how IDE auto-imports symbols from the wasp package. If you have an existing project, add these lines to your tsconfig.json to getter better IDE support:

    {
      "compilerOptions" {
        "target": "esnext",
        "moduleResolution": "bundler",
        // ...
      }
      // ...
    }
    

v0.13.0

20 Mar 09:45
f255fb8
Compare
Choose a tag to compare

⚠️ Breaking changes

Wasp 0.13.0 switches away from using Passport for our OAuth providers in favor of Arctic from the Lucia ecosystem. This change simplifies the codebase and makes it easier to add new OAuth providers in the future.

This however, means that there are breaking changes in the way you define OAuth providers in your Wasp project.

Read the migration guide at https://wasp-lang.dev/docs/migrate-from-0-12-to-0-13 for more details.

🎉 New features

  • Wasp adds support for Keycloak as an OAuth provider.
  • Wasp now supports defining the WASP_SERVER_URL environment variable and exposes it as serverUrl in the server config which can be imported from wasp/server.

🐞 Bug fixes

  • Projects that import wasp/auth/types no longer fail when building the web app.
  • Wasp now displays OAuth related errors in the browser instead of redirecting to the login page.

🔧 Small improvements

  • Wasp uses Oslo for handling JWTs.

v0.13.0-rc2

18 Mar 15:50
329c324
Compare
Choose a tag to compare
v0.13.0-rc2 Pre-release
Pre-release
Updates tag for starters (#1903)

v0.13.0-rc1

18 Mar 14:04
72ebdb8
Compare
Choose a tag to compare
v0.13.0-rc1 Pre-release
Pre-release
Fixes tests for 0.13.0 RC (#1899)

v0.12.4

12 Mar 16:33
Compare
Choose a tag to compare

🐞 Bug fixes

  • Projects that import wasp/auth/types no longer fail when building the web app.

v0.12.3

01 Mar 22:19
Compare
Choose a tag to compare

0.12.3

🎉 New features

  • Wasp AI switched from GPT 3.5 Turbo 0613 to GPT 3.5 Turbo 0125, which gives it bigger context, ensuring generation doesn't fail for bigger apps, while also being cheaper.

v0.12.2

29 Feb 18:14
Compare
Choose a tag to compare

0.12.2

🐞 Bug fixes

  • We were adding Crypto polyfill even when not needed (when node > 18), which was then causing an error. Now polyfill is added only if needed.

v0.12.1

27 Feb 15:40
Compare
Choose a tag to compare

0.12.1

🐞 Bug fixes

  • Reverted Wasp AI to using GPT3.5-Turbo-0613 instead of new GPT3.5-Turbo-0125 since 0125 would often return code that is missing newlines.