-
Notifications
You must be signed in to change notification settings - Fork 2
upgrade from 5.2 to 5.3 steps #85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Jurj-Bogdan <[email protected]>
@Jurj-Bogdan you need to edit another file to have that page added to menu |
it's this file that is used to place the links in the menu |
Signed-off-by: Jurj-Bogdan <[email protected]>
mkdocs.yml
Outdated
@@ -22,7 +22,9 @@ nav: | |||
- "Doctrine ORM": v5/installation/doctrine-orm.md | |||
- "Test the Installation": v5/installation/test-the-installation.md | |||
- "FAQ": v5/installation/faq.md | |||
- Upgrading: v5/upgrading.md | |||
- Upgrading: | |||
- "Upgrading": v5/upgrading/upgrading.md |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change to "Upgrade procedure"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've only changed the commented line (26), i hope you didn't mean the "main menu text" as well (line 25)
> Note that you can set the memory limit to a value of your choosing, with a recommended minimum of 256M | ||
|
||
### Update anonymization | ||
|
||
By default, Dotkernel API uses "soft delete" for it's `User` entities in order to preserve the database entries. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need this much spacing between these phrases? the other sections also have 3 separate paragraphs, but i think it's better to merge them as they are on a single topic
Starting from version 5.3 the `isDeleted` property has been removed because, by default, there is no use in having both it and the status property. | ||
|
||
As such, a new `Deleted` case for `UserStatusEnum` is now used to mark a deleted account and remove the redundancy. | ||
|
||
* [BC Break] Remove the `isDeleted` property from the `User` class, alongside all usages, as seen in the [pull request](https://github.com/dotkernel/api/pull/359/files) | ||
* Add a new "deleted" case to `UserStatusEnum`, which is to be used instead of the previous `isDeleted` property | ||
* Update the database and it's migrations to reflect the new structure |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change "it's" to "its"
Signed-off-by: Jurj-Bogdan <[email protected]>
Signed-off-by: Jurj-Bogdan <[email protected]>
Let me know of any changes. Also, should it be more in depth?
closes #84