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
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ 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@v5
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
scan-status: ${{ steps.rl-scan-conclusion.outcome }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/snyk.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}

Expand Down Expand Up @@ -80,6 +80,6 @@ jobs:

- if: ${{ matrix.python-version == '3.10' }}
name: Upload coverage
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # pin@5.5.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # pin@5.5.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
283 changes: 12 additions & 271 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ packages = [

[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.115.11"
httpx = "^0.28.1"
uvicorn = "^0.34.0"
fastapi = ">=0.115.11"
httpx = ">=0.28.1"
auth0-api-python = ">=1.0.0b6"

[tool.poetry.group.dev.dependencies]
Expand All @@ -23,7 +22,8 @@ pytest-cov = "^4.0"
pytest-asyncio = ">=0.20.3,<0.27.0"
pytest-mock = "^3.15.1"
pytest-httpx = "^0.35.0"
twine = "^6.1.0"
twine = "^6.2.0"
uvicorn = ">=0.34.0"

[tool.pytest.ini_options]
addopts = "--cov=fastapi_plugin --cov-report=term-missing:skip-covered --cov-report=xml"
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Core runtime dependencies
fastapi>=0.115.11
uvicorn>=0.34.0
auth0-api-python>=1.0.0b6
authlib>=1.5.2
authlib>=1.6.6
httpx>=0.28.1

# Development and testing dependencies
Expand All @@ -11,3 +10,4 @@ pytest-asyncio>=0.26.0
pytest-cov>=4.0
pytest-httpx>=0.35.0
pytest-mock>=3.15.1
uvicorn>=0.34.0
Loading