-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b74844b
commit 72f4640
Showing
4 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,32 @@ | |
This document describes breaking changes, as well as how to fix them, that have occured at given releases. | ||
After updating your project, please consult the segments from your current release until now. | ||
|
||
# Upgrade to Beta 0.11.0 from Beta 0.10.0 | ||
|
||
## Switch IHP version | ||
|
||
Open `default.nix` and change the git commit in line 4 to the following: | ||
|
||
```diff | ||
-ref = "refs/tags/v0.10.0"; | ||
+ref = "refs/tags/v0.11.0"; | ||
``` | ||
|
||
After that run the following command to update your project: | ||
|
||
```bash | ||
make clean | ||
nix-shell -j auto --cores 0 --run 'make -B .envrc' | ||
make -B build/ihp-lib | ||
``` | ||
|
||
Now you can start your project as usual with `./start`. | ||
|
||
## Important Login Changes | ||
|
||
Important if you use IHP's Login: IHP's built-in sessions controller used for the built-in login now uses case-insensitive lookup for the email addresses at login. This will improve user experience for users that create their account with `[email protected]` and then try to log in using `[email protected]`. | ||
|
||
|
||
# Upgrade to Beta 0.10.0 from Beta 0.9.0 | ||
|
||
## Switch IHP version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters