chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 111a41c7ca - Show all commits

View File

@@ -29,6 +29,7 @@ steps:
- cd apps/coordinator
- python -m venv venv
- . venv/bin/activate
- pip install --no-cache-dir --upgrade "pip>=25.3"
- pip install --no-cache-dir -e ".[dev]"
- pip install --no-cache-dir bandit pip-audit
@@ -52,7 +53,7 @@ steps:
image: *python_image
commands:
- *activate_venv
- bandit -r src/ -f screen
- bandit -r src/ -c bandit.yaml -f screen
depends_on:
- install

View File

@@ -21,7 +21,8 @@ class Settings(BaseSettings):
anthropic_api_key: str
# Server Configuration
host: str = "0.0.0.0" # nosec B104 — Container-bound: listen on all interfaces inside Docker
# Container-bound: listen on all interfaces inside Docker
host: str = "0.0.0.0" # nosec B104
port: int = 8000
# Logging

View File

@@ -139,7 +139,8 @@ class TelemetryService:
if self._tracer is None:
# Initialize if not already done
self.initialize()
assert self._tracer is not None # nosec B101 — Type narrowing after None guard
# Type narrowing after None guard
assert self._tracer is not None # nosec B101
return self._tracer
def shutdown(self) -> None: