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
4 changes: 2 additions & 2 deletions components/api_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies = [
"shared-code",
]
optional-dependencies.dev = [
"coverage==7.13.2",
"coverage==7.13.3",
"pydantic==2.12.5", # Needed for importing the data model in the tests from the shared code component
"types-cryptography==3.3.23.2",
"types-ldap3==2.9.13.20251121",
Expand All @@ -37,7 +37,7 @@ optional-dependencies.tools = [
"mypy==1.19.1",
"pip-audit==2.10.0",
"pyproject-fmt==2.12.1",
"ruff==0.14.14",
"ruff==0.15.0",
"troml==0.4.1",
"vulture==2.14",
]
Expand Down
2 changes: 1 addition & 1 deletion components/api_server/src/model/issue_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def create_issue(self, summary: str, description: str = "") -> tuple[str, str]:
try:
response_json = self.__post_json(self.issue_creation_api, {"fields": fields})
except Exception as reason:
error = str(reason) if str(reason) else reason.__class__.__name__
error = str(reason) or reason.__class__.__name__
logger.warning("Creating a new issue at %s failed: %s", self.issue_creation_api, error)
return "", error
return response_json["key"], "" # pragma: no feature-test-cover
Expand Down
2 changes: 1 addition & 1 deletion components/api_server/src/model/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ def _desired_response_time(self, status: str) -> int | None:
return defaults.get(status)
try:
return int(self["desired_response_times"][status])
except (ValueError, TypeError): # The desired response time can be empty, treat any non-integer as None
except ValueError, TypeError: # The desired response time can be empty, treat any non-integer as None
return None
119 changes: 59 additions & 60 deletions components/api_server/uv.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions components/collector/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ classifiers = [
"Programming Language :: Python :: 3.14",
]
dependencies = [
"aiogqlc==5.3.0",
"aiogqlc==5.4.0",
"aiohttp==3.13.3",
"beautifulsoup4==4.14.3",
"defusedxml==0.7.1",
Expand All @@ -20,7 +20,7 @@ dependencies = [
"typing-extensions==4.15.0",
]
optional-dependencies.dev = [
"coverage==7.13.2",
"coverage==7.13.3",
"mongomock==4.3.0",
"pydantic==2.12.5", # Needed for importing the data model in the tests from the shared code component
"types-beautifulsoup4==4.12.0.20250516",
Expand All @@ -34,7 +34,7 @@ optional-dependencies.tools = [
"mypy==1.19.1",
"pip-audit==2.10.0",
"pyproject-fmt==2.12.1",
"ruff==0.14.14",
"ruff==0.15.0",
"troml==0.4.1",
"vulture==2.14",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _parse_entity(self, dependency: Dependency, dependency_index: int, landing_u
# We can only generate an entity landing url if a sha1 is present in the JSON, but unfortunately not all
# dependencies have one, so check for it:
entity_landing_url = f"{landing_url}#l{dependency_index + 1}_{sha1}" if sha1 else ""
key = sha1 if sha1 else sha1_hash(stable_file_path + file_name)
key = sha1 or sha1_hash(stable_file_path + file_name)
return Entity(
key=key,
file_path=file_path,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def _parse_entity(
# We can only generate an entity landing url if a sha1 is present in the XML, but unfortunately not all
# dependencies have one, so check for it:
entity_landing_url = f"{landing_url}#l{dependency_index + 1}_{sha1}" if sha1 else ""
key = sha1 if sha1 else sha1_hash(stable_file_path + file_name)
key = sha1 or sha1_hash(stable_file_path + file_name)
return Entity(
key=key,
file_path=file_path,
Expand Down
127 changes: 63 additions & 64 deletions components/collector/uv.lock

Large diffs are not rendered by default.

2,274 changes: 942 additions & 1,332 deletions components/frontend/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions components/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/x-date-pickers": "^8.26.0",
"@mui/x-date-pickers": "^8.27.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"history": "^5.3.0",
Expand Down Expand Up @@ -38,20 +38,20 @@
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.2",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"browserslist-to-esbuild": "^2.1.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-jest": "^29.12.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jest-axe": "^10.0.0",
"jsdom": "^27.4.0",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
Expand Down
4 changes: 2 additions & 2 deletions components/notifier/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies = [
"shared-code",
]
optional-dependencies.dev = [
"coverage==7.13.2",
"coverage==7.13.3",
"mongomock==4.3.0",
"pydantic==2.12.5", # Needed for importing the data model in the tests from the shared code component
"types-python-dateutil==2.9.0.20260124",
Expand All @@ -28,7 +28,7 @@ optional-dependencies.tools = [
"mypy==1.19.1",
"pip-audit==2.10.0",
"pyproject-fmt==2.12.1",
"ruff==0.14.14",
"ruff==0.15.0",
"troml==0.4.1",
"vulture==2.14",
]
Expand Down
Loading