Skip to content

Commit 16c6db6

Browse files
authored
release (#2256)
1 parent b8e6f37 commit 16c6db6

File tree

5 files changed

+33
-5
lines changed

5 files changed

+33
-5
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ 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+
## [2.6.0] - 2025-07-01
8+
9+
### Added
10+
- Add commands to starters
11+
- Collapse command buttons to icons for small screens
12+
- Add timegated custom elements
13+
- Added ADC support for google cloud storage adapter
14+
- Added scope as env variable (`OAUTH_COGNITO_SCOPE`) to Cognito auth provider
15+
- Add MarkdownAlert Style Switcher. Control via `alert_style` in `config.toml`.
16+
- Allow custom s3 endpoint for the official data layer
17+
- Added container prop to dialog portal in Copilot shadow DOM
18+
- Bump dependencies
19+
- Add python 3.13 support
20+
21+
### Fixed
22+
- Fix chat input double-spacing issue
23+
- Resolve python deprecation warning for utc_now() and logger.warn
24+
- Fixed an issue where the portal for the ChatProfiles selector was being rendered outside the Copilot shadow DOM
25+
- Add mime type to element emitter
26+
- Handle float/Decimal conversion for DynamoDB persistence
27+
- Fix cancel button in Chat settings
28+
- Only update thread metadata when not empty
29+
30+
### Breaking
31+
- **LiteralAI** is being sunset and will be removed in the next release. Please migrate to the official data layer instead.
32+
- Telemetry is now opt-in by default and will be removed in the next release.
33+
734
## [2.5.5] - 2025-04-14
835

936
### Added

RELENG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This document outlines the steps for maintainers to create a new release of the
1717
2. **Bump the package version**:
1818

1919
- Update `version` in `[tool.poetry]` of `backend/pyproject.toml`.
20+
- Update `version` in `backend/chainlit/version.py`.
2021

2122
3. **Update the changelog**:
2223

backend/chainlit/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161

6262
# Default config file created if none exists
6363
DEFAULT_CONFIG_STR = f"""[project]
64-
# Whether to enable telemetry (default: true). No personal data is collected.
65-
enable_telemetry = true
64+
# Whether to enable telemetry (default: false). No personal data is collected.
65+
enable_telemetry = false
6666
6767
6868
# List of environment variables to be provided by each user to use the app.
@@ -375,7 +375,7 @@ class ProjectSettings(DataClassJsonMixin):
375375
allow_origins: List[str] = Field(default_factory=lambda: ["*"])
376376
# Socket.io client transports option
377377
transports: Optional[List[str]] = None
378-
enable_telemetry: bool = True
378+
enable_telemetry: bool = False
379379
# List of environment variables to be provided by each user to use the app. If empty, no environment variables will be asked to the user.
380380
user_env: Optional[List[str]] = None
381381
# Path to the local langchain cache database

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.5.5"
8+
__version__ = "2.6.0"

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.5.5"
3+
version = "2.6.0"
44
keywords = [
55
'LLM',
66
'Agents',

0 commit comments

Comments
 (0)