#2073·falcon

Roadmap: 4.x

Author: vytas7Created May 22, 2022Updated Sep 14, 2026
Labelsneeds contributorcommunity

Roadmap for 4.x

Themes

ASGI

Frequently requested "missing" features

Docs

  • Recipes: Things like how to deploy in production, how to spawn background tasks, how to make use of ASGI lifecycle events, how to do AuthN/Z, and how to handle the DAL (SQLAlchemy, asyncpg, but perhaps we can also document piccolo, et al.). What else?
  • Recipes: Serverless deployments (see also: https://github.com/falconry/falcon/issues/1552)
  • How to make recipes easier to find? Try to link from reference docs in more places?
  • Update Dash docs for 3.x (won't fix)
  • Recorded talk re: Intro to Falcon? Encourage people to check out doc recipes in "where to go from here" at the end of the talk.

Performance

4.0.0

  • CPython 3.11, 3.12 & 3.13 support
  • Drop 3.5, 3.6 & 3.7
  • Path converter
  • Type annotations
  • Mimeparse reimplementation
  • CHIPS support

4.1.0

  • Static route improvements
  • Revise cythonization process
  • WebSocket sink tuning & fixes

4.2.0

  • Generic App types
  • Improved performance of percent-encoding of URIs
  • Free-threaded wheels for CPython 3.14

4.3.0

  • New OpenAPI-focused req.get_param_* methods
  • Allow to override the default responders via on_request()

4.4.0

  • Log all errors
  • Ability to execute logic after the response is fully streamed

4.5.0

  • Native OpenTelemetry integration (prototype)
  • Revamp benchmarking system
  • Update benchmarks on falconframework.org

4.6.0 and beyond

TBD: Include 1-2 doc improvements, and one "missing feature" such as url_for or basic JWT/OAuth2 affordances that can be expanded upon in future releases. Potentially also include Trio support if decided to do it and is ready.

  • Docs: Additional recipes, make recipes easier to find
  • Features: OpenAPI spec
  • Features: url_for
  • Features: full resp content type negotiation
  • Performance: Basic WSGI perf gate - https://github.com/falconry/falcon/pull/1825
  • Performance: Basic ASGI perf gate
  • Features: Baseline JWT/OAuth2 affordances and recipes