Hello community,

here is the log from the commit of package python-terminado for 
openSUSE:Factory checked in at 2019-11-24 00:26:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-terminado (Old)
 and      /work/SRC/openSUSE:Factory/.python-terminado.new.26869 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-terminado"

Sun Nov 24 00:26:54 2019 rev:8 rq:749334 version:0.8.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-terminado/python-terminado.changes        
2019-08-13 13:20:44.721426580 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-terminado.new.26869/python-terminado.changes 
    2019-11-24 00:26:56.259206569 +0100
@@ -1,0 +2,6 @@
+Mon Nov 18 16:04:39 UTC 2019 - Todd R <toddrme2...@gmail.com>
+
+- Update to version 0.8.3
+  * Addkwargs to NamedTermManager.new_named_terminal
+
+-------------------------------------------------------------------

Old:
----
  terminado-0.8.2.tar.gz

New:
----
  terminado-0.8.3.tar.gz

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

Other differences:
------------------
++++++ python-terminado.spec ++++++
--- /var/tmp/diff_new_pack.7Yfblt/_old  2019-11-24 00:26:58.263206777 +0100
+++ /var/tmp/diff_new_pack.7Yfblt/_new  2019-11-24 00:26:58.271206778 +0100
@@ -21,7 +21,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-terminado
-Version:        0.8.2
+Version:        0.8.3
 Release:        0
 Summary:        Terminals served to termjs using Tornado websockets
 License:        BSD-2-Clause

++++++ terminado-0.8.2.tar.gz -> terminado-0.8.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.8.2/.travis.yml 
new/terminado-0.8.3/.travis.yml
--- old/terminado-0.8.2/.travis.yml     2019-03-28 18:58:42.404879000 +0100
+++ new/terminado-0.8.3/.travis.yml     2019-11-12 16:14:31.553417000 +0100
@@ -1,3 +1,4 @@
+dist: trusty
 language: python
 python:
   - "3.6"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.8.2/PKG-INFO new/terminado-0.8.3/PKG-INFO
--- old/terminado-0.8.2/PKG-INFO        1970-01-01 01:00:00.000000000 +0100
+++ new/terminado-0.8.3/PKG-INFO        1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: terminado
-Version: 0.8.2
+Version: 0.8.3
 Summary: Terminals served to xterm.js using Tornado websockets
 Home-page: https://github.com/jupyter/terminado
 Author: Jupyter Development Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.8.2/setup.py new/terminado-0.8.3/setup.py
--- old/terminado-0.8.2/setup.py        1970-01-01 01:00:00.000000000 +0100
+++ new/terminado-0.8.3/setup.py        1970-01-01 01:00:00.000000000 +0100
@@ -16,7 +16,7 @@
 {":os_name!='nt'": ['ptyprocess'], ":os_name=='nt'": ['pywinpty>=0.5']}
 
 setup(name='terminado',
-      version='0.8.2',
+      version='0.8.3',
       description='Terminals served to xterm.js using Tornado websockets',
       author='Jupyter Development Team',
       author_email='jupy...@googlegroups.com',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.8.2/terminado/__init__.py 
new/terminado-0.8.3/terminado/__init__.py
--- old/terminado-0.8.2/terminado/__init__.py   2019-03-28 19:02:25.914608700 
+0100
+++ new/terminado-0.8.3/terminado/__init__.py   2019-11-12 16:14:52.487119400 
+0100
@@ -12,4 +12,4 @@
 # Prevent a warning about no attached handlers in Python 2
 logging.getLogger(__name__).addHandler(logging.NullHandler())
 
-__version__ = '0.8.2'
+__version__ = '0.8.3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.8.2/terminado/management.py 
new/terminado-0.8.3/terminado/management.py
--- old/terminado-0.8.2/terminado/management.py 2019-03-28 18:58:43.420910400 
+0100
+++ new/terminado-0.8.3/terminado/management.py 2019-11-12 16:14:31.558788000 
+0100
@@ -314,9 +314,9 @@
             if name not in self.terminals:
                 return name
 
-    def new_named_terminal(self):
+    def new_named_terminal(self, **kwargs):
         name = self._next_available_name()
-        term = self.new_terminal()
+        term = self.new_terminal(**kwargs)
         self.log.info("New terminal with automatic name: %s", name)
         term.term_name = name
         self.terminals[name] = term


Reply via email to