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 .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0b14
1.0.0b15
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## [1.0.0b15](https://github.com/auth0/auth0-server-python/tree/1.0.0b15) (2026-09-07)
[Full Changelog](https://github.com/auth0/auth0-server-python/compare/1.0.0b14...1.0.0b15)

⚠️ **Breaking Changes**
- feat!: add Private Key JWT (`private_key_jwt`) client authentication - clients with neither a `client_secret` nor a `client_assertion_signing_key` now raise `ConfigurationError` instead of proceeding as a public client. PAR requests now set `response_type=code` [\#154](https://github.com/auth0/auth0-server-python/pull/154) ([kishore7snehil](https://github.com/kishore7snehil))

**Added**
- feat: passwordless support - adds `ServerClient.passwordless` for Email OTP, SMS OTP, and Email Magic Link embedded flows [\#153](https://github.com/auth0/auth0-server-python/pull/153) ([rmad17](https://github.com/rmad17))
- feat: Private JWT CA support for passwordless - extends passwordless start and verify to use `_apply_client_authentication` so `private_key_jwt` is supported [\#158](https://github.com/auth0/auth0-server-python/pull/158) ([rmad17](https://github.com/rmad17))

**Fixed**
- fix: reject blank organization before actor resolution in session transfer token request [\#150](https://github.com/auth0/auth0-server-python/pull/150) ([kishore7snehil](https://github.com/kishore7snehil))

**Changed**
- docs: add Step-up authentication example [\#161](https://github.com/auth0/auth0-server-python/pull/161) ([kailash-b](https://github.com/kailash-b))
- docs: fix documentation drift in README and examples [\#144](https://github.com/auth0/auth0-server-python/pull/144) ([rmad17](https://github.com/rmad17))

## [1.0.0b14](https://github.com/auth0/auth0-server-python/tree/1.0.0b14) (2026-07-29)
[Full Changelog](https://github.com/auth0/auth0-server-python/compare/1.0.0b13...1.0.0b14)

Expand Down
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-server-python"
version = "1.0.0b14"
version = "1.0.0b15"
description = "Auth0 server-side Python SDK"
readme = "README.md"
authors = ["Auth0 <support@okta.com>"]
Expand Down
Loading