diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml deleted file mode 100644 index 6cbc834..0000000 --- a/.github/workflows/snyk.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Snyk - -on: - merge_group: - workflow_dispatch: - pull_request: - types: - - opened - - synchronize - push: - branches: - - main - schedule: - - cron: '30 0 1,15 * *' - -permissions: - contents: read - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} - -jobs: - - check: - - name: Check for Vulnerabilities - runs-on: ubuntu-latest - - steps: - - if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group' - 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. - - - uses: actions/checkout@v6 - with: - ref: ${{ github.event.pull_request.head.sha || github.ref }} - - - uses: snyk/actions/python@9adf32b1121593767fc3c057af55b55db032dc04 # pin@1.0.0 - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} \ No newline at end of file diff --git a/.version b/.version index 0772197..6f2bc5c 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.0.0b8 \ No newline at end of file +1.0.0b9 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 96023bb..f92391c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [1.0.0b9](https://github.com/auth0/auth0-server-python/tree/1.0.0b9) (2026-04-08) +[Full Changelog](https://github.com/auth0/auth0-server-python/compare/1.0.0b8...1.0.0b9) + +**Added** +- feat: add Multiple Custom Domains (MCD) support and fix JWT verification [\#71](https://github.com/auth0/auth0-server-python/pull/71) ([kishore7snehil](https://github.com/kishore7snehil)) + +**Changed** +- chore: bump dependencies and add SCA scan workflow [\#93](https://github.com/auth0/auth0-server-python/pull/93) ([kishore7snehil](https://github.com/kishore7snehil)) + ## [1.0.0b8](https://github.com/auth0/auth0-server-python/tree/1.0.0b8) (2026-02-06) [Full Changelog](https://github.com/auth0/auth0-server-python/compare/1.0.0b7...1.0.0b8) diff --git a/pyproject.toml b/pyproject.toml index 097d379..d659615 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "auth0-server-python" -version = "1.0.0.b8" +version = "1.0.0b9" description = "Auth0 server-side Python SDK" readme = "README.md" authors = ["Auth0 "]