Skip to content

Commit f3b3d75

Browse files
committed
Release v3.0.0a1
1 parent 1d0a173 commit f3b3d75

File tree

3 files changed

+52
-3
lines changed

3 files changed

+52
-3
lines changed

CHANGELOG

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Change Log
22

3+
## 3.0.0a1 04/08/2022
4+
5+
* Set default symbol theme to "Affinity-square-blue"
6+
* Fix creating a custom Ethernet switch template
7+
* Update decorative symbols (for Wizards etc.)
8+
* Use generic symbol names
9+
* Set raw image param when uploading an image from the appliance wizard
10+
* Checks for valid hostname on server side for Dynamips, IOU, Qemu and Docker nodes
11+
* Support compression levels
12+
* Add zstandard compression
13+
* Remove Qemu binary requirement
14+
* Use controller API to list images
15+
* Use new API endpoints to create/resize Qemu disk images.
16+
* Image management dialog
17+
* Drop Python 3.6 support and require Python >= 3.7
18+
* Improvements when connecting and updating computes
19+
* Use current directory when searching for images. Fixes #3198
20+
* Refactor server settings and wizard
21+
* Disable local server and GNS3 VM preferences
22+
* Image uploading to controller and project export
23+
* HTTP client refactoring
24+
* Handle empty compute_id in preferences. Ref #3265
25+
* Remove direct upload to compute
26+
* Send JWT token in query string when connecting to websocket. Ref https://github.com/GNS3/gns3-server/pull/1992
27+
* Remove traceng code
28+
* Option to delete orphaned image files from disk when template is removed. Fixes #3249
29+
* Remove Qemu legacy networking code
30+
* Isolate and unisolate support. Fixes https://github.com/GNS3/gns3-gui/issues/3190
31+
* Support authentication using JWT tokens
32+
* Providing the path to create a project is now deprecated.
33+
* Client to use version 3 of the API.
34+
* Change Qemu disk descriptions. Fixes #3035
35+
* Edit only text mode config files
36+
* Hide config import/export when configFiles attribute is empty
37+
* Qemu disk interfaces must be set to "none" by default. Ref #3035
38+
* Do not allow image to be configured on Qemu VM secondary slave disk if create config disk option is enabled.
39+
* Add explicit option to automatically create or not the config disk. Off by default.
40+
* Auxiliary console support for Qemu. Ref #2873 Improvements for auxiliary console support for Docker and Dynamips.
41+
* Support to reset all console connections. Ref https://github.com/GNS3/gns3-server/issues/1619
42+
* Support to reset links. Fixes https://github.com/GNS3/gns3-server/issues/1620
43+
* Fix bug when recent files cannot be seen in the new project dialog.
44+
* Wait for the controller to be online before allowing actions like creating or opening a project. Fixes #2907
45+
* Show progress dialog immediately when connecting to server. Ref #2907
46+
* QEMU config disk - enable QEMU config import/export
47+
* Add total RAM, CPUs and disk size to servers summary as well as disk usage in percent. Fixes https://github.com/GNS3/gns3-server/issues/1532
48+
* Resource constraints for Docker VMs.
49+
* Support for "usage" for "Cloud" nodes. Fixes https://github.com/GNS3/gns3-gui/issues/2887 Allow "usage" for all builtin nodes (not exposed in Ui).
50+
* Markdown support in project Readme. Fixes #2550 #2289 Allow project README to be edited from "File->Edit project". Fixes #2829
51+
352
## 2.2.33.1 21/06/2022
453

554
* Match GNS3 server version

gns3/crash_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class CrashReport:
5151
Report crash to a third party service
5252
"""
5353

54-
DSN = "https://439b7b27129f4c46971fe7bdc38738de@o19455.ingest.sentry.io/38506"
54+
DSN = "https://c2d4584e0a7b41bb8139956a84967e35@o19455.ingest.sentry.io/38506"
5555
_instance = None
5656

5757
def __init__(self):

gns3/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# or negative for a release candidate or beta (after the base version
2424
# number has been incremented)
2525

26-
__version__ = "3.0.0dev3"
27-
__version_info__ = (3, 0, 0, 99)
26+
__version__ = "3.0.0a1"
27+
__version_info__ = (3, 0, 0, -99)
2828

2929
if "dev" in __version__:
3030
try:

0 commit comments

Comments
 (0)