Hello community,
here is the log from the commit of package python-cryptography for
openSUSE:Factory checked in at 2017-11-12 18:00:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cryptography (Old)
and /work/SRC/openSUSE:Factory/.python-cryptography.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-cryptography"
Sun Nov 12 18:00:56 2017 rev:32 rq:540642 version:2.1.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cryptography/python-cryptography.changes
2017-11-09 13:43:59.041347019 +0100
+++
/work/SRC/openSUSE:Factory/.python-cryptography.new/python-cryptography.changes
2017-11-12 18:01:14.719225229 +0100
@@ -1,0 +2,14 @@
+Thu Nov 9 06:06:39 UTC 2017 - [email protected]
+
+- update to version 2.1.3:
+ * Updated Windows, macOS, and manylinux1 wheels to be compiled with
+ OpenSSL 1.1.0g.
+
+-------------------------------------------------------------------
+Fri Nov 3 15:47:03 UTC 2017 - [email protected]
+
+- update to version 2.1.2:
+ * Corrected a bug with the manylinux1 wheels where OpenSSL’s stack
+ was marked executable.
+
+-------------------------------------------------------------------
Old:
----
cryptography-2.1.1.tar.gz
cryptography-2.1.1.tar.gz.asc
cryptography_vectors-2.1.1.tar.gz
cryptography_vectors-2.1.1.tar.gz.asc
New:
----
cryptography-2.1.3.tar.gz
cryptography-2.1.3.tar.gz.asc
cryptography_vectors-2.1.3.tar.gz
cryptography_vectors-2.1.3.tar.gz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-cryptography.spec ++++++
--- /var/tmp/diff_new_pack.8ibu2x/_old 2017-11-12 18:01:16.059176423 +0100
+++ /var/tmp/diff_new_pack.8ibu2x/_new 2017-11-12 18:01:16.059176423 +0100
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-cryptography
-Version: 2.1.1
+Version: 2.1.3
Release: 0
Summary: Python library which exposes cryptographic recipes and
primitives
License: Apache-2.0 OR BSD-3-Clause
++++++ cryptography-2.1.1.tar.gz -> cryptography-2.1.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-2.1.1/CHANGELOG.rst
new/cryptography-2.1.3/CHANGELOG.rst
--- old/cryptography-2.1.1/CHANGELOG.rst 2017-10-12 07:13:58.000000000
+0200
+++ new/cryptography-2.1.3/CHANGELOG.rst 2017-11-02 18:58:48.000000000
+0100
@@ -2,6 +2,22 @@
=========
+.. _v2-1-3:
+
+2.1.3 - 2017-11-02
+~~~~~~~~~~~~~~~~~~
+
+* Updated Windows, macOS, and ``manylinux1`` wheels to be compiled with
+ OpenSSL 1.1.0g.
+
+.. _v2-1-2:
+
+2.1.2 - 2017-10-24
+~~~~~~~~~~~~~~~~~~
+
+* Corrected a bug with the ``manylinux1`` wheels where OpenSSL's stack was
+ marked executable.
+
.. _v2-1-1:
2.1.1 - 2017-10-12
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-2.1.1/PKG-INFO
new/cryptography-2.1.3/PKG-INFO
--- old/cryptography-2.1.1/PKG-INFO 2017-10-12 07:14:46.000000000 +0200
+++ new/cryptography-2.1.3/PKG-INFO 2017-11-02 20:01:23.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: cryptography
-Version: 2.1.1
+Version: 2.1.3
Summary: cryptography is a package which provides cryptographic recipes and
primitives to Python developers.
Home-page: https://github.com/pyca/cryptography
Author: The cryptography developers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/cryptography-2.1.1/src/cryptography/__about__.py
new/cryptography-2.1.3/src/cryptography/__about__.py
--- old/cryptography-2.1.1/src/cryptography/__about__.py 2017-10-12
07:13:58.000000000 +0200
+++ new/cryptography-2.1.3/src/cryptography/__about__.py 2017-11-02
18:58:48.000000000 +0100
@@ -14,7 +14,7 @@
" and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "2.1.1"
+__version__ = "2.1.3"
__author__ = "The cryptography developers"
__email__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-2.1.1/src/cryptography/hazmat/primitives/ciphers/aead.py
new/cryptography-2.1.3/src/cryptography/hazmat/primitives/ciphers/aead.py
--- old/cryptography-2.1.1/src/cryptography/hazmat/primitives/ciphers/aead.py
2017-10-11 14:35:21.000000000 +0200
+++ new/cryptography-2.1.3/src/cryptography/hazmat/primitives/ciphers/aead.py
2017-11-02 18:58:32.000000000 +0100
@@ -108,8 +108,8 @@
def _validate_lengths(self, nonce, data_len):
# For information about computing this, see
# https://tools.ietf.org/html/rfc3610#section-2.1
- l = 15 - len(nonce)
- if 2 ** (8 * l) < data_len:
+ l_val = 15 - len(nonce)
+ if 2 ** (8 * l_val) < data_len:
raise ValueError("Nonce too long for data")
def _check_params(self, nonce, data, associated_data):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-2.1.1/src/cryptography/hazmat/primitives/kdf/kbkdf.py
new/cryptography-2.1.3/src/cryptography/hazmat/primitives/kdf/kbkdf.py
--- old/cryptography-2.1.1/src/cryptography/hazmat/primitives/kdf/kbkdf.py
2017-10-11 14:35:21.000000000 +0200
+++ new/cryptography-2.1.3/src/cryptography/hazmat/primitives/kdf/kbkdf.py
2017-11-02 18:58:32.000000000 +0100
@@ -139,9 +139,9 @@
if self._fixed_data and isinstance(self._fixed_data, bytes):
return self._fixed_data
- l = utils.int_to_bytes(self._length * 8, self._llen)
+ l_val = utils.int_to_bytes(self._length * 8, self._llen)
- return b"".join([self._label, b"\x00", self._context, l])
+ return b"".join([self._label, b"\x00", self._context, l_val])
def verify(self, key_material, expected_key):
if not constant_time.bytes_eq(self.derive(key_material), expected_key):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-2.1.1/src/cryptography/x509/general_name.py
new/cryptography-2.1.3/src/cryptography/x509/general_name.py
--- old/cryptography-2.1.1/src/cryptography/x509/general_name.py
2017-10-11 14:35:21.000000000 +0200
+++ new/cryptography-2.1.3/src/cryptography/x509/general_name.py
2017-11-02 18:58:32.000000000 +0100
@@ -12,7 +12,6 @@
import idna
import six
-
from six.moves import urllib_parse
from cryptography import utils
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-2.1.1/src/cryptography.egg-info/PKG-INFO
new/cryptography-2.1.3/src/cryptography.egg-info/PKG-INFO
--- old/cryptography-2.1.1/src/cryptography.egg-info/PKG-INFO 2017-10-12
07:14:45.000000000 +0200
+++ new/cryptography-2.1.3/src/cryptography.egg-info/PKG-INFO 2017-11-02
20:01:23.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: cryptography
-Version: 2.1.1
+Version: 2.1.3
Summary: cryptography is a package which provides cryptographic recipes and
primitives to Python developers.
Home-page: https://github.com/pyca/cryptography
Author: The cryptography developers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-2.1.1/tests/hazmat/primitives/test_ec.py
new/cryptography-2.1.3/tests/hazmat/primitives/test_ec.py
--- old/cryptography-2.1.1/tests/hazmat/primitives/test_ec.py 2017-10-11
14:35:21.000000000 +0200
+++ new/cryptography-2.1.3/tests/hazmat/primitives/test_ec.py 2017-11-02
18:58:32.000000000 +0100
@@ -7,7 +7,6 @@
import binascii
import itertools
import os
-
from binascii import hexlify
import pytest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/cryptography-2.1.1/tests/hazmat/primitives/test_scrypt.py
new/cryptography-2.1.3/tests/hazmat/primitives/test_scrypt.py
--- old/cryptography-2.1.1/tests/hazmat/primitives/test_scrypt.py
2017-10-11 14:35:21.000000000 +0200
+++ new/cryptography-2.1.3/tests/hazmat/primitives/test_scrypt.py
2017-11-02 18:58:32.000000000 +0100
@@ -5,7 +5,6 @@
from __future__ import absolute_import, division, print_function
import binascii
-
import os
import pytest
++++++ cryptography_vectors-2.1.1.tar.gz -> cryptography_vectors-2.1.3.tar.gz
++++++
/work/SRC/openSUSE:Factory/python-cryptography/cryptography_vectors-2.1.1.tar.gz
/work/SRC/openSUSE:Factory/.python-cryptography.new/cryptography_vectors-2.1.3.tar.gz
differ: char 5, line 1