Releases

Autumn release notes and key framework milestones.

See how Autumn evolves from release to release — from core improvements to new capabilities.

v0.1.1
April 17, 2026

Changes in this release

  • Reduced overhead on the HTTP request hot path
  • The dependency container now uses caching more aggressively and performs less repeated work
  • Controller handler execution and the internal runtime pipeline are now faster
  • Routing and middleware selection have been improved on the hot path
  • JSON responses and request body handling are now faster
  • dict and list can now be returned directly from handlers with automatic JSON wrapping
  • Added @serializable for explicit serialization of custom classes
  • Public[T] and Private[T] are now available to separate public and internal fields of a serializable class
  • OpenAPI now describes responses for custom serializable objects more accurately
  • Added in-controller middleware methods: @middleware, @middleware.before, and @middleware.after
v0.1.0
April 14, 2026

Changes in this release

  • Basic routing and controller support
  • Dependency Injection Container
  • Declarative configuration
  • Auto-generated OpenAPI documentation and dependency graph
  • ASGI integration with Uvicorn