mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Release v2.2.44
This commit is contained in:
parent
c4cc346864
commit
1177626a53
14
CHANGELOG
14
CHANGELOG
@ -1,5 +1,19 @@
|
|||||||
# Change Log
|
# 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
|
## 2.2.43 19/09/2023
|
||||||
|
|
||||||
* Force English output for VBoxManage. Fixes #2266
|
* Force English output for VBoxManage. Fixes #2266
|
||||||
|
@ -57,7 +57,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
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
|
_instance = None
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
File diff suppressed because one or more lines are too long
@ -23,8 +23,8 @@
|
|||||||
# or negative for a release candidate or beta (after the base version
|
# or negative for a release candidate or beta (after the base version
|
||||||
# number has been incremented)
|
# number has been incremented)
|
||||||
|
|
||||||
__version__ = "2.2.44.dev1"
|
__version__ = "2.2.44"
|
||||||
__version_info__ = (2, 2, 44, 99)
|
__version_info__ = (2, 2, 44, 0)
|
||||||
|
|
||||||
if "dev" in __version__:
|
if "dev" in __version__:
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user