You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"fetching latest X.Y version for core given core-driver-interface X.Y version: $coreDriverVersion, planType: FREE gave response: $coreFree. Please make sure all relevant cores have been pushed."
if [[ `echo $frontendVersionXY| jq .frontend`=="null" ]]
50
+
then
51
+
echo"fetching latest X.Y version for frontend given frontend-driver-interface X.Y version: $frontendDriverVersion, name: webiste gave response: $frontend. Please make sure all relevant versions have been pushed."
if [[ `echo $nodeVersionXY| jq .driver`=="null" ]]
71
+
then
72
+
echo"fetching latest X.Y version for driver given frontend-driver-interface X.Y version: $frontendDriverVersion gave response: $nodeVersionXY. Please make sure all relevant drivers have been pushed."
Copy file name to clipboardExpand all lines: CHANGELOG.md
+71-1Lines changed: 71 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,78 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [unreleased]
8
8
9
-
### Documentation
9
+
## [0.10.0] - 2022-07-04
10
+
11
+
- Update tests to cover `resend_code` feature in `passwordless` and `thirdpartypasswordless` recipe.
12
+
- Update usermetadata tests to ensure that utf8 chars are supported.
13
+
- Mark tests as skipped if core version requirements are not met.
14
+
- Use [black](https://github.com/psf/black) instead of `autopep8` to format code.
15
+
- Add frontend integration tests for `django2x`
16
+
17
+
### Bug fix:
18
+
19
+
- Clears cookies when `revoke_session` is called using the session container, even if the session did not exist from before: https://github.com/supertokens/supertokens-node/issues/343
20
+
21
+
### Breaking changes:
22
+
- Change request arg type in session recipe functions from Any to BaseRequest.
23
+
- Changes session function recipe interfaces to not throw an `UNAUTHORISED` error when the input is a session_handle: https://github.com/supertokens/backend/issues/83
24
+
-`get_session_information` now returns `None` if the session does not exist.
25
+
-`update_session_data` now returns `False` if the input `session_handle` does not exist.
26
+
-`update_access_token_payload` now returns `False` if the input `session_handle` does not exist.
27
+
-`regenerate_access_token` now returns `None` if the input access token's `session_handle` does not exist.
28
+
- The `session_class` functions have not changed in behaviour and still throw `UNAUTHORISED` error. This works cause the `session_class` works on the current session and not some other session.
29
+
30
+
31
+
### Features:
32
+
- Adds default `user_context` for API calls that contains the request object. It can be used in APIs / functions override like this:
0 commit comments