Skip to content

Commit 754680d

Browse files
committed
Release v2.2.51
1 parent 05773ce commit 754680d

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 2.2.51 07/11/2024
4+
5+
* Catch error when cannot resize Docker container TTY.
6+
* Do not use "ide" if there is a disk image and no interface type has been explicitly configured.
7+
* Use @locking when sending uBridge commands. Ref https://github.com/GNS3/gns3-gui/issues/3651
8+
* Fix run Docker containers with user namespaces enabled. Fixes #2414
9+
* Python 3.13 support
10+
* Upgrade dependencies
11+
* Fix errors in init.sh. Fixes #2431
12+
313
## 2.2.50 21/10/2024
414

515
* Bundle web-ui v2.2.50

gns3server/crash_report.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class CrashReport:
5757
Report crash to a third party service
5858
"""
5959

60-
DSN = "https://decb06a5d7bda07bef342a41c5c9d6e1@o19455.ingest.us.sentry.io/38482"
60+
DSN = "https://088679fcf3aa35f775356982a80fe37c@o19455.ingest.us.sentry.io/38482"
6161
_instance = None
6262

6363
def __init__(self):

gns3server/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# or negative for a release candidate or beta (after the base version
2424
# number has been incremented)
2525

26-
__version__ = "2.2.51.dev1"
27-
__version_info__ = (2, 2, 51, 99)
26+
__version__ = "2.2.51"
27+
__version_info__ = (2, 2, 51, 0)
2828

2929
if "dev" in __version__:
3030
try:

0 commit comments

Comments
 (0)