Skip to content

Commit 07bd6a5

Browse files
committed
Merge branch 'main' into monorepo-include-realtime
2 parents df4f0aa + ec775ca commit 07bd6a5

File tree

17 files changed

+76
-49
lines changed

17 files changed

+76
-49
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ${{ matrix.os }}
2727
steps:
2828
- name: Clone Repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Install uv
3232
uses: astral-sh/setup-uv@v6
@@ -88,7 +88,7 @@ jobs:
8888
contents: write # needed for github actions bot to write to repo
8989
steps:
9090
- name: Clone Repository
91-
uses: actions/checkout@v4
91+
uses: actions/checkout@v5
9292
with:
9393
ref: ${{ github.ref }}
9494
fetch-depth: 0

.github/workflows/conventional-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
sparse-checkout: |
3030
.github

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.17.0"
2+
".": "2.18.1"
33
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# CHANGELOG
22

3+
## [2.18.1](https://github.com/supabase/supabase-py/compare/v2.18.0...v2.18.1) (2025-08-12)
4+
5+
6+
### Bug Fixes
7+
8+
* remove deprecated supafunc and gotrue ([#1197](https://github.com/supabase/supabase-py/issues/1197)) ([0edf495](https://github.com/supabase/supabase-py/commit/0edf495c571619ebc645fa34956a9167a98f6dfa))
9+
10+
## [2.18.0](https://github.com/supabase/supabase-py/compare/v2.17.0...v2.18.0) (2025-08-05)
11+
12+
13+
### Features
14+
15+
* **realtime:** bump realtime from 2.6.0 to 2.7.0 ([#1184](https://github.com/supabase/supabase-py/issues/1184)) ([76c57b0](https://github.com/supabase/supabase-py/commit/76c57b0d90fe7775e5b9a44e74034b28368d73cb))
16+
17+
18+
### Bug Fixes
19+
20+
* **storage:** bump storage3 from 0.12.0 to 0.12.1 ([#1191](https://github.com/supabase/supabase-py/issues/1191)) ([64d9d54](https://github.com/supabase/supabase-py/commit/64d9d54d0b9a9df686deab7a545448a64484a489))
21+
322
## [2.17.0](https://github.com/supabase/supabase-py/compare/v2.16.0...v2.17.0) (2025-07-16)
423

524

src/supabase/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "supabase"
3-
version = "2.17.0" # {x-release-please-version}
3+
version = "2.18.1" # {x-release-please-version}
44
description = "Supabase client for Python."
55
authors = [
66
{ name = "Joel Lee", email = "[email protected]" },
@@ -21,9 +21,9 @@ requires-python = ">=3.9"
2121
dependencies = [
2222
"realtime",
2323
"postgrest == 1.1.1",
24-
"gotrue == 2.12.3",
24+
"supabase_auth == 2.12.3",
2525
"storage3 == 0.12.0",
26-
"supafunc == 0.10.1",
26+
"supabase_functions == 0.10.1",
2727
"httpx >=0.26,<0.29",
2828
]
2929

src/supabase/src/supabase/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from gotrue.errors import (
1+
from supabase_auth.errors import (
22
AuthApiError,
33
AuthError,
44
AuthImplicitGrantRedirectError,
@@ -12,7 +12,11 @@
1212
from postgrest import APIResponse as PostgrestAPIResponse
1313
from realtime import AuthorizationError, NotConnectedError
1414
from storage3.utils import StorageException
15-
from supafunc.errors import FunctionsError, FunctionsHttpError, FunctionsRelayError
15+
from supabase_functions.errors import (
16+
FunctionsError,
17+
FunctionsHttpError,
18+
FunctionsRelayError,
19+
)
1620

1721
# Async Client
1822
from ._async.auth_client import AsyncSupabaseAuthClient as ASupabaseAuthClient

src/supabase/src/supabase/_async/auth_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from typing import Dict, Optional
22

3-
from gotrue import (
3+
from supabase_auth import (
44
AsyncGoTrueClient,
55
AsyncMemoryStorage,
66
AsyncSupportedStorage,
77
AuthFlowType,
88
)
9-
from gotrue.http_clients import AsyncClient
9+
from supabase_auth.http_clients import AsyncClient
1010

1111

1212
class AsyncSupabaseAuthClient(AsyncGoTrueClient):

src/supabase/src/supabase/_async/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import re
44
from typing import Any, Dict, Optional, Union
55

6-
from gotrue import AsyncMemoryStorage
7-
from gotrue.types import AuthChangeEvent, Session
6+
from supabase_auth import AsyncMemoryStorage
7+
from supabase_auth.types import AuthChangeEvent, Session
88
from httpx import Timeout
99
from postgrest import (
1010
AsyncPostgrestClient,
@@ -14,7 +14,7 @@
1414
from realtime import AsyncRealtimeChannel, AsyncRealtimeClient, RealtimeChannelOptions
1515
from storage3 import AsyncStorageClient
1616
from storage3.constants import DEFAULT_TIMEOUT as DEFAULT_STORAGE_CLIENT_TIMEOUT
17-
from supafunc import AsyncFunctionsClient
17+
from supabase_functions import AsyncFunctionsClient
1818

1919
from ..lib.client_options import AsyncClientOptions as ClientOptions
2020
from ..lib.client_options import AsyncHttpxClient

src/supabase/src/supabase/_sync/auth_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from typing import Dict, Optional
22

3-
from gotrue import (
3+
from supabase_auth import (
44
AuthFlowType,
55
SyncGoTrueClient,
66
SyncMemoryStorage,
77
SyncSupportedStorage,
88
)
9-
from gotrue.http_clients import SyncClient
9+
from supabase_auth.http_clients import SyncClient
1010

1111

1212
class SyncSupabaseAuthClient(SyncGoTrueClient):

src/supabase/src/supabase/_sync/client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import re
33
from typing import Any, Dict, Optional, Union
44

5-
from gotrue import SyncMemoryStorage
6-
from gotrue.types import AuthChangeEvent, Session
5+
from supabase_auth import SyncMemoryStorage
6+
from supabase_auth.types import AuthChangeEvent, Session
77
from httpx import Timeout
88
from postgrest import (
99
SyncPostgrestClient,
@@ -13,7 +13,7 @@
1313
from realtime import RealtimeChannelOptions, SyncRealtimeChannel, SyncRealtimeClient
1414
from storage3 import SyncStorageClient
1515
from storage3.constants import DEFAULT_TIMEOUT as DEFAULT_STORAGE_CLIENT_TIMEOUT
16-
from supafunc import SyncFunctionsClient
16+
from supabase_functions import SyncFunctionsClient
1717

1818
from ..lib.client_options import SyncClientOptions as ClientOptions
1919
from ..lib.client_options import SyncHttpxClient

0 commit comments

Comments
 (0)