Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gns3-gui for openSUSE:Factory 
checked in at 2021-05-12 19:32:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gns3-gui (Old)
 and      /work/SRC/openSUSE:Factory/.gns3-gui.new.2988 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gns3-gui"

Wed May 12 19:32:48 2021 rev:9 rq:892530 version:2.2.21

Changes:
--------
--- /work/SRC/openSUSE:Factory/gns3-gui/gns3-gui.changes        2021-04-21 
21:00:30.466306087 +0200
+++ /work/SRC/openSUSE:Factory/.gns3-gui.new.2988/gns3-gui.changes      
2021-05-12 19:33:29.190736980 +0200
@@ -1,0 +2,6 @@
+Mon May 10 21:11:39 UTC 2021 - Martin Hauke <mar...@gmx.de>
+
+- Update to version 2.2.21
+  * Fix issue with empty project variable name. Fixes #3162
+
+-------------------------------------------------------------------

Old:
----
  gns3-gui-2.2.20.tar.gz

New:
----
  gns3-gui-2.2.21.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gns3-gui.spec ++++++
--- /var/tmp/diff_new_pack.pEqR6g/_old  2021-05-12 19:33:29.674735047 +0200
+++ /var/tmp/diff_new_pack.pEqR6g/_new  2021-05-12 19:33:29.678735030 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           gns3-gui
-Version:        2.2.20
+Version:        2.2.21
 Release:        0
 Summary:        GNS3 graphical interface for the GNS3 server
 License:        GPL-3.0-or-later

++++++ gns3-gui-2.2.20.tar.gz -> gns3-gui-2.2.21.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-gui-2.2.20/CHANGELOG 
new/gns3-gui-2.2.21/CHANGELOG
--- old/gns3-gui-2.2.20/CHANGELOG       2021-04-09 04:44:38.000000000 +0200
+++ new/gns3-gui-2.2.21/CHANGELOG       2021-05-10 15:12:47.000000000 +0200
@@ -1,5 +1,10 @@
 # Change Log
 
+## 2.2.21 10/05/2021
+
+* Fix issue with empty project variable name. Fixes #3162
+* Downgrade to PyQt5 5.12.1. Fixes https://github.com/GNS3/gns3-gui/issues/3169
+
 ## 2.2.20 09/04/2021
 
 * Fix project does not load anymore. Fixes #3140
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-gui-2.2.20/gns3/crash_report.py 
new/gns3-gui-2.2.21/gns3/crash_report.py
--- old/gns3-gui-2.2.20/gns3/crash_report.py    2021-04-09 04:44:38.000000000 
+0200
+++ new/gns3-gui-2.2.21/gns3/crash_report.py    2021-05-10 15:12:47.000000000 
+0200
@@ -51,7 +51,7 @@
     Report crash to a third party service
     """
 
-    DSN = 
"https://0f28484e29214863871742a8c4054327:cd002a1193c7458fbde34db6fec80...@o19455.ingest.sentry.io/38506";
+    DSN = 
"https://3b47961d608b46d8b742e723841c0f6a:477db013d40742aa8f0d399c3aceb...@o19455.ingest.sentry.io/38506";
     _instance = None
 
     def __init__(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-gui-2.2.20/gns3/dialogs/edit_project_dialog.py 
new/gns3-gui-2.2.21/gns3/dialogs/edit_project_dialog.py
--- old/gns3-gui-2.2.20/gns3/dialogs/edit_project_dialog.py     2021-04-09 
04:44:38.000000000 +0200
+++ new/gns3-gui-2.2.21/gns3/dialogs/edit_project_dialog.py     2021-05-10 
15:12:47.000000000 +0200
@@ -98,7 +98,7 @@
         variable["value"] = text
 
     def _cleanVariables(self):
-        return [v for v in self._variables if v.get("name", "").strip() != ""]
+        return [v for v in self._variables if v.get("name").strip() != ""]
 
     def done(self, result):
         """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-gui-2.2.20/gns3/version.py 
new/gns3-gui-2.2.21/gns3/version.py
--- old/gns3-gui-2.2.20/gns3/version.py 2021-04-09 04:44:38.000000000 +0200
+++ new/gns3-gui-2.2.21/gns3/version.py 2021-05-10 15:12:47.000000000 +0200
@@ -23,8 +23,8 @@
 # or negative for a release candidate or beta (after the base version
 # number has been incremented)
 
-__version__ = "2.2.20"
-__version_info__ = (2, 2, 20, 0)
+__version__ = "2.2.21"
+__version_info__ = (2, 2, 21, 0)
 
 if "dev" in __version__:
     try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gns3-gui-2.2.20/win-requirements.txt 
new/gns3-gui-2.2.21/win-requirements.txt
--- old/gns3-gui-2.2.20/win-requirements.txt    2021-04-09 04:44:38.000000000 
+0200
+++ new/gns3-gui-2.2.21/win-requirements.txt    2021-05-10 15:12:47.000000000 
+0200
@@ -1,4 +1,4 @@
 -rrequirements.txt
 
-PyQt5==5.12.3 # pyup: ignore
+PyQt5==5.12.1 # pyup: ignore
 pywin32==300 # pyup: ignore

Reply via email to