Skip to content

Commit

Permalink
Release v3.0.0a3
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Dec 27, 2022
1 parent 36ffe2b commit 830cc10
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

## 3.0.0a3 27/12/2022

* Add web-ui v3.0.0a3
* Add config option to change the server name. Ref #2149
* Option to disable image discovery and do not scan parent directory
* Allow raw images by default. Fixes https://github.com/GNS3/gns3-server/issues/2097
* Fix bug when creating Dynamips router with chassis setting
* Stricter checks to create/update an Ethernet switch and add tests
* Fix schema for removing WICs from Cisco routers. Fixes #3392
* Fix issues with VMnet interface on macOS >= 11.0. Ref #3381
* Use importlib_resources instead of pkg_resources and install built-in appliances in config dir.
* Fix console vnc don't use configured ports in some case. Fixes #2111
* Add missing VMware settings in gns3_server.conf
* Make version PEP 440 compliant
* Support for Python 3.11
* Allow for more dependency versions at patch level
* Replace deprecated distro.linux_distribution() call
* Update gns3.service.systemd
* Fix some issues with HTTP notification streams
* gns3.service.openrc: make openrc script posix compliant
* fix: use exact match to find interface in windows to avoid get wrong interface

## 2.2.35.1 10/11/2022

* Re-release Web-Ui v2.2.35
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://bad2bd9ef9f14c8d9239d6f815ed453f@o19455.ingest.sentry.io/38482"
DSN = "https://45f39fa6ea64493b8966a263049e844c@o19455.ingest.sentry.io/38482"
_instance = None

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

__version__ = "3.0.0.dev6"
__version_info__ = (3, 0, 0, 99)
__version__ = "3.0.0a3"
__version_info__ = (3, 0, 0, -99)

if "dev" in __version__:
try:
Expand Down

0 comments on commit 830cc10

Please sign in to comment.