diff --git a/CHANGELOG.md b/CHANGELOG.md index 4162ac17..58e72fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] <support@github.com> ([`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) diff --git a/gotrue/__init__.py b/gotrue/__init__.py index 9ece1b3e..5e4f00d3 100644 --- a/gotrue/__init__.py +++ b/gotrue/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "1.3.1" +__version__ = "2.0.0" from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI # type: ignore # noqa: F401 from ._async.gotrue_client import AsyncGoTrueClient # type: ignore # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 135d9589..c77160b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] homepage = "https://github.com/supabase-community/gotrue-py"