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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,6 @@ postgres_data/
*.bak
*.orig
site/

# Git worktrees
.worktrees/
8 changes: 8 additions & 0 deletions pyfly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ pyfly:
host: 0.0.0.0
port: 8500

# pyfly v26.06 runs actuator + admin on a dedicated management port (9090)
# by default. Collapse it onto the application port so /actuator/* and /admin
# stay reachable on the single business port (Spring management.server.port
# parity). Set to -1 to disable, or a distinct port to split them out.
management:
server:
port: 8500

# Observability -- Prometheus metrics + OpenTelemetry tracing.
observability:
enabled: true
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
# Firefly Framework runtime (DI, CQRS, EDA, web, observability, resilience,
# actuator, data-relational, security). Pulled in with the extras we use
# so a fresh ``uv sync`` is enough to boot the full stack.
"pyfly[fastapi,observability,security,data-relational,postgresql,eda,redis,client,scheduling,cli]>=26.5.4",
"pyfly[fastapi,observability,security,data-relational,postgresql,eda,redis,client,scheduling,cli]>=26.6.113",

# GenAI metaframework -- FireflyAgent over pydantic-ai, the binary
# normalisation stack (``[binary]`` -> ``content.binary``) and the
Expand Down Expand Up @@ -158,7 +158,7 @@ override-dependencies = [
# clones / CI resolve them without any sibling path. agentic v26.05.32 adds the
# pgvector adapter + tenant-scoped vector-store layer flycanon's multi-backend
# retrieval depends on.
pyfly = { git = "https://github.com/fireflyframework/fireflyframework-pyfly.git", tag = "v26.05.05" }
pyfly = { git = "https://github.com/fireflyframework/fireflyframework-pyfly.git", tag = "v26.06.113" }
fireflyframework-agentic = { git = "https://github.com/fireflyframework/fireflyframework-agentic.git", tag = "v26.05.32" }

[tool.hatch.build.targets.wheel]
Expand Down
Loading