-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): bump version to v2.0.0
- Loading branch information
1 parent
c294568
commit 1440dd6
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,49 @@ | |
|
||
|
||
|
||
## v2.0.0 (2023-11-30) | ||
|
||
### Breaking | ||
|
||
* feat: exchange code for session now fully async | ||
|
||
BREAKING CHANGE: change async method on_auth_state_change to sync only. ([`a249ba0`](https://github.com/supabase-community/gotrue-py/commit/a249ba03cc7d99b2d1805480ca89ee457ad865f1)) | ||
|
||
### Chore | ||
|
||
* chore(deps-dev): bump cryptography from 41.0.5 to 41.0.6 (#377) ([`e6b3d46`](https://github.com/supabase-community/gotrue-py/commit/e6b3d46fba5f24631fdd5fdb1b8d1688a1087053)) | ||
|
||
### Feature | ||
|
||
* feat: exchange code for session now fully async (#378) ([`c294568`](https://github.com/supabase-community/gotrue-py/commit/c2945684a8ad4d8710ca72428b4ec16aab87bad1)) | ||
|
||
### Unknown | ||
|
||
* bug fix: use pydantic v2 model.model_rebuild (#373) ([`fd94314`](https://github.com/supabase-community/gotrue-py/commit/fd94314c4412d49610acf8d3166abe660f6a4ee4)) | ||
|
||
* add soft delete support to "delete user" (#376) ([`08bada3`](https://github.com/supabase-community/gotrue-py/commit/08bada3692f230cf1bd793a7eb60a12d62fec0c6)) | ||
|
||
|
||
## v1.3.1 (2023-11-29) | ||
|
||
### Chore | ||
|
||
* chore(release): bump version to v1.3.1 ([`ede20fe`](https://github.com/supabase-community/gotrue-py/commit/ede20fea097fd900df2efc6231c14ea86f486087)) | ||
|
||
* chore(deps-dev): bump cryptography from 41.0.5 to 41.0.6 | ||
|
||
Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.5 to 41.0.6. | ||
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) | ||
- [Commits](https://github.com/pyca/cryptography/compare/41.0.5...41.0.6) | ||
|
||
--- | ||
updated-dependencies: | ||
- dependency-name: cryptography | ||
dependency-type: indirect | ||
... | ||
|
||
Signed-off-by: dependabot[bot] <[email protected]> ([`424a5df`](https://github.com/supabase-community/gotrue-py/commit/424a5df56f91ac30fab056bd9128d4dac004c565)) | ||
|
||
### Fix | ||
|
||
* fix: remove unnecessary async to on_auth_state_change (#374) ([`574c739`](https://github.com/supabase-community/gotrue-py/commit/574c739500dd304aa6d09c69122373b6e4a5be01)) | ||
|
@@ -15,6 +56,12 @@ Somehow this got reverted on a refactor (https://github.com/supabase-community/g | |
This causes problems when using the supabase client, since it's not being awaited: | ||
https://github.com/supabase-community/supabase-py/blob/main/supabase/_async/client.py#L90 ([`7548d02`](https://github.com/supabase-community/gotrue-py/commit/7548d0290199bdb1053564b953932c53aabdea29)) | ||
|
||
### Unknown | ||
|
||
* add soft delete support to "delete user" ([`5471167`](https://github.com/supabase-community/gotrue-py/commit/54711675533ce58fdf3017f250e92a88db719aad)) | ||
|
||
* bug fix: use pydantic v2 model.model_rebuild not rebuild_model ([`9d723df`](https://github.com/supabase-community/gotrue-py/commit/9d723df7637fb501f83aad3562a49e2ed24bb9a2)) | ||
|
||
|
||
## v1.3.0 (2023-11-01) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "gotrue" | ||
version = "1.3.1" | ||
version = "2.0.0" | ||
description = "Python Client Library for GoTrue" | ||
authors = ["Joel Lee <[email protected]>"] | ||
homepage = "https://github.com/supabase-community/gotrue-py" | ||
|