From 613f0c55778e0a51e9a8221e91553e3940aabfe9 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Sat, 26 Aug 2023 10:20:43 +0300 Subject: [PATCH] bumped package version --- CHANGELOG.md | 4 +++- README.md | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 567c427..4e4a679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.17.0-rc1 +## 0.17.0 - To simplify file uploads, we now allow sending the `multipart/form-data` request body also as plain object if at least one of the object props has `File` or `Blob` value. ```js @@ -106,6 +106,8 @@ }) ``` +- Eagerly open the default OAuth2 signin popup in case no custom `urlCallback` is provided as a workaround for Safari. + - Internal refactoring (updated dev dependencies, refactored the tests to use Vitest instead of Mocha, etc.). diff --git a/README.md b/README.md index 99bd3cf..3e30853 100644 --- a/README.md +++ b/README.md @@ -232,7 +232,7 @@ BaseAuthStore { isAuthRecord: boolean // checks if the store state is for an auth record // main methods - clear() // "logout" the authenticated Record or Admin + clear() // "logout" the authenticated record or admin model save(token, model) // update the store with the new auth data onChange(callback, fireImmediately = false) // register a callback that will be called on store change diff --git a/package.json b/package.json index 0cce827..44e8fb1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.17.0-rc1", + "version": "0.17.0", "name": "pocketbase", "description": "PocketBase JavaScript SDK", "author": "Gani Georgiev",