diff --git a/docs/docs/changelog/v0.4.2.md b/docs/docs/changelog/v0.4.2.md new file mode 100644 index 000000000..fc7a61ad9 --- /dev/null +++ b/docs/docs/changelog/v0.4.2.md @@ -0,0 +1,23 @@ +# v0.4.2 + +**App Version: v0.4.2** + +**Database Version: v0.4.0** + +!!! error "Breaking Changes" + 1. With a recent refactor some users been experiencing issues with an environmental variable not being set correct. If you are experiencing issues, please provide your comments [Here](https://github.com/hay-kot/mealie/issues/281). + + 2. If you are a developer, you may experience issues with development as a new environmental variable has been introduced. Setting `PRODUCTION=false` will allow you to develop as normal. + +- Improved Nextcloud Migration. Mealie will now walk the directories in a zip file looking for directories that match the pattern of a Nextcloud Recipe. Closes #254 + - Rewrite Keywords to Tag Fields + - Rewrite url to orgURL +- Improved Chowdown Migration +- Migration report is now similar to the Backup report +- Tags/Categories are now title cased on import "dinner" -> "Dinner" +- Fixed Initialization script (v0.4.1a Hot Fix) Closes #274 +- Depreciate `ENV` variable to `PRODUCTION` +- Set `PRODUCTION` env variable to default to true +- Unify Logger across the backend +- mealie.log and last_recipe.json are now downloadable from the frontend from the /admin/about +- New download schema where you request a token and then use that token to hit a single endpoint to download a file. This is a notable change if you are using the API to download backups. \ No newline at end of file diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index ab46a17c7..2b1560f6c 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -77,6 +77,7 @@ nav: - Guidelines: "contributors/developers-guide/general-guidelines.md" - Development Road Map: "roadmap.md" - Change Log: + - v0.4.2 Backend/Migrations: "changelog/v0.4.2.md" - v0.4.1 Frontend/UI: "changelog/v0.4.1.md" - v0.4.0 Authentication: "changelog/v0.4.0.md" - v0.3.0 Improvements: "changelog/v0.3.0.md" diff --git a/mealie/core/config.py b/mealie/core/config.py index 23cacdd67..0d144629b 100644 --- a/mealie/core/config.py +++ b/mealie/core/config.py @@ -6,7 +6,7 @@ from typing import Optional, Union import dotenv from pydantic import BaseSettings, Field, validator -APP_VERSION = "v0.4.1" +APP_VERSION = "v0.4.2" DB_VERSION = "v0.4.0" CWD = Path(__file__).parent