From d69e72deafc13bc15e7d03d94d42ddfd37301990 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Tue, 18 Apr 2023 07:09:07 +0300 Subject: [PATCH] updated changelog --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af68dd4d..4dabd603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,16 @@ +## (WIP) + ## v0.15.0 - Simplified the OAuth2 authentication flow in a single "all in one" call ([#55](https://github.com/pocketbase/pocketbase/issues/55)). Requires JS SDK v0.14.0+ or Dart SDK v0.9.0+. - The manual code-token exchange flow is still supported but the SDK methods is renamed to `authWithOAuth2Code()` (_to minimize the breaking changes the JS SDK has a function overload that will proxy the existing `authWithOauth2` calls to `authWithOAuth2Code`_). + The manual code-token exchange flow is still supported but the SDK method is renamed to `authWithOAuth2Code()` (_to minimize the breaking changes the JS SDK has a function overload that will proxy the existing `authWithOauth2` calls to `authWithOAuth2Code`_). For more details and example, you could check https://pocketbase.io/docs/authentication/#oauth2-integration. - Added support for protected files ([#215](https://github.com/pocketbase/pocketbase/issues/215)). Requires JS SDK v0.14.0+ or Dart SDK v0.9.0+. It works with a short lived (~5min) file token passed as query param with the file url. - For more details and example, you could check https://pocketbase.io/docs/files-handling/#private-files. + For more details and example, you could check https://pocketbase.io/docs/files-handling/#protected-files. - **!** Fixed typo in `Record.WithUnkownData()` -> `Record.WithUnknownData()`.