Skip to content

Commit

Permalink
Release v2.2.44
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Nov 6, 2023
1 parent f80f41b commit 5c8abdc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## 2.2.44 06/11/2023

* Bundle web-ui v2.2.44
* Non-blocking checksums computation when server starts. Fixes #2228
* Fix timeout issue when creating Qemu disk image. Fixes https://github.com/GNS3/gns3-server/issues/2313
* Support for web socket console over HTTPS
* Add back script create_cert.sh
* Allow disabling hardware virtualization check
* Fix L2IOU "failed code signing checks" when IOU base file name is >= 63 characters
* Change "ip cef" to "no ip cef" in IOU default configs. Fixes #2298
* Add Qemu IGB network device
* Add Python 3.12 support.
* Fix issue with importlib.resources.files() and Python 3.9

## 2.2.43 19/09/2023

* Force English output for VBoxManage. Fixes #2266
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://8dcaf668c2f31af6028fb4130bf2f58e@o19455.ingest.sentry.io/38482"
DSN = "https://dcbac52ef824b8386b67cc8f07c4de70@o19455.ingest.sentry.io/38482"
_instance = None

def __init__(self):
Expand Down
1 change: 0 additions & 1 deletion gns3server/static/web-ui/main.febf2f1259a67875a3e3.js

This file was deleted.

4 changes: 2 additions & 2 deletions gns3server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)

__version__ = "2.2.44.dev1"
__version_info__ = (2, 2, 44, 99)
__version__ = "2.2.44"
__version_info__ = (2, 2, 44, 0)

if "dev" in __version__:
try:
Expand Down

0 comments on commit 5c8abdc

Please sign in to comment.