File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed
Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,19 @@ All notable changes to Chainlit will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7- ## Unreleased
7+ ## [ 2.4.3 ] - 2025-03-23
88
99### Added
1010
1111- Canvas mode for the element side bar if title == ` canvas `
12+ - Allow list for MCP stdio commands
1213- ` key ` parameter to ` ElementSidebar.set_elements ` method
1314
1415### Fixed
1516
1617- Literal AI should now correctly store custom elements props
18+ - Element should correctly load from azure storage
19+ - Plotly elements should now take full width
1720
1821## [ 2.4.2] - 2025-03-19
1922
Original file line number Diff line number Diff line change 117117 sample_rate = 24000
118118
119119[features.mcp]
120- enabled = false
120+ enabled = true
121121
122122[features.mcp.sse]
123123 enabled = true
@@ -239,7 +239,7 @@ class McpStdioFeature(DataClassJsonMixin):
239239
240240@dataclass
241241class McpFeature (DataClassJsonMixin ):
242- enabled : bool = False
242+ enabled : bool = True
243243 sse : McpSseFeature = Field (default_factory = McpSseFeature )
244244 stdio : McpStdioFeature = Field (default_factory = McpStdioFeature )
245245
Original file line number Diff line number Diff line change @@ -1166,7 +1166,7 @@ async def connect_mcp(
11661166 )
11671167 else :
11681168 raise HTTPException (
1169- status_code = 404 ,
1169+ status_code = 400 ,
11701170 detail = "This app does not support MCP." ,
11711171 )
11721172
Original file line number Diff line number Diff line change 55except metadata .PackageNotFoundError :
66 # Case where package metadata is not available, default to a 'non-outdated' version.
77 # Ref: config.py::load_settings()
8- __version__ = "2.4.201 "
8+ __version__ = "2.4.3 "
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " chainlit"
3- version = " 2.4.201 "
3+ version = " 2.4.3 "
44keywords = [
55 ' LLM' ,
66 ' Agents' ,
You can’t perform that action at this time.
0 commit comments