v11.6.0
What's Changed
New Features
- Add ability to remove items from the queue by identifier by @grahamalama in #1029
Dependency updates
Diff of changes to github workflows and pyproject.toml
diff --git a/.github/workflows/build-publish.yaml b/.github/workflows/build-publish.yaml
index 7d703d6..a40f4a1 100644
--- a/.github/workflows/build-publish.yaml
+++ b/.github/workflows/build-publish.yaml
@@ -50,7 +50,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and export to Docker
- uses: docker/build-push-action@v5
+ uses: docker/build-push-action@v6
with:
context: .
load: true
@@ -75,7 +75,7 @@ jobs:
docker rm -f ${{ env.TEST_CONTAINER_NAME }}
- name: Build and push
- uses: docker/build-push-action@v5
+ uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
diff --git a/pyproject.toml b/pyproject.toml
index a9cf10f..0faadba 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,23 +7,23 @@ license = "MPL"
[tool.poetry.dependencies]
python = ">=3.12, <3.13"
-fastapi = "^0.111.0"
-pydantic = {version = "^2.7.4", extras = ["email"]}
+fastapi = "^0.111.1"
+pydantic = {version = "^2.8.2", extras = ["email"]}
uvicorn = {extras = ["standard"], version = "^0.30.1"}
atlassian-python-api = "^3.41.14"
dockerflow = {extras = ["fastapi"], version = "2024.4.2"}
Jinja2 = "^3.1.4"
-sentry-sdk = {extras = ["fastapi"], version = "^2.5.1"}
+sentry-sdk = {extras = ["fastapi"], version = "^2.9.0"}
pydantic-yaml = "^1.3.0"
backoff = "^2.2.1"
statsd = "^4.0.1"
requests = "^2.32.3"
-pydantic-settings = "^2.3.3"
+pydantic-settings = "^2.3.4"
pypandoc = "^1.13"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
-coverage = {extras = ["toml"], version = "^7.5"}
+coverage = {extras = ["toml"], version = "^7.6"}
mypy = "^1.10"
detect-secrets = "^1.5.0"
bandit = "^1.7.9"
@@ -35,7 +35,7 @@ responses = "^0.25.3"
httpx = "^0.27.0"
factory-boy = "^3.3.0"
pytest-factoryboy = "^2.7.0"
-ruff = "^0.4.9"
+ruff = "^0.5.2"
pytest-mock = "^3.14.0"
pytest-asyncio = "^0.23.7"
Full Changelog: v11.5.0...v11.6.0