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
9 changes: 9 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.11.0

- Timestamps (`created_at`, `start_time`, `end_time`, audit log, task logs) are now always serialized with an explicit UTC offset. The dashboard displays and filters times in the viewer's local timezone instead of misreading them as local time.
- Fixed a Python 3.14 compatibility issue with the thread executor's daemon threads.
- Updated docs with production config guidance for concurrency controls.
- Updated contributing guide and enabled CI on the `develop` branch.

---

## v0.10.0

Improves connection handling across all three database backends.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fastapi-taskflow"
version = "0.10.0"
version = "0.11.0"
description = "Retries, persistence, and visibility for FastAPI's BackgroundTasks. Production-grade background tasks. No workers, no brokers, drop-in."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading
Loading