Releases: wasp-lang/wasp
Releases · wasp-lang/wasp
v0.11.0-rc3
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
What's Changed
- Use Wasp syntax highlighting in docs by @infomiho in #1221
- Updates broken imports for Auth components by @infomiho in #1274
- Removed JS extension from imports on client (in examples, docs, ...). by @Martinsos in #1276
- Upgrades Waspello to work with latest version by @infomiho in #1273
- Fixes Websocket Typescript issues by @infomiho in #1277
- Docs: add username & password guide by @vincanger in #993
- Fixes oAuth redirect behaviour in development by @infomiho in #1275
Full Changelog: v0.11.0-rc1...v0.11.0-rc2
v0.11.0-rc1
Headless tests playwright package-lock.json update.
v0.10.6-react18-canary
Same like v0.10.6, but with React upgraded from 17 to 18. For testing.
v0.10.6
Bug fixes
wasp deploy fly launch
now supports the latestflyctl 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
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
Bug fixes
- Adds missing import for HttpError which prevent auth from working properly.
v0.10.3
Bug fixes
- Fixed a bug with circular imports in JS code which prevented database seeding from working properly.
v0.10.3-rc1
Adds middleware customization (#1092)
v0.10.2
Bug fixes
- Fixed a bug where JS arrays weren't generated properly from Haskell code which caused issues with oAuth, operations and cache invalidation.