mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Release v2.2.1
This commit is contained in:
parent
89f97902f9
commit
7b8f0c2633
17
CHANGELOG
17
CHANGELOG
@ -1,5 +1,22 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.2.1 01/11/2019
|
||||||
|
|
||||||
|
* Handle builtin entry does not exist when adding node from template.
|
||||||
|
* Upgrade aiohttp to version 3.6.2
|
||||||
|
* Fix issue when linking to more than one NAT node with allowed_interface option enabled. Fixes #1671
|
||||||
|
* Prevent deleting a GNS3 project outside the project directory. Ref #1669
|
||||||
|
* Do not send "console_type" property to computes for all builtin nodes excepting Ethernet switches. Fixes https://github.com/GNS3/gns3-gui/issues/2882
|
||||||
|
* Fix QEMU link detection flaky on last port. Fixes #1666
|
||||||
|
* Use compatible shlex_quote to handle case where Windows needs double quotes around file names, not single quotes. Ref https://github.com/GNS3/gns3-gui/issues/2866
|
||||||
|
* Use 0.0.0.0 by default for server host. Fixes https://github.com/GNS3/gns3-server/issues/1663
|
||||||
|
* Improvement to validate HTTP authentication config. Ref #1662
|
||||||
|
* Use versioned config directory for profiles. Fixes #1664
|
||||||
|
* Enable nested hardware virtualization by default for GNS3 VM running in VirtualBox. Fixes #1377 No error is sent by VBoxManage is this feature is not available, for instance with Intel processors.
|
||||||
|
* Set default host to "localhost". Fixes https://github.com/GNS3/gns3-server/issues/1663
|
||||||
|
* Improve process to get guest IP address from GNS3 VM running in VMware workstation/player. Ref https://github.com/GNS3/gns3-gui/issues/2866
|
||||||
|
* Fix error with console type in Ethernet switch schema. Fixes #1659
|
||||||
|
|
||||||
## 2.2.0 30/09/2019
|
## 2.2.0 30/09/2019
|
||||||
|
|
||||||
* Add debug message for what directory is checked for Qemu binaries. Ref #1655
|
* Add debug message for what directory is checked for Qemu binaries. Ref #1655
|
||||||
|
@ -58,7 +58,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "https://7f7ec6fa8e1344ff9cfe0757efb00eb2:1e0a0b09cdcf4d169b937b7a40dc620c@sentry.io/38482"
|
DSN = "https://dcf650c50d2a4ef5b5274f67aded3138:566ec0a0b75646c2bcb23245457b6aba@sentry.io/38482"
|
||||||
if hasattr(sys, "frozen"):
|
if hasattr(sys, "frozen"):
|
||||||
cacert = get_resource("cacert.pem")
|
cacert = get_resource("cacert.pem")
|
||||||
if cacert is not None and os.path.isfile(cacert):
|
if cacert is not None and os.path.isfile(cacert):
|
||||||
|
@ -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.1dev1"
|
__version__ = "2.2.1"
|
||||||
__version_info__ = (2, 2, 1, 99)
|
__version_info__ = (2, 2, 1, 0)
|
||||||
|
|
||||||
if "dev" in __version__:
|
if "dev" in __version__:
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user