Skip to content

Commit

Permalink
Release v2.2.42
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Aug 9, 2023
1 parent cd87ac4 commit 08139eb
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 2.2.42 09/08/2023

* Bundle web-ui v2.2.42
* Handle API version key in VirtualBox 7. Fixes #2266
* Enable system certificate store for SSL connections
* Use DEFAULT_BUFFER_SIZE for md5sum
* Fix version check when installing appliances. Ref https://github.com/GNS3/gns3-gui/issues/3486
* Allow connection to ws console over IPv6. Fixes https://github.com/GNS3/gns3-web-ui/issues/1400
* Support for Python 3.12
* Remove import urllib3 and let sentry_sdk import and patch it. Fixes https://github.com/GNS3/gns3-gui/issues/3498

## 2.2.41 12/07/2023

* Bundle web-ui v2.2.41
Expand Down
2 changes: 1 addition & 1 deletion gns3server/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "https://e27fbedc2e824ceb9f8d8508c5d37507@o19455.ingest.sentry.io/38482"
DSN = "https://226eee142b22cc399d1566b3dd4cbc86@o19455.ingest.sentry.io/38482"
_instance = None

def __init__(self):
Expand Down
1 change: 0 additions & 1 deletion gns3server/static/web-ui/main.1379a5647e8bc6d3e401.js

This file was deleted.

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

__version__ = "2.2.42.dev4"
__version_info__ = (2, 2, 42, 99)
__version__ = "2.2.42"
__version_info__ = (2, 2, 42, 0)

if "dev" in __version__:
try:
Expand Down
7 changes: 6 additions & 1 deletion scripts/update-bundled-web-ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if [ "$CUSTOM_REPO" = false ] ; then
else
cd "$REPO_DIR"

git checkout master
git checkout 2.2
git fetch --tags
git pull

Expand All @@ -96,3 +96,8 @@ yarn ng build --source-map=false --configuration=production --base-href /static/
cp -R $REPO_DIR/dist/* "$GNS3SERVER_DIR/gns3server/static/web-ui/"

cd "$GNS3SERVER_DIR"
git add gns3server/static/web-ui/*
if [[ -n "$TAG" ]]
then
git commit -m "Bundle web-ui ${TAG}"
fi

0 comments on commit 08139eb

Please sign in to comment.