Skip to content

Commit 89ec458

Browse files
committed
Release v2.2.43
1 parent 80bc1a7 commit 89ec458

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.43 19/09/2023
4+
5+
* Force English output for VBoxManage. Fixes #2266
6+
* Automatically add vboxnet and DHCP server if not present for VirtualBox GNS3 VM. Ref #2266
7+
* Fix issue with controller config saved before checking current version with previous one
8+
* Prevent X11 socket file to be modified by Docker container
9+
* Use the user data dir to store built-in appliances
10+
* Catch ConnectionResetError exception when client disconnects
11+
* Upgrade to PyQt 5.15.9 and pywin32
12+
313
## 2.2.42 09/08/2023
414

515
* Bundle web-ui v2.2.42

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://226eee142b22cc399d1566b3dd4cbc86@o19455.ingest.sentry.io/38482"
60+
DSN = "https://8dcaf668c2f31af6028fb4130bf2f58e@o19455.ingest.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.43.dev1"
27-
__version_info__ = (2, 2, 43, 99)
26+
__version__ = "2.2.43"
27+
__version_info__ = (2, 2, 43, 0)
2828

2929
if "dev" in __version__:
3030
try:

0 commit comments

Comments
 (0)