Skip to content

Commit 38f5bc2

Browse files
Merge branch 'master' into feat/mcd-support
# Conflicts: # src/auth0/management/management_client.py
2 parents b6f787c + 05ae030 commit 38f5bc2

126 files changed

Lines changed: 2484 additions & 1891 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docs.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/workflows/sca_scan.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: SCA
2+
on:
3+
push:
4+
branches: ["master"]
5+
pull_request:
6+
branches: ["master"]
7+
jobs:
8+
snyk-cli:
9+
uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main
10+
with:
11+
additional-arguments: "--exclude=README.md,.jfrog --command=./venv/bin/python3"
12+
python-version: "3.11"
13+
pre-scan-commands: |
14+
python3 -m venv venv --upgrade-deps
15+
./venv/bin/pip3 install -r requirements.txt
16+
secrets: inherit

.github/workflows/snyk.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ jobs:
8080

8181
- if: ${{ matrix.python-version == '3.10' }}
8282
name: Upload coverage
83-
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # pin@5.5.1
83+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # pin@6.0.0
8484
with:
8585
token: ${{ secrets.CODECOV_TOKEN }}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,7 @@ docs/build/
6262
.vscode/
6363

6464
# OS-specific files
65-
.DS_Store
65+
.DS_Store
66+
67+
# AI tools
68+
.claude/

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.0
1+
5.2.0

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Change Log
22

3+
## [5.2.0](https://github.com/auth0/auth0-python/tree/5.2.0) (2026-03-30)
4+
[Full Changelog](https://github.com/auth0/auth0-python/compare/5.1.0...5.2.0)
5+
6+
**⚠️ Breaking: Python 3.8 support dropped**
7+
- Python 3.8 reached end-of-life in October 2024. This release requires **Python >=3.9.2**. Users on Python 3.8 should remain on v5.1.0 until they upgrade their Python version. [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil))
8+
9+
**Added**
10+
- feat: Add default domain endpoints, connection key provisioning, tenant SCIM listing; remove MiiCard/Renren providers [\#801](https://github.com/auth0/auth0-python/pull/801) ([fern-api[bot]](https://github.com/apps/fern-api))
11+
- feat: Add client_info support for custom telemetry in Authentication and Management clients [\#802](https://github.com/auth0/auth0-python/pull/802) ([kishore7snehil](https://github.com/kishore7snehil))
12+
- feat: Add SDK logging infrastructure with configurable log levels and header redaction [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api))
13+
14+
**Fixed**
15+
- fix: Pagination page advancement incorrectly skipping pages [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api))
16+
17+
**Changed**
18+
- chore: Update ruff, aiohttp, cryptography, urllib3, codecov-action; replace Snyk with SCA scan [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil))
19+
320
## [5.1.0](https://github.com/auth0/auth0-python/tree/5.1.0) (2026-02-11)
421
[Full Changelog](https://github.com/auth0/auth0-python/compare/5.0.0...5.1.0)
522

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pip install auth0-python
3434
```
3535

3636
**Requirements:**
37-
- Python ≥3.8 (Python 3.7 support has been dropped)
37+
- Python ≥3.9 (Python 3.8 support has been dropped)
3838

3939
## Reference
4040

0 commit comments

Comments
 (0)