Hello community,
here is the log from the commit of package python-pywinrm for
openSUSE:Leap:15.2 checked in at 2020-03-15 07:13:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-pywinrm (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-pywinrm.new.3160 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pywinrm"
Sun Mar 15 07:13:26 2020 rev:13 rq:785037 version:0.4.1
Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/python-pywinrm/python-pywinrm.changes
2020-01-30 06:07:25.294431545 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-pywinrm.new.3160/python-pywinrm.changes
2020-03-15 07:14:37.209074217 +0100
@@ -1,0 +2,6 @@
+Fri Feb 28 23:02:50 UTC 2020 - Dirk Mueller <[email protected]>
+
+- update to 0.4.1:
+ * python 3.8
+
+-------------------------------------------------------------------
Old:
----
pywinrm-0.4.0.tar.gz
New:
----
pywinrm-0.4.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pywinrm.spec ++++++
--- /var/tmp/diff_new_pack.0eSutq/_old 2020-03-15 07:14:37.569074406 +0100
+++ /var/tmp/diff_new_pack.0eSutq/_new 2020-03-15 07:14:37.573074407 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-pywinrm
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pywinrm
-Version: 0.4.0
+Version: 0.4.1
Release: 0
Summary: Python library for Windows Remote Management
License: MIT
++++++ pywinrm-0.4.0.tar.gz -> pywinrm-0.4.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pywinrm-0.4.0/CHANGELOG.md
new/pywinrm-0.4.1/CHANGELOG.md
--- old/pywinrm-0.4.0/CHANGELOG.md 2019-11-03 04:57:21.000000000 +0100
+++ new/pywinrm-0.4.1/CHANGELOG.md 2019-11-04 19:03:10.000000000 +0100
@@ -1,5 +1,8 @@
# Changelog
+### Version 0.4.1
+- HOT FIX: Fixing an issue with `requests_kerbose` not imported correctly from
the changes in `0.4.0`.
+
### Version 0.4.0
- Ensure `server_cert_validation=ignore` supersedes ca_trust_path/env overrides
- Added deprecated warnings if CA trusts defined by environment variables are
used.
@@ -8,6 +11,7 @@
- Fix for shell not setting all environment variables.
- Fix session clixml encoding on Python 3
- `Protocol.close_shell(shell_id)` will now close the session(and TCP
connections) to the Windows machine. `close_session` option has been added in
case of leaving the session alone.
+- Add a function to send input to a running process.
### Version 0.3.0
- Added support for message encryption over HTTP when using
NTLM/Kerberos/CredSSP
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pywinrm-0.4.0/setup.py new/pywinrm-0.4.1/setup.py
--- old/pywinrm-0.4.0/setup.py 2019-11-03 04:57:21.000000000 +0100
+++ new/pywinrm-0.4.1/setup.py 2019-11-04 19:03:10.000000000 +0100
@@ -1,6 +1,6 @@
-from setuptools import setup
+from setuptools import setup, find_packages
-__version__ = '0.4.0'
+__version__ = '0.4.1'
project_name = 'pywinrm'
# PyPi supports only reStructuredText, so pandoc should be installed
@@ -21,7 +21,7 @@
author_email='[email protected]',
url='http://github.com/diyan/pywinrm/',
license='MIT license',
- packages=('winrm', 'winrm.tests', 'winrm.vendor.requests_kerberos'),
+ packages=find_packages(),
package_data={'winrm.tests': ['*.ps1']},
install_requires=['xmltodict', 'requests>=2.9.1', 'requests_ntlm>=0.3.0',
'six'],
extras_require={
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pywinrm-0.4.0/winrm/transport.py
new/pywinrm-0.4.1/winrm/transport.py
--- old/pywinrm-0.4.0/winrm/transport.py 2019-11-03 04:57:21.000000000
+0100
+++ new/pywinrm-0.4.1/winrm/transport.py 2019-11-04 19:03:10.000000000
+0100
@@ -23,7 +23,7 @@
HAVE_KERBEROS = False
try:
- from .vendor.requests_kerberos import HTTPKerberosAuth, REQUIRED
+ from winrm.vendor.requests_kerberos import HTTPKerberosAuth, REQUIRED
HAVE_KERBEROS = True
except ImportError: