mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Release v2.2.8
This commit is contained in:
parent
9032fd2a5c
commit
dadbacd8a4
17
CHANGELOG
17
CHANGELOG
@ -1,5 +1,22 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 2.2.8 07/05/2020
|
||||||
|
|
||||||
|
* Release Web-Ui 2020.2.0-beta.3
|
||||||
|
* Default port set to 80 for server running in the GNS3 VM. Fixes #1737
|
||||||
|
* Make the Web UI the default page. Ref https://github.com/GNS3/gns3-server/issues/1737
|
||||||
|
* Support controller reloading for templates, appliances and projects. Ref #1743
|
||||||
|
* Return exit status 1 if server fails to start. Fixes #1744
|
||||||
|
* Use Environmental Markers to force jsonschema version. Fixes https://github.com/GNS3/gns3-gui/issues/2849 Version 3.2.0 with Python >= 3.8 Version 2.6.0 with Python < 3.8
|
||||||
|
* Use Environmental Markers to force jsonschema version 2.6.0 on Windows/macOS. Ref https://github.com/GNS3/gns3-gui/issues/2849
|
||||||
|
* Implement a minimum interval between cpu_percent() calls. Fixes #1738
|
||||||
|
* Add clipboard support for TigerVnc
|
||||||
|
* Sort snapshots by (created_at, name)
|
||||||
|
* Unprotected access for websocket consoles. Ref https://github.com/GNS3/gns3-gui/issues/2883#issuecomment-580677552
|
||||||
|
* Support for WebSocket consoles
|
||||||
|
* Return array for controller statistics endpoint
|
||||||
|
* Server statistics implementation
|
||||||
|
|
||||||
## 2.2.7 07/04/2020
|
## 2.2.7 07/04/2020
|
||||||
|
|
||||||
* Release 2020.2.0-beta.1
|
* Release 2020.2.0-beta.1
|
||||||
|
@ -58,7 +58,7 @@ class CrashReport:
|
|||||||
Report crash to a third party service
|
Report crash to a third party service
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DSN = "https://3b34198e8fa84f519ed6d6d5354c5cc5:1b0bec61fd654380b597ba4f11452f1f@o19455.ingest.sentry.io/38482"
|
DSN = "https://dbfb677c73304b1286aef33dfbb749c6:93b9a937d4884426a1b15f37536fcd94@o19455.ingest.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.8dev1"
|
__version__ = "2.2.8"
|
||||||
__version_info__ = (2, 2, 8, 99)
|
__version_info__ = (2, 2, 8, 0)
|
||||||
|
|
||||||
if "dev" in __version__:
|
if "dev" in __version__:
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user