Added v22.09 change notes, added notices and other todos

This commit is contained in:
Dan Brown 2022-09-06 11:55:28 +01:00
commit 20d0abc4c9
Signed by: danb
GPG key ID: 46D9F943C24A2EF9

View file

@ -28,17 +28,19 @@ in the creation and use of docker containers.
### Revision Limit
Each time a page is saved a revision is stored to track history. To prevent your database becoming bloated BookStack will automatically remove revisions when the count, per page, exceeds 50. You can set the following option in your `.env` file to increase or remove the limit:
Each time a page is saved a revision is stored to track history. To prevent your database becoming bloated BookStack will automatically remove revisions when the count, per page, exceeds 100. You can set the following option in your `.env` file to increase or remove the limit:
```bash
# Set the revision limit to 100
# Defaults to '50'
REVISION_LIMIT=100
# Set the revision limit to 200
# Defaults to '100'
REVISION_LIMIT=200
# Alternatively, You can set to 'false' to disable the limit altogether.
REVISION_LIMIT=false
```
Keep in mind that BookStack itself may automatically update pages and create revisions in certain circumstances (Auto-updating of links for example).
---
### Recycle Bin Lifetime