Skip to content

Commit

Permalink
Changelog. Redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
infomiho committed Sep 23, 2024
1 parent 8855848 commit 2df590f
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
21 changes: 21 additions & 0 deletions waspc/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.15.0

### 🎉 New Features

- Wasp now has experimental support for defining your app in pure Typescript or as we call it the Typescript SDK.
- Wasp upgrades to the latest Prisma verion
- Wasp upgrades to the latest React Router version

### ⚠️ Breaking Changes

There are some breaking changes with React Router 6 which will require you to update your code.

Read more about them in the migration guide: https://wasp-lang.dev/docs/migration-guides/migrate-from-0-14-to-0-15

### 🐞 Bug fixes

- Allow setting a custom server URL when deploying to Fly.io (by @Case-E)
- If the user uses native DB types for the `userEntity`, Wasp will now correctly use them

Community contributions by @Case-E @therumbler

## 0.14.2 (2024-09-09)

Updated GPT models used in Wasp AI to latest models, since 3.5 are getting deprecated.
Expand Down
2 changes: 1 addition & 1 deletion web/docs/migration-guides/migrate-from-0-11-to-0-12.md
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ You should see the new `Auth`, `AuthIdentity` and `Session` tables in your datab

Instead, you can now use `getUsername(user)` to get the username obtained from Username & Password auth method, or `getEmail(user)` to get the email obtained from Email auth method.

Read more about the helpers in the [Accessing User Data](auth/entities#accessing-the-auth-fields) section.
Read more about the helpers in the [Accessing User Data](../auth/entities#accessing-the-auth-fields) section.

1. Finally, **check that your app now fully works as it worked before**. If all the above steps were done correctly, everything should be working now.

Expand Down
14 changes: 14 additions & 0 deletions web/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ module.exports = {
},
}
},
// This plugin is always inactive in development and only active in
// production because it works on the build output.
[
'@docusaurus/plugin-client-redirects',
{
Expand Down Expand Up @@ -280,6 +282,18 @@ module.exports = {
from: '/docs/tutorials/todo-app',
to: '/docs/tutorial/create',
},
{
from: '/docs/migrate-from-0-11-to-0-12',
to: '/docs/migration-guides/migrate-from-0-11-to-0-12',
},
{
from: '/docs/migrate-from-0-12-to-0-13',
to: '/docs/migration-guides/migrate-from-0-12-to-0-13',
},
{
from: '/docs/migrate-from-0-13-to-0-14',
to: '/docs/migration-guides/migrate-from-0-13-to-0-14'
}
],
},
],
Expand Down

0 comments on commit 2df590f

Please sign in to comment.