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: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection.

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
fetch-tags: true
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0b7
1.0.0b8
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [1.0.0b8](https://github.com/auth0/auth0-fastapi/tree/1.0.0b8) (2026-07-08)
[Full Changelog](https://github.com/auth0/auth0-fastapi/compare/1.0.0b7...1.0.0b8)

**Added**
- feat: support upstream IdP session_expiry ceiling (IPSIE SL1) [\#139](https://github.com/auth0/auth0-fastapi/pull/139) ([kishore7snehil](https://github.com/kishore7snehil))

**Changed**
- Updated auth0_server_python version [\#127](https://github.com/auth0/auth0-fastapi/pull/127) ([rmad17](https://github.com/rmad17))

## [1.0.0b7](https://github.com/auth0/auth0-fastapi/tree/1.0.0b7) (2026-04-08)
[Full Changelog](https://github.com/auth0/auth0-fastapi/compare/1.0.0b6...1.0.0b7)

Expand Down
510 changes: 469 additions & 41 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "auth0-fastapi"
version = "1.0.0b7"
version = "1.0.0b8"
description = "Auth0 FastAPI Python SDK"
readme = "README.md"
authors = ["Auth0 <support@auth0.com>"]
Expand Down
Loading