Skip to content

Commit 6155b3a

Browse files
committed
Bump Flet version to 0.10.1
1 parent fd0f27b commit 6155b3a

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Flet changelog
22

3+
## 0.10.1
4+
5+
* Fix Cavas.Text drawing ([#1783](https://github.com/flet-dev/flet/issues/1783))
6+
* Use alternative method to determine user computer's IP ([#1733](https://github.com/flet-dev/flet/issues/1733))
7+
38
## 0.10.0
49

510
* Hosting Flet web apps in FastAPI ([docs](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-fastapi/README.md)).

client/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ packages:
183183
path: "../package"
184184
relative: true
185185
source: path
186-
version: "0.10.0"
186+
version: "0.10.1"
187187
flutter:
188188
dependency: "direct main"
189189
description: flutter

package/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.10.1
2+
3+
* Fix Cavas.Text drawing ([#1783](https://github.com/flet-dev/flet/issues/1783))
4+
* Use alternative method to determine user computer's IP ([#1733](https://github.com/flet-dev/flet/issues/1733))
5+
16
## 0.10.0
27

38
* Hosting Flet web apps in FastAPI ([docs](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-fastapi/README.md)).

package/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flet
22
description: Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
33
homepage: https://flet.dev
44
repository: https://github.com/flet-dev/flet
5-
version: 0.10.0
5+
version: 0.10.1
66

77
# This package supports all platforms listed below.
88
platforms:

sdk/python/packages/flet-fastapi/src/flet_fastapi/flet_app_manager.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import asyncio
22
import logging
33
import shutil
4+
import traceback
45
from datetime import datetime
56
from typing import Optional
67

@@ -82,7 +83,9 @@ async def delete_session(self, session_id: str):
8283
try:
8384
await page._close_async()
8485
except Exception as e:
85-
logger.error(f"Error deleting expired session: {e}")
86+
logger.error(
87+
f"Error deleting expired session: {e} {traceback.format_exc()}"
88+
)
8689

8790
async def store_state(self, state_id: str, state: OAuthState):
8891
logger.info(f"Store oauth state: {state_id}")

0 commit comments

Comments
 (0)