requirements.txt 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. # Web Framework
  2. # fastapi 0.136.x ships an undocumented `fastar` dep in its [standard]
  3. # extras group (MAL-2026-4750, surfaced by Amazon Inspector). `fastar`
  4. # is a Rust-tar binding package — no plausible reason for a web
  5. # framework to depend on it. Even if `fastar` is benign today, the
  6. # advisory's framing as a namespace-abuse / supply-chain vector is
  7. # valid: anyone controlling the `fastar` PyPI namespace gains code
  8. # execution at install time across every fastapi[standard] install.
  9. # Bambuddy doesn't request [standard], so we don't pull `fastar` in
  10. # practice, but pip-audit flags the package itself and breaks CI.
  11. # Hold to 0.135.x (which has all features we use, including SSE)
  12. # until upstream removes the dep or explains the rationale.
  13. fastapi>=0.109.0,<0.136.0
  14. uvicorn[standard]>=0.27.0
  15. # Database
  16. # 2.0.38 is a hard floor, not a preference: it changed the aiosqlite dialect's
  17. # default pool for file databases from NullPool to AsyncAdaptedQueuePool.
  18. # core/database._create_engine() passes pool_size/max_overflow on the SQLite
  19. # branch, which NullPool rejects — on <=2.0.37 every SQLite install (and the
  20. # test suite, which imports the module-level engine) dies at import with
  21. # "Invalid argument(s) 'pool_size','max_overflow' sent to create_engine()".
  22. sqlalchemy>=2.0.38
  23. aiosqlite>=0.19.0
  24. asyncpg>=0.29.0
  25. greenlet>=3.0.0
  26. # Pydantic
  27. pydantic>=2.0.0
  28. # 2.14.2 patches GHSA-4xgf-cpjx-pc3j (NestedSecretsSettingsSource follows
  29. # symlinks out of secrets_dir). Bambuddy does not use that source — pin
  30. # is precautionary so the audit stays clean.
  31. pydantic-settings>=2.14.2
  32. # Transitive of pydantic-settings, floor-pinned to patch CVE-2026-28684 (dotenv 1.2.1)
  33. python-dotenv>=1.2.2
  34. # Bambu Lab Printer Communication
  35. paho-mqtt>=2.0.0
  36. aioftp>=0.22.0
  37. # Virtual Printer (emulates Bambu printer for slicer uploads)
  38. pyftpdlib>=2.0.0
  39. # Upstream's X.509 / PKCS#7 surface is in our trust path via asyncssh,
  40. # pyOpenSSL, py-vapid, http_ece, pywebpush, so this floor tracks the current
  41. # fix release: 46.x had GHSA-537c-gmf6-5ccf (fixed in 48.0.1), and 49.0.0 has
  42. # PYSEC-2026-3552 (fixed in 50.0.0).
  43. cryptography>=50.0.0
  44. # Transitive of asyncssh / pywebpush, and the gate on the line above: each
  45. # pyOpenSSL release caps `cryptography` to a narrow window (26.3.0 allows
  46. # <50, 26.4.0 allows <51), so a stale pyOpenSSL silently pins cryptography
  47. # below its fix line -- pip cannot upgrade past the cap even when asked.
  48. # Raise this floor in the same commit as any cryptography floor.
  49. pyopenssl>=26.4.0
  50. # SpoolBuddy remote SSH updates (pure-Python SSH client; avoids the
  51. # OpenSSH `ssh` binary which calls getpwuid() and fails in Docker when
  52. # the container UID isn't in /etc/passwd)
  53. asyncssh>=2.18.0
  54. # 3MF Processing (standard zipfile is sufficient for Bambu 3MF files)
  55. defusedxml>=0.7.0 # Safe XML parsing (prevents XXE attacks)
  56. # Excel Export
  57. openpyxl>=3.1.0
  58. # Notifications
  59. pywebpush>=2.0.0
  60. # Utilities
  61. # 0.0.27 → 0.0.31 clears three CVEs in the parser surface that FastAPI
  62. # uses for multipart form bodies (CVE-2026-53538/53539/53540).
  63. python-multipart>=0.0.31
  64. aiofiles>=23.0.0
  65. # QR Code generation
  66. qrcode[pil]>=7.4.0
  67. # PDF generation (spool label printing — #809)
  68. reportlab>=4.0.0
  69. # STL Thumbnail Generation
  70. trimesh>=4.0.0
  71. matplotlib>=3.8.0
  72. fast-simplification>=0.1.0
  73. # trimesh's 3MF loader uses networkx for scene-graph traversal and lxml
  74. # for the model.xml parse. Required by plate_thumbnail.py to render the
  75. # model out of a sliced .gcode.3mf when the BS/Orca CLI didn't embed
  76. # Metadata/plate_N.png. Not strictly transitive — trimesh imports both
  77. # lazily inside the 3MF code path, so the load call fails at runtime
  78. # ("No module named 'networkx'" / "No module named 'lxml'") if absent.
  79. networkx>=3.0
  80. lxml>=5.0
  81. # System monitoring
  82. psutil>=6.0.0
  83. # IANA tz database for Windows. The stdlib ``zoneinfo`` module reads the
  84. # system tz database on Linux/macOS, but Windows has none — and the
  85. # embedded Python in our Windows installer doesn't carry one either, so
  86. # even ``ZoneInfo("UTC")`` raises ``ZoneInfoNotFoundError`` and any
  87. # endpoint that resolves a tz (e.g. /api/local-backup/status) 500s.
  88. # ``tzdata`` is the official PyPI package that fills the gap.
  89. tzdata>=2024.1; sys_platform == "win32"
  90. # Authentication
  91. PyJWT>=2.13.0
  92. passlib[bcrypt]>=1.7.4
  93. ldap3>=2.9.0
  94. pyotp>=2.9.0
  95. # Transitive dep pin: idna<3.15 has CVE-2026-45409 (ReDoS on encode() with
  96. # crafted Unicode). Pulled in by anyio/httpx/requests/yarl; pin the floor
  97. # so we don't regress when a downstream loosens its constraint.
  98. idna>=3.15
  99. # HTTP client (used for OIDC token exchange)
  100. httpx>=0.26.0
  101. # CA bundle. Already a transitive dep of httpx, but services/makerworld.py
  102. # imports it directly to pin the S3 presigned download's urllib opener to the
  103. # same trust store httpx uses — the Windows OS store lacks the Amazon root
  104. # until CryptoAPI lazily caches it (#2562). Declared explicitly so a future
  105. # httpx release that drops certifi can't silently break that import.
  106. certifi>=2024.2.2
  107. # HTTP client with browser TLS-fingerprint impersonation. Used only for
  108. # the bambulab.com firmware-download page in services/firmware_check.py:
  109. # Bambu's Cloudflare WAF gates the page behind a JA3/TLS-fingerprint
  110. # challenge that plain httpx/requests can't pass (#1666). curl_cffi
  111. # replays Chrome's ClientHello bytes so the TLS handshake clears CF;
  112. # the HTTP-layer User-Agent stays honest Bambuddy/1.0 per our compliance
  113. # commitment. Soft dependency — if it fails to import (rare platforms,
  114. # constrained installs), firmware_check degrades gracefully to wiki-only
  115. # version detection and logs a warning at startup.
  116. curl_cffi>=0.7.0
  117. # Transitive pin: urllib3 2.6.3 has CVE-2026-44431 and CVE-2026-44432;
  118. # 2.7.0+ is the fixed release. Direct pin here because none of our
  119. # top-level deps require >=2.7.0 yet, so without this the resolver
  120. # would silently keep installing the vulnerable 2.6.x line.
  121. urllib3>=2.7.0
  122. # Transitive of fastapi. starlette 1.0.0 has PYSEC-2026-161; 1.1.x has
  123. # CVE-2026-54282/54283; 1.3.1 is the fixed release. fastapi's range still
  124. # admits the vulnerable builds, so we pin the floor directly to stop the
  125. # resolver from picking them.
  126. starlette>=1.3.1
  127. # Transitive of pywebpush (unpinned `aiohttp` requirement). pywebpush declares
  128. # no bound in either direction, so without this floor the resolver happily
  129. # installs a vulnerable line: 3.13.5 has CVE-2026-34993 and CVE-2026-47265
  130. # (fixed in 3.14.0), and 3.14.1 has PYSEC-2026-3545/3546/3547 (3.14.3 clears
  131. # all three). Our direct usage in services/external_camera.py (ClientSession,
  132. # ClientTimeout, ClientError, iter_chunked) is unaffected by either bump.
  133. aiohttp>=3.14.3
  134. # Plate Detection (optional - enables build plate empty detection)
  135. opencv-python-headless>=4.8.0
  136. numpy>=1.24.0
  137. # Development
  138. pytest>=9.0.3
  139. pytest-asyncio>=0.23.0
  140. httpx>=0.26.0
  141. # Lint/format is pinned exactly in requirements-dev.txt — that file is the
  142. # source of truth for the version CI enforces. This floor only keeps `ruff`
  143. # importable for anyone who installs the runtime file alone.
  144. ruff>=0.8.0
  145. pillow>=12.2.0