1) Upgrade urllib3 to 2.5.*

2) Fixed one issue for #3319
pull/8879/head
Akshay Joshi 2025-06-23 15:55:26 +05:30
parent 77fa10304b
commit 3e9169b282
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ sqlparse==0.*
sshtunnel==0.*
typer[all]==0.16.*
urllib3==1.26.*; python_version <= '3.9'
urllib3==2.4.*; python_version > '3.9'
urllib3==2.5.*; python_version > '3.9'
user-agents==2.2.0
Werkzeug==3.1.*
WTForms==3.1.*; python_version <= '3.9'

View File

@ -346,7 +346,7 @@ def get_application_state():
connection_info['open_file_name']):
file_path = get_complete_file_path(
connection_info['open_file_name'])
file_deleted = False if os.path.exists(file_path) else True
file_deleted = False if file_path else True
connection_info['file_deleted'] = file_deleted
if (not file_deleted and connection_info['is_editor_dirty'] and