Hello community,
here is the log from the commit of package python3-pyOpenSSL for
openSUSE:Factory checked in at 2015-04-18 10:40:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-pyOpenSSL (Old)
and /work/SRC/openSUSE:Factory/.python3-pyOpenSSL.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-pyOpenSSL"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-pyOpenSSL/python3-pyOpenSSL-doc.changes
2015-01-06 09:07:03.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.python3-pyOpenSSL.new/python3-pyOpenSSL-doc.changes
2015-04-18 10:40:09.000000000 +0200
@@ -1,0 +2,63 @@
+Wed Apr 15 15:38:39 UTC 2015 - [email protected]
+
+- specfile: updated README->README.rst
+
+- update to version 0.15.1:
+ * OpenSSL/SSL.py, OpenSSL/test/test_ssl.py: Fix a regression present
+ in 0.15, where when an error occurs and no errno() is set, a
+ KeyError is raised. This happens, for example, if
+ Connection.shutdown() is called when the underlying transport has
+ gone away.
+
+- changes from version 0.15:
+ * OpenSSL/rand.py, OpenSSL/SSL.py: APIs which previously accepted
+ filenames only as bytes now accept them as either bytes or unicode
+ (and respect sys.getfilesystemencoding()).
+ * OpenSSL/SSL.py: Add Cory Benfield's next-protocol-negotiation
+ (NPN) bindings.
+ * OpenSSL/SSL.py: Add "Connection.recv_into", mirroring the
+ builtin "socket.recv_into". Based on work from Cory Benfield.
+ * OpenSSL/test/test_ssl.py: Add tests for "recv_into".
+ * OpenSSL/crypto.py: Expose "X509StoreContext" for verifying
+ certificates.
+ * OpenSSL/test/test_crypto.py: Add intermediate certificates for
+ * OpenSSL/SSL.py: "Connection.shutdown" now propagates errors from
+ the underlying socket.
+ * OpenSSL/SSL.py: Fixed a regression "Context.check_privatekey"
+ causing it to always succeed - even if it should fail.
+ * OpenSSL/crypto.py: Fixed a regression where calling
+ "load_pkcs7_data" with "FILETYPE_ASN1" would fail with a
+ "NameError".
+ * OpenSSL/SSL.py: Fix a regression in which the first argument of
+ the "verify" callback was incorrectly passed a "Context"
+ instance instead of the "Connection" instance. *
+ OpenSSL/test/test_ssl.py: Add a test for the value passed as the
+ first argument of the "verify" callback.
+ * OpenSSL/crypto.py: Based on work from Alex Gaynor, Andrew
+ Lutomirski, Tobias Oberstein, Laurens Van Houtven, and Hynek
+ Schlawack, add "get_elliptic_curve" and "get_elliptic_curves"
+ to support TLS ECDHE modes.
+ * OpenSSL/SSL.py: Add "Context.set_tmp_ecdh" to configure a TLS
+ context with a particular elliptic curve for ECDHE modes.
+ * OpenSSL/SSL.py: "Connection.send" and "Connection.sendall" now
+ also accept the "buffer" type as data.
+ * OpenSSL/crypto.py: Make "load_pkcs12" backwards compatible with
+ pyOpenSSL 0.13 by making passphrase optional.
+ * OpenSSL/SSL.py: Add "get_finished", "get_peer_finished"
+ methods to "Connection". If you use these methods to implement
+ TLS channel binding (RFC 5929) disable session resumption because
+ triple handshake attacks against TLS.
+ <https://www.ietf.org/mail-archive/web/tls/current/msg11337.html>
+ <https://secure-resumption.com/tlsauth.pdf>
+ * OpenSSL/SSL.py: Add "get_cipher_name", "get_cipher_bits", and
+ "get_cipher_version" to "Connection".
+ * OpenSSL/tsafe.py: Replace the use of "apply" (which has been
+ removed in Python 3) with the equivalent syntax.
+ * OpenSSL/crypto.py: Fix memory leak in _X509_REVOKED_dup.
+ * leakcheck/crypto.py: Add checks for _X509_REVOKED_dup,
+ CRL.add_revoked and CRL.get_revoked.
+ * setup.py: Require cryptography 0.3 to have the ASN1_TIME_free
+ binding.
+ * OpenSSL/crypto.py: Add "get_extensions" method to "X509Req".
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/python3-pyOpenSSL/python3-pyOpenSSL.changes
2015-01-06 09:07:03.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pyOpenSSL.new/python3-pyOpenSSL.changes
2015-04-18 10:40:09.000000000 +0200
@@ -1,0 +2,65 @@
+Wed Apr 15 15:38:39 UTC 2015 - [email protected]
+
+- specfile:
+ * updated README->README.rst
+ * added ChangeLog to %doc
+
+- update to version 0.15.1:
+ * OpenSSL/SSL.py, OpenSSL/test/test_ssl.py: Fix a regression present
+ in 0.15, where when an error occurs and no errno() is set, a
+ KeyError is raised. This happens, for example, if
+ Connection.shutdown() is called when the underlying transport has
+ gone away.
+
+- changes from version 0.15:
+ * OpenSSL/rand.py, OpenSSL/SSL.py: APIs which previously accepted
+ filenames only as bytes now accept them as either bytes or unicode
+ (and respect sys.getfilesystemencoding()).
+ * OpenSSL/SSL.py: Add Cory Benfield's next-protocol-negotiation
+ (NPN) bindings.
+ * OpenSSL/SSL.py: Add "Connection.recv_into", mirroring the
+ builtin "socket.recv_into". Based on work from Cory Benfield.
+ * OpenSSL/test/test_ssl.py: Add tests for "recv_into".
+ * OpenSSL/crypto.py: Expose "X509StoreContext" for verifying
+ certificates.
+ * OpenSSL/test/test_crypto.py: Add intermediate certificates for
+ * OpenSSL/SSL.py: "Connection.shutdown" now propagates errors from
+ the underlying socket.
+ * OpenSSL/SSL.py: Fixed a regression "Context.check_privatekey"
+ causing it to always succeed - even if it should fail.
+ * OpenSSL/crypto.py: Fixed a regression where calling
+ "load_pkcs7_data" with "FILETYPE_ASN1" would fail with a
+ "NameError".
+ * OpenSSL/SSL.py: Fix a regression in which the first argument of
+ the "verify" callback was incorrectly passed a "Context"
+ instance instead of the "Connection" instance. *
+ OpenSSL/test/test_ssl.py: Add a test for the value passed as the
+ first argument of the "verify" callback.
+ * OpenSSL/crypto.py: Based on work from Alex Gaynor, Andrew
+ Lutomirski, Tobias Oberstein, Laurens Van Houtven, and Hynek
+ Schlawack, add "get_elliptic_curve" and "get_elliptic_curves"
+ to support TLS ECDHE modes.
+ * OpenSSL/SSL.py: Add "Context.set_tmp_ecdh" to configure a TLS
+ context with a particular elliptic curve for ECDHE modes.
+ * OpenSSL/SSL.py: "Connection.send" and "Connection.sendall" now
+ also accept the "buffer" type as data.
+ * OpenSSL/crypto.py: Make "load_pkcs12" backwards compatible with
+ pyOpenSSL 0.13 by making passphrase optional.
+ * OpenSSL/SSL.py: Add "get_finished", "get_peer_finished"
+ methods to "Connection". If you use these methods to implement
+ TLS channel binding (RFC 5929) disable session resumption because
+ triple handshake attacks against TLS.
+ <https://www.ietf.org/mail-archive/web/tls/current/msg11337.html>
+ <https://secure-resumption.com/tlsauth.pdf>
+ * OpenSSL/SSL.py: Add "get_cipher_name", "get_cipher_bits", and
+ "get_cipher_version" to "Connection".
+ * OpenSSL/tsafe.py: Replace the use of "apply" (which has been
+ removed in Python 3) with the equivalent syntax.
+ * OpenSSL/crypto.py: Fix memory leak in _X509_REVOKED_dup.
+ * leakcheck/crypto.py: Add checks for _X509_REVOKED_dup,
+ CRL.add_revoked and CRL.get_revoked.
+ * setup.py: Require cryptography 0.3 to have the ASN1_TIME_free
+ binding.
+ * OpenSSL/crypto.py: Add "get_extensions" method to "X509Req".
+
+-------------------------------------------------------------------
Old:
----
pyOpenSSL-0.14.tar.gz
New:
----
pyOpenSSL-0.15.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-pyOpenSSL-doc.spec ++++++
--- /var/tmp/diff_new_pack.WTb8Qj/_old 2015-04-18 10:40:09.000000000 +0200
+++ /var/tmp/diff_new_pack.WTb8Qj/_new 2015-04-18 10:40:09.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python3-pyOpenSSL-doc
#
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: python3-pyOpenSSL-doc
-Version: 0.14
+Version: 0.15.1
Release: 0
Url: https://github.com/pyca/pyopenssl
Summary: Python wrapper module around the OpenSSL library -
Documentation
@@ -52,7 +52,7 @@
%files
%defattr(-,root,root,-)
-%doc LICENSE README
+%doc LICENSE README.rst
%{_docdir}/python3-pyOpenSSL
%{_docdir}/python3-pyOpenSSL/html
++++++ python3-pyOpenSSL.spec ++++++
--- /var/tmp/diff_new_pack.WTb8Qj/_old 2015-04-18 10:40:09.000000000 +0200
+++ /var/tmp/diff_new_pack.WTb8Qj/_new 2015-04-18 10:40:09.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python3-pyOpenSSL
#
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: python3-pyOpenSSL
-Version: 0.14
+Version: 0.15.1
Release: 0
Url: https://github.com/pyca/pyopenssl
Summary: Python wrapper module around the OpenSSL library
@@ -49,7 +49,7 @@
%files
%defattr(-,root,root,-)
-%doc LICENSE README TODO examples
+%doc LICENSE README.rst TODO examples ChangeLog
%{python3_sitelib}/*
%changelog
++++++ pyOpenSSL-0.14.tar.gz -> pyOpenSSL-0.15.1.tar.gz ++++++
++++ 5111 lines of diff (skipped)