Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ jobs:
- name: Upload build artifacts
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.event.inputs.sdk }}-v${{ steps.get_version.outputs.version }}
name: "${{ github.event.inputs.sdk }} v${{ steps.get_version.outputs.version }}"
files: |
packages/${{ github.event.inputs.sdk }}/dist/*.whl
packages/${{ github.event.inputs.sdk }}/dist/*.tar.gz
Expand Down
154 changes: 77 additions & 77 deletions packages/auth0_api_python/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/auth0_api_python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "auth0-api-python"
version = "1.0.0.b1"
version = "1.0.0.b2"
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
authors = ["Snehil Kishore snehil.kishore@okta.com"]
authors = ["Auth0 <support@auth0.com>"]
license = "MIT"
readme = "README.md"

Expand Down
362 changes: 181 additions & 181 deletions packages/auth0_fastapi/poetry.lock

Large diffs are not rendered by default.

14 changes: 4 additions & 10 deletions packages/auth0_fastapi/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
[tool.poetry]
name = "auth0-fastapi"
version = "1.0.0.b1"
version = "1.0.0.b2"
description = "Auth0 FastAPI Python SDK"
readme = "README.md"
authors = ["Snehil Kishore <snehil.kishore@okta.com>"]
authors = ["Auth0 <support@auth0.com>"]
license = "MIT"

packages = [
{ include = "auth", from = "src" },
{ include = "errors", from = "src" },
{ include = "server", from = "src" },
{ include = "auth", from = "src" },
{ include = "server", from = "src" },
{ include = "stores", from = "src" },
{ include = "util", from = "src" }
{ include = "auth0_fastapi", from = "src" }
]

[tool.poetry.dependencies]
python = ">=3.9"
auth0-server-python = "1.0.0b1"
auth0-server-python = ">=1.0.0b1"
fastapi = "^0.115.11"
itsdangerous = "^2.2.0"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

from fastapi import Request, Response, HTTPException, status

from stores.cookie_transaction_store import CookieTransactionStore
from stores.stateless_state_store import StatelessStateStore
from auth0_fastapi.stores.cookie_transaction_store import CookieTransactionStore
from auth0_fastapi.stores.stateless_state_store import StatelessStateStore

from config import Auth0Config
from auth0_fastapi.config import Auth0Config

#Imported from auth0-server-python
from auth_server.server_client import ServerClient
from auth_types import (
from auth0_server_python.auth_server.server_client import ServerClient
from auth0_server_python.auth_types import (
StartInteractiveLoginOptions,
LogoutOptions
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from fastapi.responses import JSONResponse

#Imported from auth0-server-python
from error import (
from auth0_server_python.error import (
Auth0Error,
MissingTransactionError,
ApiError,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from typing import Any, Dict, Optional

#Imported from auth0-server-python
from store.abstract import TransactionStore
from auth_types import TransactionData
from auth0_server_python.store.abstract import TransactionStore
from auth0_server_python.auth_types import TransactionData

class CookieTransactionStore(TransactionStore):
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from fastapi import Request, Response

#Imported from auth0-server-python
from store.abstract import StateStore
from auth_types import StateData
from auth0_server_python.store.abstract import StateStore
from auth0_server_python.auth_types import StateData

class StatefulStateStore(StateStore):
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from fastapi import Request, Response

#Imported from auth0-server-python
from store.abstract import StateStore
from auth_types import StateData
from auth0_server_python.store.abstract import StateStore
from auth0_server_python.auth_types import StateData

class StatelessStateStore(StateStore):
"""
Expand Down
397 changes: 206 additions & 191 deletions packages/auth0_fastapi_api/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/auth0_fastapi_api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "auth0-fastapi-api"
version = "1.0.0b1"
version = "1.0.0.b2"
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
authors = ["Snehil Kishore snehil.kishore@okta.com"]
authors = ["Auth0 <support@okta.com>"]
license = "MIT"
readme = "README.md"

Expand All @@ -15,7 +15,7 @@ python = "^3.9"
fastapi = "^0.115.11"
httpx = "^0.28.1"
uvicorn = "^0.34.0"
auth0-api-python = "1.0.0b1"
auth0-api-python = ">=1.0.0b1"

[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
Expand Down
1,379 changes: 0 additions & 1,379 deletions packages/auth0_server_python/poetry.lock

This file was deleted.

11 changes: 3 additions & 8 deletions packages/auth0_server_python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
[tool.poetry]
name = "auth0-server-python"
version = "1.0.0.b1"
version = "1.0.0.b2"
description = "Auth0 server-side Python SDK"
readme = "README.md"
authors = ["Snehil Kishore <snehil.kishore@okta.com>"]
authors = ["Auth0 <support@okta.com>"]
license = "MIT"

packages = [
{ include = "auth_server", from = "src" },
{ include = "auth_types", from = "src" },
{ include = "encryption", from = "src" },
{ include = "error", from = "src" },
{ include = "store", from = "src" },
{ include = "utils", from = "src" }
{ include = "auth0_server_python", from = "src" }
]

[tool.poetry.dependencies]
Expand Down