diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f13b62a9..7ef5135d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "src/supabase": "2.19.0", - "src/realtime": "2.19.0", - "src/functions": "2.19.0", - "src/storage": "2.19.0", - "src/postgrest": "2.19.0", - "src/auth": "2.19.0" + "src/supabase": "2.20.0", + "src/realtime": "2.20.0", + "src/functions": "2.20.0", + "src/storage": "2.20.0", + "src/postgrest": "2.20.0", + "src/auth": "2.20.0" } diff --git a/src/auth/CHANGELOG.md b/src/auth/CHANGELOG.md index d9eb7176..0104277c 100644 --- a/src/auth/CHANGELOG.md +++ b/src/auth/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22) + + +### Features + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + +* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273)) + +* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3)) + + + ## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16) ### Features diff --git a/src/auth/pyproject.toml b/src/auth/pyproject.toml index 7fa3d1da..1e79aee6 100644 --- a/src/auth/pyproject.toml +++ b/src/auth/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "supabase_auth" -version = "2.19.0" # {x-release-please-version} +version = "2.20.0" # {x-release-please-version} description = "Python Client Library for Supabase Auth" authors = [ {name = "Joel Lee", email = "joel@joellee.org" } diff --git a/src/auth/src/supabase_auth/version.py b/src/auth/src/supabase_auth/version.py index 35a339b4..758ccce8 100644 --- a/src/auth/src/supabase_auth/version.py +++ b/src/auth/src/supabase_auth/version.py @@ -1 +1 @@ -__version__ = "2.19.0" # {x-release-please-version} +__version__ = "2.20.0" # {x-release-please-version} diff --git a/src/functions/CHANGELOG.md b/src/functions/CHANGELOG.md index 0f44f416..6c442497 100644 --- a/src/functions/CHANGELOG.md +++ b/src/functions/CHANGELOG.md @@ -1,5 +1,20 @@ # CHANGELOG +## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22) + +### Features + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + +* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273)) + +* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3)) + + +### Documentation + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + ## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16) ### Features diff --git a/src/functions/pyproject.toml b/src/functions/pyproject.toml index af0a9bb1..3cd6d367 100644 --- a/src/functions/pyproject.toml +++ b/src/functions/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "supabase_functions" -version = "2.19.0" # {x-release-please-version} +version = "2.20.0" # {x-release-please-version} description = "Library for Supabase Functions" authors = [ { name = "Joel Lee", email = "joel@joellee.org" }, diff --git a/src/functions/src/supabase_functions/version.py b/src/functions/src/supabase_functions/version.py index 35a339b4..758ccce8 100644 --- a/src/functions/src/supabase_functions/version.py +++ b/src/functions/src/supabase_functions/version.py @@ -1 +1 @@ -__version__ = "2.19.0" # {x-release-please-version} +__version__ = "2.20.0" # {x-release-please-version} diff --git a/src/postgrest/CHANGELOG.md b/src/postgrest/CHANGELOG.md index 4cdbac9b..8bcbdf49 100644 --- a/src/postgrest/CHANGELOG.md +++ b/src/postgrest/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG +## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22) + + +### Features + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + +* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273)) + +* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3)) + + ## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16) ### Features diff --git a/src/postgrest/pyproject.toml b/src/postgrest/pyproject.toml index 42389177..6291cc44 100644 --- a/src/postgrest/pyproject.toml +++ b/src/postgrest/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "postgrest" -version = "2.19.0" # {x-release-please-version} +version = "2.20.0" # {x-release-please-version} description = "PostgREST client for Python. This library provides an ORM interface to PostgREST." authors = [ { name = "Lương Quang Mạnh", email = "luongquangmanh85@gmail.com"}, diff --git a/src/postgrest/src/postgrest/version.py b/src/postgrest/src/postgrest/version.py index 35a339b4..758ccce8 100644 --- a/src/postgrest/src/postgrest/version.py +++ b/src/postgrest/src/postgrest/version.py @@ -1 +1 @@ -__version__ = "2.19.0" # {x-release-please-version} +__version__ = "2.20.0" # {x-release-please-version} diff --git a/src/realtime/CHANGELOG.md b/src/realtime/CHANGELOG.md index 619dd2a0..4dc73564 100644 --- a/src/realtime/CHANGELOG.md +++ b/src/realtime/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22) + + +### Features + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + +* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273)) + +* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3)) + ## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16) ### Features diff --git a/src/realtime/pyproject.toml b/src/realtime/pyproject.toml index d9d6fbbc..768f15cc 100644 --- a/src/realtime/pyproject.toml +++ b/src/realtime/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "realtime" -version = "2.19.0" # {x-release-please-version} +version = "2.20.0" # {x-release-please-version} description = "" authors = [ { name = "Joel Lee", email="joel@joellee.org"}, diff --git a/src/realtime/src/realtime/version.py b/src/realtime/src/realtime/version.py index 35a339b4..758ccce8 100644 --- a/src/realtime/src/realtime/version.py +++ b/src/realtime/src/realtime/version.py @@ -1 +1 @@ -__version__ = "2.19.0" # {x-release-please-version} +__version__ = "2.20.0" # {x-release-please-version} diff --git a/src/storage/CHANGELOG.md b/src/storage/CHANGELOG.md index ef170b16..ba53395e 100644 --- a/src/storage/CHANGELOG.md +++ b/src/storage/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## [2.20.0](https://github.com/supabase/supabase-py/compare/v2.19.0...v2.20.0) (2025-09-22) + + +### Features + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + +* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273)) + +* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3)) + ## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16) ### Features diff --git a/src/storage/pyproject.toml b/src/storage/pyproject.toml index 5365a8c2..5fb2b20d 100644 --- a/src/storage/pyproject.toml +++ b/src/storage/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ ] license = "MIT" readme = "README.md" -version = "2.19.0" # {x-release-please-version} +version = "2.20.0" # {x-release-please-version} requires-python = ">=3.9" dependencies = [ diff --git a/src/storage/src/storage3/version.py b/src/storage/src/storage3/version.py index 35a339b4..758ccce8 100644 --- a/src/storage/src/storage3/version.py +++ b/src/storage/src/storage3/version.py @@ -1 +1 @@ -__version__ = "2.19.0" # {x-release-please-version} +__version__ = "2.20.0" # {x-release-please-version} diff --git a/src/supabase/CHANGELOG.md b/src/supabase/CHANGELOG.md index e49b7433..6a580e1f 100644 --- a/src/supabase/CHANGELOG.md +++ b/src/supabase/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## [2.20.0](https://github.com/supabase/supabase-py/compare/2.19.0...v2.20.0) (2025-09-22) + +### Features + +* **functions:** improve README with installation options and examples ([#1217](https://github.com/supabase/supabase-py/issues/1217)) ([7eee056](https://github.com/supabase/supabase-py/commit/7eee0560303af50728d6598a4f052f9ac7d94656)) + +* **postgrest:** implement max_affected method ([#1222](https://github.com/supabase/supabase-py/issues/1222)) ([3f75daf](https://github.com/supabase/supabase-py/commit/3f75daf450af8ed9e85fe51a26faf2ed44362273)) + +* **storage:** mypy storage, fix type definitions ([#1221](https://github.com/supabase/supabase-py/issues/1221)) ([ea44ab6](https://github.com/supabase/supabase-py/commit/ea44ab6e73697cd561a6e409e68e6eff18da1ea3)) + ## [2.19.0](https://github.com/supabase/supabase-py/compare/v2.18.1...v2.19.0) (2025-09-16) ### Features diff --git a/src/supabase/pyproject.toml b/src/supabase/pyproject.toml index 41e14c2c..b5b320df 100644 --- a/src/supabase/pyproject.toml +++ b/src/supabase/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "supabase" -version = "2.19.0" # {x-release-please-version} +version = "2.20.0" # {x-release-please-version} description = "Supabase client for Python." authors = [ { name = "Joel Lee", email = "joel@joellee.org" }, diff --git a/src/supabase/src/supabase/version.py b/src/supabase/src/supabase/version.py index 35a339b4..758ccce8 100644 --- a/src/supabase/src/supabase/version.py +++ b/src/supabase/src/supabase/version.py @@ -1 +1 @@ -__version__ = "2.19.0" # {x-release-please-version} +__version__ = "2.20.0" # {x-release-please-version} diff --git a/uv.lock b/uv.lock index d7cd56a5..0f437183 100644 --- a/uv.lock +++ b/uv.lock @@ -1611,7 +1611,7 @@ wheels = [ [[package]] name = "postgrest" -version = "2.19.0" +version = "2.20.0" source = { editable = "src/postgrest" } dependencies = [ { name = "deprecation" }, @@ -2181,7 +2181,7 @@ wheels = [ [[package]] name = "realtime" -version = "2.19.0" +version = "2.20.0" source = { editable = "src/realtime" } dependencies = [ { name = "pydantic" }, @@ -2761,7 +2761,7 @@ wheels = [ [[package]] name = "storage3" -version = "2.19.0" +version = "2.20.0" source = { editable = "src/storage" } dependencies = [ { name = "deprecation" }, @@ -2863,7 +2863,7 @@ wheels = [ [[package]] name = "supabase" -version = "2.19.0" +version = "2.20.0" source = { editable = "src/supabase" } dependencies = [ { name = "httpx" }, @@ -2936,7 +2936,7 @@ tests = [ [[package]] name = "supabase-auth" -version = "2.19.0" +version = "2.20.0" source = { editable = "src/auth" } dependencies = [ { name = "httpx", extra = ["http2"] }, @@ -3005,7 +3005,7 @@ tests = [ [[package]] name = "supabase-functions" -version = "2.19.0" +version = "2.20.0" source = { editable = "src/functions" } dependencies = [ { name = "httpx", extra = ["http2"] },