From ebe4fdc5b54992212ba581684edb72629117afa0 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 28 Jan 2026 18:44:51 +0800 Subject: [PATCH 1/3] Development on 2.2.57.dev2 --- gns3server/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gns3server/version.py b/gns3server/version.py index b4b765e96..c520f0086 100644 --- a/gns3server/version.py +++ b/gns3server/version.py @@ -23,8 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.2.56.1" -__version_info__ = (2, 2, 56, 0) +__version__ = "2.2.57.dev2" +__version_info__ = (2, 2, 57, 99) if "dev" in __version__: try: From 44d4a426b505b173c4dfad54de891f2086eea7c5 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 11 Feb 2026 16:46:21 +0800 Subject: [PATCH 2/3] Upgrade sentry-sdk and psutil dependencies --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9c322ec53..8743cc7a0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,8 +3,8 @@ aiohttp>=3.13.3,<3.14 aiohttp-cors>=0.8.1,<0.9 aiofiles>=25.1.0,<26.0 Jinja2>=3.1.6,<3.2 -sentry-sdk>=2.50.0,<3 # optional dependency -psutil>=7.2.1 +sentry-sdk>=2.52.0,<3 # optional dependency +psutil>=7.2.2 async-timeout>=5.0.1,<5.1 # this library has effectively been upstreamed into Python 3.11+ distro>=1.9.0 py-cpuinfo>=9.0.0,<10.0 From dd87ccff4d6a080a856a6b873ea72c7fed7a9781 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 11 Feb 2026 17:38:49 +0800 Subject: [PATCH 3/3] Upgrade pytest and jsonschema dependencies --- dev-requirements.txt | 3 ++- requirements.txt | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index ece129f97..49eec2b3e 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,6 +1,7 @@ -rrequirements.txt -pytest==8.4.2 # version 8.4.2 is the last one supporting Python 3.9 +pytest==8.4.2; python_version == '3.9' # version 8.4.2 is the last one supporting Python 3.9 +pytest==9.0.2; python_version >= '3.10' flake8==7.3.0 pytest-timeout==2.4.0 pytest-aiohttp==1.1.0 diff --git a/requirements.txt b/requirements.txt index 8743cc7a0..4a55c7bfa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -jsonschema>=4.25.1,<4.26 # version 4.25.1 is the last to support Python 3.9 +jsonschema==4.25.1; python_version == '3.9' # version 4.25.1 is the last to support Python 3.9 +jsonschema>=4.26.0,<4.27; python_version >= '3.10' aiohttp>=3.13.3,<3.14 aiohttp-cors>=0.8.1,<0.9 aiofiles>=25.1.0,<26.0