diff --git a/web/docs/auth/auth-hooks.md b/web/docs/auth/auth-hooks.md index b66450b38e..ca5428f1dd 100644 --- a/web/docs/auth/auth-hooks.md +++ b/web/docs/auth/auth-hooks.md @@ -55,7 +55,7 @@ To use auth hooks, you must first declare them in the Wasp file: ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, @@ -77,7 +77,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, @@ -583,7 +583,7 @@ If you want to refresh the token periodically, use a [Wasp Job](../advanced/jobs ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, @@ -605,7 +605,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, diff --git a/web/docs/auth/email.md b/web/docs/auth/email.md index d6d0480f95..5ec3d0ede9 100644 --- a/web/docs/auth/email.md +++ b/web/docs/auth/email.md @@ -50,7 +50,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -85,7 +85,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/entities/entities.md b/web/docs/auth/entities/entities.md index f24dd9247d..219e11059a 100644 --- a/web/docs/auth/entities/entities.md +++ b/web/docs/auth/entities/entities.md @@ -470,7 +470,7 @@ For example, you might set it to `User`: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/discord.md b/web/docs/auth/social-auth/discord.md index ac2ba7edc8..eccb463a88 100644 --- a/web/docs/auth/social-auth/discord.md +++ b/web/docs/auth/social-auth/discord.md @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -67,7 +67,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -276,7 +276,7 @@ Add `discord: {}` to the `auth.methods` dictionary to use it with default settin ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -296,7 +296,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -361,7 +361,7 @@ For an up to date info about the data received from Discord, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -408,7 +408,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -476,7 +476,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -500,7 +500,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/github.md b/web/docs/auth/social-auth/github.md index 6da7b4b39d..5f52358390 100644 --- a/web/docs/auth/social-auth/github.md +++ b/web/docs/auth/social-auth/github.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -68,7 +68,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -276,7 +276,7 @@ Add `gitHub: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -296,7 +296,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -374,7 +374,7 @@ For an up to date info about the data received from GitHub, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -421,7 +421,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -489,7 +489,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -513,7 +513,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/google.md b/web/docs/auth/social-auth/google.md index a596f7c288..082046baf7 100644 --- a/web/docs/auth/social-auth/google.md +++ b/web/docs/auth/social-auth/google.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -66,7 +66,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -317,7 +317,7 @@ Add `google: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -337,7 +337,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -400,7 +400,7 @@ For an up to date info about the data received from Google, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -447,7 +447,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -515,7 +515,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -539,7 +539,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/keycloak.md b/web/docs/auth/social-auth/keycloak.md index 1820f149a2..4ad82d72d6 100644 --- a/web/docs/auth/social-auth/keycloak.md +++ b/web/docs/auth/social-auth/keycloak.md @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -65,7 +65,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -283,7 +283,7 @@ Add `keycloak: {}` to the `auth.methods` dictionary to use it with default setti ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -303,7 +303,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -359,7 +359,7 @@ For up-to-date info about the data received from Keycloak, please refer to the [ ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -406,7 +406,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -474,7 +474,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -498,7 +498,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/social-auth/overview.md b/web/docs/auth/social-auth/overview.md index dc0ed52f75..b562fb0932 100644 --- a/web/docs/auth/social-auth/overview.md +++ b/web/docs/auth/social-auth/overview.md @@ -36,7 +36,7 @@ Here's what the full setup looks like: ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -63,7 +63,7 @@ model User { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -148,7 +148,7 @@ Declare an import under `app.auth.methods.google.userSignupFields` (the example ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -180,7 +180,7 @@ export const userSignupFields = { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/auth/username-and-pass.md b/web/docs/auth/username-and-pass.md index 459d99c220..cd9479026f 100644 --- a/web/docs/auth/username-and-pass.md +++ b/web/docs/auth/username-and-pass.md @@ -45,7 +45,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -66,7 +66,7 @@ app myApp { ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -624,7 +624,7 @@ When you receive the `user` object [on the client or the server](./overview.md#a ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -649,7 +649,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -681,7 +681,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -703,7 +703,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/docs/data-model/crud.md b/web/docs/data-model/crud.md index 29ac2b0937..345f3fa208 100644 --- a/web/docs/data-model/crud.md +++ b/web/docs/data-model/crud.md @@ -73,7 +73,7 @@ We can start by running `wasp new tasksCrudApp` and then adding the following to ```wasp title="main.wasp" app tasksCrudApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "Tasks Crud App", diff --git a/web/docs/data-model/prisma-file.md b/web/docs/data-model/prisma-file.md index a91c633b4c..cb771529cb 100644 --- a/web/docs/data-model/prisma-file.md +++ b/web/docs/data-model/prisma-file.md @@ -66,7 +66,7 @@ Finally, Prisma models become Wasp Entities which can be then used in the `main. ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", } diff --git a/web/docs/deployment/deployment-methods/paas.md b/web/docs/deployment/deployment-methods/paas.md index fe284d967a..258eb18b4e 100644 --- a/web/docs/deployment/deployment-methods/paas.md +++ b/web/docs/deployment/deployment-methods/paas.md @@ -594,7 +594,7 @@ jobs: node-version: '20' - name: Install Wasp - run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.15.0 # Change to your Wasp version + run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.16.0 # Change to your Wasp version - name: Wasp Build run: wasp build @@ -699,7 +699,7 @@ jobs: node-version: '20' - name: Install Wasp - run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.15.0 # Change to your Wasp version + run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.16.0 # Change to your Wasp version - name: Wasp Build run: cd ./app && wasp build diff --git a/web/docs/general/wasp-ts-config.md b/web/docs/general/wasp-ts-config.md index 438c4acba4..7e9e7d5284 100644 --- a/web/docs/general/wasp-ts-config.md +++ b/web/docs/general/wasp-ts-config.md @@ -138,7 +138,7 @@ import { App } from 'wasp-config' const app = new App('todoApp', { title: 'ToDo App', - wasp: { version: '^0.15.0' }, + wasp: { version: '^0.16.0' }, // head: [] }); diff --git a/web/docs/introduction/introduction.md b/web/docs/introduction/introduction.md index 195bd8d142..219cfd127c 100644 --- a/web/docs/introduction/introduction.md +++ b/web/docs/introduction/introduction.md @@ -61,7 +61,7 @@ Let's give our app a title and let's immediately turn on the full-stack authenti ```wasp title="main.wasp" app RecipeApp { title: "My Recipes", - wasp: { version: "^0.15.0" }, + wasp: { version: "^0.16.0" }, auth: { methods: { usernameAndPassword: {} }, onAuthFailedRedirectTo: "/login", diff --git a/web/docs/project/customizing-app.md b/web/docs/project/customizing-app.md index c774c2d970..3c9cde710f 100644 --- a/web/docs/project/customizing-app.md +++ b/web/docs/project/customizing-app.md @@ -9,7 +9,7 @@ Each Wasp project can have only one `app` type declaration. It is used to config ```wasp app todoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "ToDo App", head: [ @@ -27,7 +27,7 @@ You may want to change the title of your app, which appears in the browser tab, ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "BookFace" } @@ -42,7 +42,7 @@ An example of adding extra style sheets and scripts: ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", head: [ // optional @@ -58,7 +58,7 @@ app myApp { ```wasp app todoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "ToDo App", head: [ diff --git a/web/docs/tutorial/02-project-structure.md b/web/docs/tutorial/02-project-structure.md index 856479b59d..021327cca6 100644 --- a/web/docs/tutorial/02-project-structure.md +++ b/web/docs/tutorial/02-project-structure.md @@ -97,7 +97,7 @@ The default `main.wasp` file generated with `wasp new` on the previous page look ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" // Pins the version of Wasp to use. + version: "^0.16.0" // Pins the version of Wasp to use. }, title: "TodoApp" // Used as the browser tab title. Note that all strings in Wasp are double quoted! } @@ -117,7 +117,7 @@ page MainPage { ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" // Pins the version of Wasp to use. + version: "^0.16.0" // Pins the version of Wasp to use. }, title: "TodoApp" // Used as the browser tab title. Note that all strings in Wasp are double quoted! } diff --git a/web/docs/tutorial/03-pages.md b/web/docs/tutorial/03-pages.md index 4e1ef827fe..2aef4b1dd4 100644 --- a/web/docs/tutorial/03-pages.md +++ b/web/docs/tutorial/03-pages.md @@ -194,7 +194,7 @@ Your Wasp file should now look like this: ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "TodoApp" } @@ -211,7 +211,7 @@ page MainPage { ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "TodoApp" } diff --git a/web/docs/tutorial/07-auth.md b/web/docs/tutorial/07-auth.md index 815c793381..a5bec0e430 100644 --- a/web/docs/tutorial/07-auth.md +++ b/web/docs/tutorial/07-auth.md @@ -38,7 +38,7 @@ Next, tell Wasp to use full-stack [authentication](../auth/overview): ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, // highlight-start title: "TodoApp", diff --git a/web/versioned_docs/version-0.16.0/auth/auth-hooks.md b/web/versioned_docs/version-0.16.0/auth/auth-hooks.md index b66450b38e..ca5428f1dd 100644 --- a/web/versioned_docs/version-0.16.0/auth/auth-hooks.md +++ b/web/versioned_docs/version-0.16.0/auth/auth-hooks.md @@ -55,7 +55,7 @@ To use auth hooks, you must first declare them in the Wasp file: ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, @@ -77,7 +77,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, @@ -583,7 +583,7 @@ If you want to refresh the token periodically, use a [Wasp Job](../advanced/jobs ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, @@ -605,7 +605,7 @@ app myApp { ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, auth: { userEntity: User, diff --git a/web/versioned_docs/version-0.16.0/auth/email.md b/web/versioned_docs/version-0.16.0/auth/email.md index d6d0480f95..5ec3d0ede9 100644 --- a/web/versioned_docs/version-0.16.0/auth/email.md +++ b/web/versioned_docs/version-0.16.0/auth/email.md @@ -50,7 +50,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -85,7 +85,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/entities/entities.md b/web/versioned_docs/version-0.16.0/auth/entities/entities.md index f24dd9247d..219e11059a 100644 --- a/web/versioned_docs/version-0.16.0/auth/entities/entities.md +++ b/web/versioned_docs/version-0.16.0/auth/entities/entities.md @@ -470,7 +470,7 @@ For example, you might set it to `User`: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/social-auth/discord.md b/web/versioned_docs/version-0.16.0/auth/social-auth/discord.md index ac2ba7edc8..eccb463a88 100644 --- a/web/versioned_docs/version-0.16.0/auth/social-auth/discord.md +++ b/web/versioned_docs/version-0.16.0/auth/social-auth/discord.md @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -67,7 +67,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -276,7 +276,7 @@ Add `discord: {}` to the `auth.methods` dictionary to use it with default settin ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -296,7 +296,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -361,7 +361,7 @@ For an up to date info about the data received from Discord, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -408,7 +408,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -476,7 +476,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -500,7 +500,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/social-auth/github.md b/web/versioned_docs/version-0.16.0/auth/social-auth/github.md index 6da7b4b39d..5f52358390 100644 --- a/web/versioned_docs/version-0.16.0/auth/social-auth/github.md +++ b/web/versioned_docs/version-0.16.0/auth/social-auth/github.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -68,7 +68,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -276,7 +276,7 @@ Add `gitHub: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -296,7 +296,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -374,7 +374,7 @@ For an up to date info about the data received from GitHub, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -421,7 +421,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -489,7 +489,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -513,7 +513,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/social-auth/google.md b/web/versioned_docs/version-0.16.0/auth/social-auth/google.md index a596f7c288..082046baf7 100644 --- a/web/versioned_docs/version-0.16.0/auth/social-auth/google.md +++ b/web/versioned_docs/version-0.16.0/auth/social-auth/google.md @@ -43,7 +43,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -66,7 +66,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -317,7 +317,7 @@ Add `google: {}` to the `auth.methods` dictionary to use it with default setting ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -337,7 +337,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -400,7 +400,7 @@ For an up to date info about the data received from Google, please refer to the ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -447,7 +447,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -515,7 +515,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -539,7 +539,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/social-auth/keycloak.md b/web/versioned_docs/version-0.16.0/auth/social-auth/keycloak.md index 1820f149a2..4ad82d72d6 100644 --- a/web/versioned_docs/version-0.16.0/auth/social-auth/keycloak.md +++ b/web/versioned_docs/version-0.16.0/auth/social-auth/keycloak.md @@ -42,7 +42,7 @@ Let's start by properly configuring the Auth object: ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -65,7 +65,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -283,7 +283,7 @@ Add `keycloak: {}` to the `auth.methods` dictionary to use it with default setti ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -303,7 +303,7 @@ app myApp { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -359,7 +359,7 @@ For up-to-date info about the data received from Keycloak, please refer to the [ ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -406,7 +406,7 @@ export function getConfig() { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -474,7 +474,7 @@ When you receive the `user` object [on the client or the server](../overview.md# ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -498,7 +498,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/social-auth/overview.md b/web/versioned_docs/version-0.16.0/auth/social-auth/overview.md index dc0ed52f75..b562fb0932 100644 --- a/web/versioned_docs/version-0.16.0/auth/social-auth/overview.md +++ b/web/versioned_docs/version-0.16.0/auth/social-auth/overview.md @@ -36,7 +36,7 @@ Here's what the full setup looks like: ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -63,7 +63,7 @@ model User { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -148,7 +148,7 @@ Declare an import under `app.auth.methods.google.userSignupFields` (the example ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -180,7 +180,7 @@ export const userSignupFields = { ```wasp title=main.wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/auth/username-and-pass.md b/web/versioned_docs/version-0.16.0/auth/username-and-pass.md index 459d99c220..cd9479026f 100644 --- a/web/versioned_docs/version-0.16.0/auth/username-and-pass.md +++ b/web/versioned_docs/version-0.16.0/auth/username-and-pass.md @@ -45,7 +45,7 @@ Let's start with adding the following to our `main.wasp` file: ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -66,7 +66,7 @@ app myApp { ```wasp title="main.wasp" {11} app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -624,7 +624,7 @@ When you receive the `user` object [on the client or the server](./overview.md#a ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -649,7 +649,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -681,7 +681,7 @@ model User { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { @@ -703,7 +703,7 @@ app myApp { ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", auth: { diff --git a/web/versioned_docs/version-0.16.0/data-model/crud.md b/web/versioned_docs/version-0.16.0/data-model/crud.md index 29ac2b0937..345f3fa208 100644 --- a/web/versioned_docs/version-0.16.0/data-model/crud.md +++ b/web/versioned_docs/version-0.16.0/data-model/crud.md @@ -73,7 +73,7 @@ We can start by running `wasp new tasksCrudApp` and then adding the following to ```wasp title="main.wasp" app tasksCrudApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "Tasks Crud App", diff --git a/web/versioned_docs/version-0.16.0/data-model/prisma-file.md b/web/versioned_docs/version-0.16.0/data-model/prisma-file.md index a91c633b4c..cb771529cb 100644 --- a/web/versioned_docs/version-0.16.0/data-model/prisma-file.md +++ b/web/versioned_docs/version-0.16.0/data-model/prisma-file.md @@ -66,7 +66,7 @@ Finally, Prisma models become Wasp Entities which can be then used in the `main. ```wasp title="main.wasp" app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", } diff --git a/web/versioned_docs/version-0.16.0/deployment/deployment-methods/paas.md b/web/versioned_docs/version-0.16.0/deployment/deployment-methods/paas.md index fe284d967a..258eb18b4e 100644 --- a/web/versioned_docs/version-0.16.0/deployment/deployment-methods/paas.md +++ b/web/versioned_docs/version-0.16.0/deployment/deployment-methods/paas.md @@ -594,7 +594,7 @@ jobs: node-version: '20' - name: Install Wasp - run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.15.0 # Change to your Wasp version + run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.16.0 # Change to your Wasp version - name: Wasp Build run: wasp build @@ -699,7 +699,7 @@ jobs: node-version: '20' - name: Install Wasp - run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.15.0 # Change to your Wasp version + run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v 0.16.0 # Change to your Wasp version - name: Wasp Build run: cd ./app && wasp build diff --git a/web/versioned_docs/version-0.16.0/general/wasp-ts-config.md b/web/versioned_docs/version-0.16.0/general/wasp-ts-config.md index 438c4acba4..7e9e7d5284 100644 --- a/web/versioned_docs/version-0.16.0/general/wasp-ts-config.md +++ b/web/versioned_docs/version-0.16.0/general/wasp-ts-config.md @@ -138,7 +138,7 @@ import { App } from 'wasp-config' const app = new App('todoApp', { title: 'ToDo App', - wasp: { version: '^0.15.0' }, + wasp: { version: '^0.16.0' }, // head: [] }); diff --git a/web/versioned_docs/version-0.16.0/introduction/introduction.md b/web/versioned_docs/version-0.16.0/introduction/introduction.md index 195bd8d142..219cfd127c 100644 --- a/web/versioned_docs/version-0.16.0/introduction/introduction.md +++ b/web/versioned_docs/version-0.16.0/introduction/introduction.md @@ -61,7 +61,7 @@ Let's give our app a title and let's immediately turn on the full-stack authenti ```wasp title="main.wasp" app RecipeApp { title: "My Recipes", - wasp: { version: "^0.15.0" }, + wasp: { version: "^0.16.0" }, auth: { methods: { usernameAndPassword: {} }, onAuthFailedRedirectTo: "/login", diff --git a/web/versioned_docs/version-0.16.0/project/customizing-app.md b/web/versioned_docs/version-0.16.0/project/customizing-app.md index c774c2d970..3c9cde710f 100644 --- a/web/versioned_docs/version-0.16.0/project/customizing-app.md +++ b/web/versioned_docs/version-0.16.0/project/customizing-app.md @@ -9,7 +9,7 @@ Each Wasp project can have only one `app` type declaration. It is used to config ```wasp app todoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "ToDo App", head: [ @@ -27,7 +27,7 @@ You may want to change the title of your app, which appears in the browser tab, ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "BookFace" } @@ -42,7 +42,7 @@ An example of adding extra style sheets and scripts: ```wasp app myApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "My App", head: [ // optional @@ -58,7 +58,7 @@ app myApp { ```wasp app todoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "ToDo App", head: [ diff --git a/web/versioned_docs/version-0.16.0/tutorial/02-project-structure.md b/web/versioned_docs/version-0.16.0/tutorial/02-project-structure.md index 856479b59d..021327cca6 100644 --- a/web/versioned_docs/version-0.16.0/tutorial/02-project-structure.md +++ b/web/versioned_docs/version-0.16.0/tutorial/02-project-structure.md @@ -97,7 +97,7 @@ The default `main.wasp` file generated with `wasp new` on the previous page look ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" // Pins the version of Wasp to use. + version: "^0.16.0" // Pins the version of Wasp to use. }, title: "TodoApp" // Used as the browser tab title. Note that all strings in Wasp are double quoted! } @@ -117,7 +117,7 @@ page MainPage { ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" // Pins the version of Wasp to use. + version: "^0.16.0" // Pins the version of Wasp to use. }, title: "TodoApp" // Used as the browser tab title. Note that all strings in Wasp are double quoted! } diff --git a/web/versioned_docs/version-0.16.0/tutorial/03-pages.md b/web/versioned_docs/version-0.16.0/tutorial/03-pages.md index 4e1ef827fe..2aef4b1dd4 100644 --- a/web/versioned_docs/version-0.16.0/tutorial/03-pages.md +++ b/web/versioned_docs/version-0.16.0/tutorial/03-pages.md @@ -194,7 +194,7 @@ Your Wasp file should now look like this: ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "TodoApp" } @@ -211,7 +211,7 @@ page MainPage { ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, title: "TodoApp" } diff --git a/web/versioned_docs/version-0.16.0/tutorial/07-auth.md b/web/versioned_docs/version-0.16.0/tutorial/07-auth.md index 815c793381..a5bec0e430 100644 --- a/web/versioned_docs/version-0.16.0/tutorial/07-auth.md +++ b/web/versioned_docs/version-0.16.0/tutorial/07-auth.md @@ -38,7 +38,7 @@ Next, tell Wasp to use full-stack [authentication](../auth/overview): ```wasp title="main.wasp" app TodoApp { wasp: { - version: "^0.15.0" + version: "^0.16.0" }, // highlight-start title: "TodoApp",