Skip to content

Commit 8302535

Browse files
authored
chore: release (#2044)
1 parent 0fd6456 commit 8302535

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,19 @@ All notable changes to Chainlit will be documented in this file.
44

55
The 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

backend/chainlit/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
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
241241
class 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

backend/chainlit/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

backend/chainlit/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
except 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"

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "chainlit"
3-
version = "2.4.201"
3+
version = "2.4.3"
44
keywords = [
55
'LLM',
66
'Agents',

0 commit comments

Comments
 (0)