From 5183280c399b869c56670616bbe7e24ef03dcf6e Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Tue, 13 Dec 2022 12:33:12 +0200 Subject: [PATCH] updated changelog --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba01dbf1..4a95ff2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,14 @@ - Added `/api/health` endpoint (thanks @MarvinJWendt). -- Removed `rest.UploadedFile` struct (see below `filesystem.File`). +- Added support for SMTP `LOGIN` auth for Microsoft/Outlook and other providers that dont't support the `PLAIN` auth method ([#1217](https://github.com/pocketbase/pocketbase/discussions/1217#discussioncomment-4387970)). -- Optimized memory allocations (~20% improvement). +- Reduced memory consumption (~20% improvement). - Improved record references delete performance. +- Removed `rest.UploadedFile` struct (see below `filesystem.File`). + - Added generic file resource struct that allows loading and uploading file content from different sources (at the moment multipart/formdata requests and from the local filesystem). ```