Skip to content

Commit b584e4b

Browse files
authored
Merge branch 'v4.1' into update-docs
2 parents e3939d8 + c820fee commit b584e4b

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
# [4.1.0rc0] - 2026-02-23
6+
7+
## Added
8+
9+
- Add support for multiple backend implementation beside flask such as fastapi and quart (both included).
10+
- Add `app = Dash(backend="flask" | "fastapi" | "quart" | CustomBackendImpl)` parameter to automatically setup
11+
- An existing `Fastapi`, `Quart` or `Flask` instance can also be given as `app = Dash(server=Fastapi())` to automatically setup a dash app on the server.
12+
- Install fastapi dependencies with `pip install dash[fastapi]` or quart with `pip install dash[quart]`, flask is still included by default.
13+
- Custom backend implementation can be added as a subclass of `dash.backends.base_server.BaseDashServer` and response/request adapters.
14+
515
## [4.0.0] - 2026-02-03
616

717
## Added

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0"
1+
__version__ = "4.1.0rc0"

0 commit comments

Comments
 (0)