Release v2.2.22

pull/1916/head v2.2.22
grossmj 3 years ago
parent 22eb6f7d8c
commit 10daab21a3

@ -1,5 +1,14 @@
# Change Log
## 2.2.22 10/06/2021
* Fix VMware support on macOS BigSur
* Link style support. Fixes https://github.com/GNS3/gns3-gui/issues/2461
* Release web UI version 2.2.22
* Preserve auto_start/auto_open/auto_close when restoring snapshot
* Fix uBridge errors for cloud nodes not visible in logs. Fixes #1895
* Prevent directory traversal. Fixes #1894
## 2.2.21 10/05/2021
* Release Web-Ui v2.2.21

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://ccd9829f1391432c900aa835e7eb1050:83d10f4d74654e2b8428129a62cf31cf@o19455.ingest.sentry.io/38482"
DSN = "https://022a311c303844b787956ede74383ad6:3013e7e214ad4473aa2cb3ade9eb2d40@o19455.ingest.sentry.io/38482"
_instance = None
def __init__(self):

@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.22dev1"
__version_info__ = (2, 2, 22, 99)
__version__ = "2.2.22"
__version_info__ = (2, 2, 22, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save