From 58bf25279158ae8efdb17ebf763e7fefc9d5d5e1 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 28 Aug 2025 18:28:18 +0530 Subject: [PATCH 1/3] Release 1.0.0.b4 - Update CHANGELOG.md with DPoP support feature - Sync pyproject.toml version to 1.0.0.b4 - Prepare for release --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ab94104 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# Change Log + +## [1.0.0.b4](https://github.com/auth0/auth0-api-python/tree/1.0.0.b4) (2025-08-28) +[Full Changelog](https://github.com/auth0/auth0-api-python/compare/1.0.0.b3...1.0.0.b4) + +**Added** +- feat: add DPoP support [\#16](https://github.com/auth0/auth0-api-python/pull/16) ([kishore7snehil](https://github.com/kishore7snehil)) diff --git a/pyproject.toml b/pyproject.toml index 66ea53d..df7411b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "auth0-api-python" -version = "1.0.0.b3" +version = "1.0.0.b4" description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib." authors = ["Auth0 "] license = "MIT" From 4a05711ea0fc360e17ad5b342a6e6e802e8defd0 Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 28 Aug 2025 19:12:16 +0530 Subject: [PATCH 2/3] fix: Update CodeQL workflow for Poetry dependency management - Add Python 3.10 setup before CodeQL initialization - Install Poetry using snok/install-poetry@v1 action - Install dependencies with poetry install --with dev - Remove autobuild step that doesn't work with Poetry projects --- .github/workflows/codeql.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ab639cd..01e1bb5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,15 +38,27 @@ jobs: - name: Checkout uses: actions/checkout@v5 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + + - name: Install Poetry + uses: snok/install-poetry@v1 + with: + version: latest + virtualenvs-create: true + virtualenvs-in-project: true + + - name: Install dependencies + run: poetry install --with dev + - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-and-quality - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: From 9772cd2aeb61aed7aa719f2d12f32716439d043b Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Thu, 28 Aug 2025 19:43:11 +0530 Subject: [PATCH 3/3] ci: replace manual Python setup with CodeQL autobuild in workflow --- .github/workflows/codeql.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 01e1bb5..ab639cd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,27 +38,15 @@ jobs: - name: Checkout uses: actions/checkout@v5 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - version: latest - virtualenvs-create: true - virtualenvs-in-project: true - - - name: Install dependencies - run: poetry install --with dev - - name: Initialize CodeQL uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} queries: +security-and-quality + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v3 with: