File tree Expand file tree Collapse file tree 5 files changed +33
-5
lines changed Expand file tree Collapse file tree 5 files changed +33
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,33 @@ All notable changes to Chainlit will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
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
+
7
34
## [ 2.5.5] - 2025-04-14
8
35
9
36
### Added
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ This document outlines the steps for maintainers to create a new release of the
17
17
2 . ** Bump the package version** :
18
18
19
19
- Update ` version ` in ` [tool.poetry] ` of ` backend/pyproject.toml ` .
20
+ - Update ` version ` in ` backend/chainlit/version.py ` .
20
21
21
22
3 . ** Update the changelog** :
22
23
Original file line number Diff line number Diff line change 61
61
62
62
# Default config file created if none exists
63
63
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
66
66
67
67
68
68
# List of environment variables to be provided by each user to use the app.
@@ -375,7 +375,7 @@ class ProjectSettings(DataClassJsonMixin):
375
375
allow_origins : List [str ] = Field (default_factory = lambda : ["*" ])
376
376
# Socket.io client transports option
377
377
transports : Optional [List [str ]] = None
378
- enable_telemetry : bool = True
378
+ enable_telemetry : bool = False
379
379
# 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.
380
380
user_env : Optional [List [str ]] = None
381
381
# Path to the local langchain cache database
Original file line number Diff line number Diff line change 5
5
except metadata .PackageNotFoundError :
6
6
# Case where package metadata is not available, default to a 'non-outdated' version.
7
7
# Ref: config.py::load_settings()
8
- __version__ = "2.5.5 "
8
+ __version__ = "2.6.0 "
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " chainlit"
3
- version = " 2.5.5 "
3
+ version = " 2.6.0 "
4
4
keywords = [
5
5
' LLM' ,
6
6
' Agents' ,
You can’t perform that action at this time.
0 commit comments