Skip to content

Commit 9b5713d

Browse files
committed
Release v2.2.50
1 parent 6df7dc4 commit 9b5713d

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG

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

3+
## 2.2.50 21/10/2024
4+
5+
* Fix issue when pid file contains invalid data
6+
* Add comment to indicate sentry-sdk is optional. Ref https://github.com/GNS3/gns3-server/issues/2423
7+
* Improve information provided when uploading invalid appliance image. Fixes #3637
8+
* Use "experimental features" option to force listening for HTTP notification streams. Ref #3579
9+
* Fix to allow packet capture on more than 6 links. Fixes #3594
10+
* Support for configuring MAC address in Docker containers
11+
* Add KRDC to pre-configured VNC console commands
12+
313
## 2.2.49 06/08/2024
414

515
* Upgrade jsonschema and sentry-sdk packages

gns3/crash_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CrashReport:
5050
Report crash to a third party service
5151
"""
5252

53-
DSN = "https://4cbe2abf0323ef3136a900d624b12567@o19455.ingest.us.sentry.io/38506"
53+
DSN = "https://2f7ebda845810e764bfd049a40cc09e3@o19455.ingest.us.sentry.io/38506"
5454
_instance = None
5555

5656
def __init__(self):

gns3/version.py

Lines changed: 2 additions & 2 deletions
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.50.dev1"
27-
__version_info__ = (2, 2, 50, 99)
26+
__version__ = "2.2.50"
27+
__version_info__ = (2, 2, 50, 0)
2828

2929
if "dev" in __version__:
3030
try:

0 commit comments

Comments
 (0)