Skip to content

Releases: wasp-lang/wasp

v0.11.0-rc3

23 Jun 12:52
Compare
Choose a tag to compare
v0.11.0-rc3 Pre-release
Pre-release

What's Changed

  • Adds extra type info to middleware customization fn by @infomiho in #1279
  • Adjust how dictionary types are displayed by @craigmc08 in #1280
  • [waspls] diagnostics for external imports and goto definition by @craigmc08 in #1268

Full Changelog: v0.11.0-rc2...v0.11.0-rc3

v0.11.0-rc2

22 Jun 09:05
Compare
Choose a tag to compare
v0.11.0-rc2 Pre-release
Pre-release

What's Changed

Full Changelog: v0.11.0-rc1...v0.11.0-rc2

v0.11.0-rc1

21 Jun 10:06
Compare
Choose a tag to compare
v0.11.0-rc1 Pre-release
Pre-release
Headless tests playwright package-lock.json update.

v0.10.6-react18-canary

09 Jun 14:55
Compare
Choose a tag to compare
Pre-release

Same like v0.10.6, but with React upgraded from 17 to 18. For testing.

v0.10.6

24 May 16:35
Compare
Choose a tag to compare

Bug fixes

  • wasp deploy fly launch now supports the latest flyctl launch toml file for the web client (which changed their default structure and port).

More wasp deploy fly options

wasp deploy fly now supports a --org option, as well as setting secrets during launch.

v0.10.5

12 May 10:35
53ee929
Compare
Choose a tag to compare

Bug fixes

  • Wasp CLI will now forward error exit codes. This will help when used in scripted contexts.
  • Wasp now renders only the first route that matches the current path in the browser.

Express middleware customization

We now offer the ability to customize Express middleware:

  • globally (impacting all actions, queries, and apis by default)
  • on a per-api basis
  • on a per-path basis (groups of apis)

Interactive new project creation

We now offer an interactive way to create a new project. You can run wasp new and follow the prompts to create a new project. This is the recommended way to create a new project. It will ask you for the project name and to choose one of the starter templates.

v0.10.4

30 Apr 20:40
683c4fd
Compare
Choose a tag to compare

Bug fixes

  • Adds missing import for HttpError which prevent auth from working properly.

v0.10.3

27 Apr 11:07
2cb0386
Compare
Choose a tag to compare

Bug fixes

  • Fixed a bug with circular imports in JS code which prevented database seeding from working properly.

v0.10.3-rc1

24 Apr 16:48
013a13d
Compare
Choose a tag to compare
v0.10.3-rc1 Pre-release
Pre-release
Adds middleware customization (#1092)

v0.10.2

18 Apr 23:29
eb81959
Compare
Choose a tag to compare

Bug fixes

  • Fixed a bug where JS arrays weren't generated properly from Haskell code which caused issues with oAuth, operations and cache invalidation.