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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project uses **CalVer `YY.M.PP`** (PEP 440 may normalise patch numbers
for the Python wheel — e.g. `26.06.00` → `26.6.0`).

## [26.6.13] - 2026-06-16

### Changed

- **Upgrade pyfly to `v26.06.106`.** Picks up the admin-dashboard fix where the
Overview **Thread Count** gauge rendered the active thread count as a
percentage (e.g. `8%` for 8 threads, clamping anything over 100 to `100%`).
The gauge now shows the raw count. This surfaces on both the API and the
worker management dashboards.

## [26.6.12] - 2026-06-15

### Added
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "flydocs"
# CalVer YY.MM.PP -- bumped per release. Note that PEP 440 normalises
# ``26.05.01`` -> ``26.5.1`` in the built wheel filename.
version = "26.6.12"
version = "26.6.13"
description = "Pure-multimodal Intelligent Document Processing service: structured fields + bounding boxes, validation, authenticity checks, LLM judge, and a business-rule engine. Sync + queue-backed async APIs over fireflyframework-pyfly and -agentic. Part of Firefly OperationOS, platform-agnostic by design."
readme = "README.md"
requires-python = ">=3.13"
Expand All @@ -19,7 +19,7 @@ dependencies = [
# so a fresh ``uv sync`` is enough to boot the full stack. The ``web``
# extra declares starlette + uvicorn, which the worker health server
# imports directly; the floor carries ``pyfly.actuator.install_health_indicators``.
"pyfly[fastapi,web,observability,security,data-relational,postgresql,eda,redis,client,scheduling,cli]>=26.6.105",
"pyfly[fastapi,web,observability,security,data-relational,postgresql,eda,redis,client,scheduling,cli]>=26.6.106",

# GenAI metaframework -- FireflyAgent with multimodal content (BinaryContent/ImageUrl)
# over pydantic-ai. Pulls in the OpenAI / Anthropic / Bedrock providers via pydantic-ai-slim.
Expand Down Expand Up @@ -130,7 +130,7 @@ override-dependencies = [
# tags so a fresh clone, the CI lanes, and the Docker build all resolve them
# straight from GitHub without a sibling path or vendored checkout. Bump the
# pinned tag here to upgrade either framework.
pyfly = { git = "https://github.com/fireflyframework/fireflyframework-pyfly.git", tag = "v26.06.105" }
pyfly = { git = "https://github.com/fireflyframework/fireflyframework-pyfly.git", tag = "v26.06.106" }
fireflyframework-agentic = { git = "https://github.com/fireflyframework/fireflyframework-agentic.git", tag = "v26.05.30" }

[tool.hatch.build.targets.wheel]
Expand Down
2 changes: 1 addition & 1 deletion src/flydocs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
`PromptRegistry`).
"""

__version__ = "26.6.12"
__version__ = "26.6.13"
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading