From d464a1d9e634ca81a2e20990ef77be7314927c50 Mon Sep 17 00:00:00 2001 From: Thibaut Patel Date: Mon, 29 Apr 2024 18:11:28 +0200 Subject: [PATCH 1/4] update changelog --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ea6daf03e..8dd32645b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Nothing unreleased! +## [1.0.506] - 2024-04-30 + +### Added + +- add support for multiline option in TextInput chat settings field - @kevinwmerritt + +### Fixed + +- pasting from microsoft products generates text instead of an image +- do not prevent thread history revalidation - @kevinwmerritt +- display the label instead of the value for menu item - @kevinwmerritt + +### Added + ## [1.0.505] - 2024-04-23 ### Added From 63ceaea71b14e380e9035c161c1e6bc47eeb3e82 Mon Sep 17 00:00:00 2001 From: Thibaut Patel Date: Mon, 29 Apr 2024 18:13:35 +0200 Subject: [PATCH 2/4] bump version --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 35fce738e6..837ebf058f 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chainlit" -version = "1.0.505" +version = "1.0.506" keywords = ['LLM', 'Agents', 'gen ai', 'chat ui', 'chatbot ui', 'openai', 'copilot', 'langchain', 'conversational ai'] description = "Build Conversational AI." authors = ["Chainlit"] From 5af87fecceb5edb40337c00a41acb71fe61ad032 Mon Sep 17 00:00:00 2001 From: Thibaut Patel Date: Tue, 30 Apr 2024 09:36:58 +0200 Subject: [PATCH 3/4] updated changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd32645b4..eca50a57ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ Nothing unreleased! - add support for multiline option in TextInput chat settings field - @kevinwmerritt +### Changed + +- disable gzip middleware to prevent a compression issue on safari + ### Fixed - pasting from microsoft products generates text instead of an image From a8f6ca0988df51dc7f73fdee8d9d14630eeab333 Mon Sep 17 00:00:00 2001 From: Thibaut Patel Date: Tue, 30 Apr 2024 13:14:53 +0200 Subject: [PATCH 4/4] bump literalai version --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 837ebf058f..8bc5f7b178 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -23,7 +23,7 @@ chainlit = 'chainlit.cli:cli' [tool.poetry.dependencies] python = ">=3.8.1,<4.0.0" httpx = ">=0.23.0" -literalai = "0.0.507" +literalai = "0.0.509" dataclasses_json = "^0.5.7" fastapi = "^0.110.1" starlette = "^0.37.2"