Development
Dependency Updates
Dependency update policy for JavaScript and Python packages.
JavaScript packages
The pnpm workspace delays dependency resolution until a release is at least 7 days old:
minimumReleaseAge: 10080pnpm measures this value in minutes. The rule applies when installing or updating direct and transitive npm dependencies in the workspace. If a needed package is younger than 7 days, add name@version to minimumReleaseAgeExclude in pnpm-workspace.yaml.
Upgrade workspace packages with pnpm update --latest -r.
Python packages
The API (api/) and Python SDK (sdks/python/) pin ranges in pyproject.toml and lock with uv. Upgrade each project with uv lock --upgrade and uv sync.