Hello community,

here is the log from the commit of package python-boto3 for openSUSE:Factory 
checked in at 2017-12-19 10:57:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-boto3 (Old)
 and      /work/SRC/openSUSE:Factory/.python-boto3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-boto3"

Tue Dec 19 10:57:49 2017 rev:10 rq:557784 version:1.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-boto3/python-boto3.changes        
2017-12-14 10:55:17.201976966 +0100
+++ /work/SRC/openSUSE:Factory/.python-boto3.new/python-boto3.changes   
2017-12-19 10:57:52.187139494 +0100
@@ -1,0 +2,21 @@
+Sat Dec 16 23:09:19 UTC 2017 - a...@gmx.de
+
+- update to version 1.5.1:
+  * api-change:appstream: [botocore] Update appstream client to latest
+    version
+
+- changes from version 1.5.0:
+  * bugfix:Filters: Fixes a bug where parameters passed to resource
+    collections could be mutated after the collections were created.
+  * api-change:ses: [botocore] Update ses client to latest version
+  * enhancement:credentials: [botocore] Moved the JSONFileCache from
+    the CLI into botocore so that it can be used without importing
+    from the cli.
+  * feature:botocore dependency: Update dependency strategy to always
+    take a floor on the most recent version of botocore. This means
+    whenever there is a release of botocore, boto3 will release as
+    well to account for the new version of botocore.
+  * api-change:apigateway: [botocore] Update apigateway client to
+    latest version
+
+-------------------------------------------------------------------

Old:
----
  boto3-1.4.8.tar.gz

New:
----
  boto3-1.5.1.tar.gz

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

Other differences:
------------------
++++++ python-boto3.spec ++++++
--- /var/tmp/diff_new_pack.VKmS5w/_old  2017-12-19 10:57:52.643117481 +0100
+++ /var/tmp/diff_new_pack.VKmS5w/_new  2017-12-19 10:57:52.643117481 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-boto3
-Version:        1.4.8
+Version:        1.5.1
 Release:        0
 Url:            https://github.com/boto/boto3
 Summary:        Amazon Web Services Library

++++++ boto3-1.4.8.tar.gz -> boto3-1.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/PKG-INFO new/boto3-1.5.1/PKG-INFO
--- old/boto3-1.4.8/PKG-INFO    2017-11-22 07:41:23.000000000 +0100
+++ new/boto3-1.5.1/PKG-INFO    2017-12-15 22:31:08.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: boto3
-Version: 1.4.8
+Version: 1.5.1
 Summary: The AWS SDK for Python
 Home-page: https://github.com/boto/boto3
 Author: Amazon Web Services
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/boto3/__init__.py 
new/boto3-1.5.1/boto3/__init__.py
--- old/boto3-1.4.8/boto3/__init__.py   2017-11-22 07:41:23.000000000 +0100
+++ new/boto3-1.5.1/boto3/__init__.py   2017-12-15 22:31:08.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 __author__ = 'Amazon Web Services'
-__version__ = '1.4.8'
+__version__ = '1.5.1'
 
 
 # The default Boto3 session; autoloaded when needed.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/boto3/resources/collection.py 
new/boto3-1.5.1/boto3/resources/collection.py
--- old/boto3-1.4.8/boto3/resources/collection.py       2017-11-22 
07:41:23.000000000 +0100
+++ new/boto3-1.5.1/boto3/resources/collection.py       2017-12-15 
22:31:08.000000000 +0100
@@ -49,7 +49,7 @@
         self._py_operation_name = xform_name(
             model.request.operation)
         self._handler = handler
-        self._params = kwargs
+        self._params = copy.deepcopy(kwargs)
 
     def __repr__(self):
         return '{0}({1}, {2})'.format(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/boto3/s3/transfer.py 
new/boto3-1.5.1/boto3/s3/transfer.py
--- old/boto3-1.4.8/boto3/s3/transfer.py        2017-11-22 07:41:23.000000000 
+0100
+++ new/boto3-1.5.1/boto3/s3/transfer.py        2017-12-15 22:31:08.000000000 
+0100
@@ -264,6 +264,10 @@
 
         Variants have also been injected into S3 client, Bucket and Object.
         You don't have to use S3Transfer.upload_file() directly.
+
+        .. seealso::
+            :py:meth:`S3.Client.upload_file`
+            :py:meth:`S3.Client.upload_fileobj`
         """
         if not isinstance(filename, six.string_types):
             raise ValueError('Filename must be a string')
@@ -288,6 +292,10 @@
 
         Variants have also been injected into S3 client, Bucket and Object.
         You don't have to use S3Transfer.download_file() directly.
+
+        .. seealso::
+            :py:meth:`S3.Client.download_file`
+            :py:meth:`S3.Client.download_fileobj`
         """
         if not isinstance(filename, six.string_types):
             raise ValueError('Filename must be a string')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/boto3.egg-info/PKG-INFO 
new/boto3-1.5.1/boto3.egg-info/PKG-INFO
--- old/boto3-1.4.8/boto3.egg-info/PKG-INFO     2017-11-22 07:41:23.000000000 
+0100
+++ new/boto3-1.5.1/boto3.egg-info/PKG-INFO     2017-12-15 22:31:08.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: boto3
-Version: 1.4.8
+Version: 1.5.1
 Summary: The AWS SDK for Python
 Home-page: https://github.com/boto/boto3
 Author: Amazon Web Services
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/boto3.egg-info/requires.txt 
new/boto3-1.5.1/boto3.egg-info/requires.txt
--- old/boto3-1.4.8/boto3.egg-info/requires.txt 2017-11-22 07:41:23.000000000 
+0100
+++ new/boto3-1.5.1/boto3.egg-info/requires.txt 2017-12-15 22:31:08.000000000 
+0100
@@ -1,3 +1,3 @@
-botocore<1.9.0,>=1.8.0
+botocore<1.9.0,>=1.8.15
 jmespath<1.0.0,>=0.7.1
 s3transfer<0.2.0,>=0.1.10
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/setup.cfg new/boto3-1.5.1/setup.cfg
--- old/boto3-1.4.8/setup.cfg   2017-11-22 07:41:23.000000000 +0100
+++ new/boto3-1.5.1/setup.cfg   2017-12-15 22:31:08.000000000 +0100
@@ -3,7 +3,7 @@
 
 [metadata]
 requires-dist = 
-       botocore>=1.8.0,<1.9.0
+       botocore>=1.8.15,<1.9.0
        jmespath>=0.7.1,<1.0.0
        s3transfer>=0.1.10,<0.2.0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/boto3-1.4.8/setup.py new/boto3-1.5.1/setup.py
--- old/boto3-1.4.8/setup.py    2017-11-22 07:41:23.000000000 +0100
+++ new/boto3-1.5.1/setup.py    2017-12-15 22:31:08.000000000 +0100
@@ -14,7 +14,7 @@
 
 
 requires = [
-    'botocore>=1.8.0,<1.9.0',
+    'botocore>=1.8.15,<1.9.0',
     'jmespath>=0.7.1,<1.0.0',
     's3transfer>=0.1.10,<0.2.0'
 ]


Reply via email to