Skip to content

Commit 0561aba

Browse files
committed
Release v2.2.47
1 parent 86a78f5 commit 0561aba

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Change Log
22

3+
## 2.2.47 15/05/2024
4+
5+
* Fix update-bundled-web-ui.sh script
6+
* Bundle web-ui v2.2.47
7+
* Change sentry-sdk version
8+
* Upgrade aiohttp, sentry-sdk and truststore
9+
* Upgrade jsonschema and aiohttp
10+
* Drop Python 3.7
11+
* Remove dev requirements for Python 3.6
12+
* Do not run Docker VM tests on Windows
13+
* Do not wait for the server to close when shutting down.
14+
* Fix test create image with not supported characters by filesystem. Fixes #2375
15+
* Allow listing x86_64 IOU images. Fixes #2376
16+
* Upgrade Jinja2 to version 3.1.4. Fixes #2378
17+
* Fix link capture for ATM switch. Fixes https://github.com/GNS3/gns3-gui/issues/3570
18+
* Fix tests after updating error message when busybox is not installed.
19+
* Add more details to error message when busybox is not installed. Fixes https://github.com/GNS3/gns3-gui/issues/3569
20+
* Fix invalid escape sequences
21+
* Add NAT symbols
22+
* Fix cannot stop Docker VM while console connection is still active.
23+
* Upgrade sentry-sdk to version 1.40.6
24+
325
## 2.2.46 26/02/2024
426

527
* Bundle web-ui v2.2.46

gns3server/crash_report.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class CrashReport:
5757
Report crash to a third party service
5858
"""
5959

60-
DSN = "https://535981c5fae1a87b7e8d993590c07c27@o19455.ingest.sentry.io/38482"
60+
DSN = "https://ec32b24c329df619c8b9b1c58cfedcdb@o19455.ingest.us.sentry.io/38482"
6161
_instance = None
6262

6363
def __init__(self):

gns3server/version.py

+2-2
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__ = "2.2.47.dev1"
27-
__version_info__ = (2, 2, 47, 99)
26+
__version__ = "2.2.47"
27+
__version_info__ = (2, 2, 47, 0)
2828

2929
if "dev" in __version__:
3030
try:

0 commit comments

Comments
 (0)