blob: db6caddacd669a51f13197914a685de0c41a02e7 [file] [log] [blame]
Hynek Schlawack682443f2015-10-25 16:15:12 +01001Changelog
2=========
3
Hynek Schlawack65e4def2016-03-13 15:07:52 +01004Versions are year-based with a strict backward-compatibility policy.
Hynek Schlawack682443f2015-10-25 16:15:12 +01005The third digit is only for regressions.
6
Hynek Schlawack29add1d2016-10-16 11:20:04 +02007
Hynek Schlawacka723ba22017-07-20 12:22:01 +0200817.3.0 (UNRELEASED)
9-------------------
10
11
12Backward-incompatible changes:
13^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15*none*
16
17
18Deprecations:
19^^^^^^^^^^^^^
20
21*none*
22
23
24Changes:
25^^^^^^^^
26
27*none*
28
29
30----
31
32
Hynek Schlawackdd446622017-07-20 11:39:51 +02003317.2.0 (2017-07-20)
Hynek Schlawacka4212762017-06-30 18:28:08 +020034-------------------
35
36
37Backward-incompatible changes:
38^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39
40*none*
41
42
43Deprecations:
44^^^^^^^^^^^^^
45
Alex Gaynor8a1de8d2017-07-06 22:40:07 -040046- Deprecated ``OpenSSL.rand`` - callers should use ``os.urandom()`` instead.
47 `#658 <https://github.com/pyca/pyopenssl/pull/658>`_
Hynek Schlawacka4212762017-06-30 18:28:08 +020048
49
50Changes:
51^^^^^^^^
52
Hynek Schlawack81021282017-07-20 10:32:37 +020053- Fixed a bug causing ``Context.set_default_verify_paths()`` to not work with cryptography ``manylinux1`` wheels on Python 3.x.
Paul Kehrera92a1a72017-07-19 15:53:23 +020054 `#665 <https://github.com/pyca/pyopenssl/pull/665>`_
Paul Kehrer59d26252017-07-20 10:45:54 +020055- Fixed a crash with (EC)DSA signatures in some cases.
56 `#670 <https://github.com/pyca/pyopenssl/pull/670>`_
Paul Kehrera92a1a72017-07-19 15:53:23 +020057
Hynek Schlawacka4212762017-06-30 18:28:08 +020058
59----
60
61
Hynek Schlawacka46d2342017-06-30 17:33:08 +02006217.1.0 (2017-06-30)
Hynek Schlawack7706e142017-04-20 14:54:05 +020063-------------------
64
65
66Backward-incompatible changes:
67^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
68
Hynek Schlawack941f9032017-06-30 16:20:00 +020069- Removed the deprecated ``OpenSSL.rand.egd()`` function.
Alex Gaynor3ed62732017-05-31 05:03:27 -040070 Applications should prefer ``os.urandom()`` for random number generation.
71 `#630 <https://github.com/pyca/pyopenssl/pull/630>`_
Alex Gaynor173e4ba2017-06-30 08:01:12 -070072- Removed the deprecated default ``digest`` argument to ``OpenSSL.crypto.CRL.export()``.
73 Callers must now always pass an explicit ``digest``.
74 `#652 <https://github.com/pyca/pyopenssl/pull/652>`_
Hynek Schlawack941f9032017-06-30 16:20:00 +020075- Fixed a bug with ``ASN1_TIME`` casting in ``X509.set_notBefore()``,
76 ``X509.set_notAfter()``, ``Revoked.set_rev_date()``, ``Revoked.set_nextUpdate()``,
77 and ``Revoked.set_lastUpdate()``. You must now pass times in the form
Paul Kehrerce98ee62017-06-21 06:59:58 -100078 ``YYYYMMDDhhmmssZ``. ``YYYYMMDDhhmmss+hhmm`` and ``YYYYMMDDhhmmss-hhmm``
79 will no longer work. `#612 <https://github.com/pyca/pyopenssl/pull/612>`_
Hynek Schlawack7706e142017-04-20 14:54:05 +020080
81
82Deprecations:
83^^^^^^^^^^^^^
84
Alex Gaynor10d30832017-06-29 15:31:39 -070085
Hynek Schlawack941f9032017-06-30 16:20:00 +020086- Deprecated the legacy "Type" aliases: ``ContextType``, ``ConnectionType``, ``PKeyType``, ``X509NameType``, ``X509ExtensionType``, ``X509ReqType``, ``X509Type``, ``X509StoreType``, ``CRLType``, ``PKCS7Type``, ``PKCS12Type``, ``NetscapeSPKIType``.
87 The names without the "Type"-suffix should be used instead.
Hynek Schlawack7706e142017-04-20 14:54:05 +020088
89
90Changes:
91^^^^^^^^
92
Hynek Schlawack941f9032017-06-30 16:20:00 +020093- Added ``OpenSSL.crypto.X509.from_cryptography()`` and ``OpenSSL.crypto.X509.to_cryptography()`` for converting X.509 certificate to and from pyca/cryptography objects.
94 `#640 <https://github.com/pyca/pyopenssl/pull/640>`_
95- Added ``OpenSSL.crypto.X509Req.from_cryptography()``, ``OpenSSL.crypto.X509Req.to_cryptography()``, ``OpenSSL.crypto.CRL.from_cryptography()``, and ``OpenSSL.crypto.CRL.to_cryptography()`` for converting X.509 CSRs and CRLs to and from pyca/cryptography objects.
96 `#645 <https://github.com/pyca/pyopenssl/pull/645>`_
Hynek Schlawackd52975c2017-05-13 17:44:27 +020097- Added ``OpenSSL.debug`` that allows to get an overview of used library versions (including linked OpenSSL) and other useful runtime information using ``python -m OpenSSL.debug``.
98 `#620 <https://github.com/pyca/pyopenssl/pull/620>`_
Hynek Schlawacka46d2342017-06-30 17:33:08 +020099- Added a fallback path to ``Context.set_default_verify_paths()`` to accommodate the upcoming release of ``cryptography`` ``manylinux1`` wheels.
Hynek Schlawack941f9032017-06-30 16:20:00 +0200100 `#633 <https://github.com/pyca/pyopenssl/pull/633>`_
Hynek Schlawack7706e142017-04-20 14:54:05 +0200101
102
103----
104
105
Hynek Schlawack79705082017-04-20 13:32:49 +020010617.0.0 (2017-04-20)
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200107-------------------
108
109Backward-incompatible changes:
110^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
111
112*none*
113
114
115Deprecations:
116^^^^^^^^^^^^^
117
118*none*
119
120
121Changes:
122^^^^^^^^
123
Thomas Sileoe15e60a2016-11-22 18:13:30 +0100124- Added ``OpenSSL.X509Store.set_time()`` to set a custom verification time when verifying certificate chains.
125 `#567 <https://github.com/pyca/pyopenssl/pull/567>`_
Cory Benfield496652a2017-01-24 11:42:56 +0000126- Added a collection of functions for working with OCSP stapling.
127 None of these functions make it possible to validate OCSP assertions, only to staple them into the handshake and to retrieve the stapled assertion if provided.
128 Users will need to write their own code to handle OCSP assertions.
Hynek Schlawack941f9032017-06-30 16:20:00 +0200129 We specifically added: ``Context.set_ocsp_server_callback()``, ``Context.set_ocsp_client_callback()``, and ``Connection.request_ocsp()``.
Cory Benfield685483b2017-01-24 14:00:45 +0000130 `#580 <https://github.com/pyca/pyopenssl/pull/580>`_
Cory Benfielde62840e2016-11-28 12:17:08 +0000131- Changed the ``SSL`` module's memory allocation policy to avoid zeroing memory it allocates when unnecessary.
132 This reduces CPU usage and memory allocation time by an amount proportional to the size of the allocation.
133 For applications that process a lot of TLS data or that use very lage allocations this can provide considerable performance improvements.
134 `#578 <https://github.com/pyca/pyopenssl/pull/578>`_
Paul Kehrer6c6bf862016-12-19 06:03:48 -0600135- Automatically set ``SSL_CTX_set_ecdh_auto()`` on ``OpenSSL.SSL.Context``.
136 `#575 <https://github.com/pyca/pyopenssl/pull/575>`_
Greg Bowser36eb2de2017-01-24 11:38:55 -0500137- Fix empty exceptions from ``OpenSSL.crypto.load_privatekey()``.
138 `#581 <https://github.com/pyca/pyopenssl/pull/581>`_
Hynek Schlawack29add1d2016-10-16 11:20:04 +0200139
140
141----
142
143
Hynek Schlawackc3b38e52016-10-15 14:56:14 +020014416.2.0 (2016-10-15)
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800145-------------------
146
147Backward-incompatible changes:
148^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
149
150*none*
151
152
153Deprecations:
154^^^^^^^^^^^^^
155
156*none*
157
158
159Changes:
160^^^^^^^^
161
Alex Gaynor0cc56372016-09-24 11:15:55 -0400162- Fixed compatibility errors with OpenSSL 1.1.0.
Paul Kehrerfe2a0a12016-10-06 12:00:54 +0200163- Fixed an issue that caused failures with subinterpreters and embedded Pythons.
164 `#552 <https://github.com/pyca/pyopenssl/pull/552>`_
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800165
Hynek Schlawackc3b38e52016-10-15 14:56:14 +0200166
Paul Kehrer8e99fef2016-08-26 19:36:46 +0800167----
168
Hynek Schlawack682443f2015-10-25 16:15:12 +0100169
Paul Kehrerd0513ab2016-08-26 16:33:23 +080017016.1.0 (2016-08-26)
Hynek Schlawack156f1742016-03-19 12:37:12 +0100171-------------------
172
173Backward-incompatible changes:
174^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
175
176*none*
177
178
179Deprecations:
180^^^^^^^^^^^^^
181
Alex Gaynor2a522852016-08-31 12:17:55 -0400182- Dropped support for OpenSSL 0.9.8.
Hynek Schlawack156f1742016-03-19 12:37:12 +0100183
184
185Changes:
186^^^^^^^^
187
Hynek Schlawack11e43ad2016-07-03 14:40:20 +0200188- Fix memory leak in ``OpenSSL.crypto.dump_privatekey()`` with ``FILETYPE_TEXT``.
189 `#496 <https://github.com/pyca/pyopenssl/pull/496>`_
Dan Sully44e767a2016-06-04 18:05:27 -0700190- Enable use of CRL (and more) in verify context.
191 `#483 <https://github.com/pyca/pyopenssl/pull/483>`_
Paul Kehrer72d968b2016-07-29 15:31:04 +0800192- ``OpenSSL.crypto.PKey`` can now be constructed from ``cryptography`` objects and also exported as such.
193 `#439 <https://github.com/pyca/pyopenssl/pull/439>`_
Paul Kehrerd0513ab2016-08-26 16:33:23 +0800194- Support newer versions of ``cryptography`` which use opaque structs for OpenSSL 1.1.0 compatibility.
Hynek Schlawack156f1742016-03-19 12:37:12 +0100195
196
197----
198
199
Hynek Schlawackb62041b2016-03-19 10:00:09 +010020016.0.0 (2016-03-19)
Hynek Schlawack682443f2015-10-25 16:15:12 +0100201-------------------
202
203This is the first release under full stewardship of PyCA.
204We have made *many* changes to make local development more pleasing.
205The test suite now passes both on Linux and OS X with OpenSSL 0.9.8, 1.0.1, and 1.0.2.
Hynek Schlawackf6c96af2017-04-20 12:34:58 +0200206It has been moved to `pytest <https://docs.pytest.org/>`_, all CI test runs are part of `tox <https://tox.readthedocs.io/>`_ and the source code has been made fully `flake8 <https://flake8.readthedocs.io/>`_ compliant.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100207
Cory Benfield0820ac22015-10-28 17:39:28 +0900208We hope to have lowered the barrier for contributions significantly but are open to hear about any remaining frustrations.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100209
210
211Backward-incompatible changes:
212^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
213
214- Python 3.2 support has been dropped.
215 It never had significant real world usage and has been dropped by our main dependency ``cryptography``.
216 Affected users should upgrade to Python 3.3 or later.
217
218
219Deprecations:
220^^^^^^^^^^^^^
221
222- The support for EGD has been removed.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100223 The only affected function ``OpenSSL.rand.egd()`` now uses ``os.urandom()`` to seed the internal PRNG instead.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100224 Please see `pyca/cryptography#1636 <https://github.com/pyca/cryptography/pull/1636>`_ for more background information on this decision.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100225 In accordance with our backward compatibility policy ``OpenSSL.rand.egd()`` will be *removed* no sooner than a year from the release of 16.0.0.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100226
Hynek Schlawackc3b38e52016-10-15 14:56:14 +0200227 Please note that you should `use urandom <https://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers/>`_ for all your secure random number needs.
Hynek Schlawack046d3f42016-03-13 08:33:04 +0100228- Python 2.6 support has been deprecated.
229 Our main dependency ``cryptography`` deprecated 2.6 in version 0.9 (2015-05-14) with no time table for actually dropping it.
230 pyOpenSSL will drop Python 2.6 support once ``cryptography`` does.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100231
232
233Changes:
234^^^^^^^^
235
Hynek Schlawackb875d512016-03-16 13:56:33 +0100236- Fixed ``OpenSSL.SSL.Context.set_session_id``, ``OpenSSL.SSL.Connection.renegotiate``, ``OpenSSL.SSL.Connection.renegotiate_pending``, and ``OpenSSL.SSL.Context.load_client_ca``.
Hynek Schlawackb1f3ca82016-02-13 09:10:04 +0100237 They were lacking an implementation since 0.14.
Hynek Schlawackb875d512016-03-16 13:56:33 +0100238 `#422 <https://github.com/pyca/pyopenssl/pull/422>`_
Paul Kehrer8fc6ec02016-03-02 13:20:58 -0600239- Fixed segmentation fault when using keys larger than 4096-bit to sign data.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100240 `#428 <https://github.com/pyca/pyopenssl/pull/428>`_
241- Fixed ``AttributeError`` when ``OpenSSL.SSL.Connection.get_app_data()`` was called before setting any app data.
242 `#304 <https://github.com/pyca/pyopenssl/pull/304>`_
243- Added ``OpenSSL.crypto.dump_publickey()`` to dump ``OpenSSL.crypto.PKey`` objects that represent public keys, and ``OpenSSL.crypto.load_publickey()`` to load such objects from serialized representations.
244 `#382 <https://github.com/pyca/pyopenssl/pull/382>`_
245- Added ``OpenSSL.crypto.dump_crl()`` to dump a certificate revocation list out to a string buffer.
246 `#368 <https://github.com/pyca/pyopenssl/pull/368>`_
Hynek Schlawackea94f2b2016-03-13 16:17:53 +0100247- Added ``OpenSSL.SSL.Connection.get_state_string()`` using the OpenSSL binding ``state_string_long``.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100248 `#358 <https://github.com/pyca/pyopenssl/pull/358>`_
249- Added support for the ``socket.MSG_PEEK`` flag to ``OpenSSL.SSL.Connection.recv()`` and ``OpenSSL.SSL.Connection.recv_into()``.
250 `#294 <https://github.com/pyca/pyopenssl/pull/294>`_
251- Added ``OpenSSL.SSL.Connection.get_protocol_version()`` and ``OpenSSL.SSL.Connection.get_protocol_version_name()``.
252 `#244 <https://github.com/pyca/pyopenssl/pull/244>`_
253- Switched to ``utf8string`` mask by default.
254 OpenSSL formerly defaulted to a ``T61String`` if there were UTF-8 characters present.
255 This was changed to default to ``UTF8String`` in the config around 2005, but the actual code didn't change it until late last year.
Hynek Schlawack682443f2015-10-25 16:15:12 +0100256 This will default us to the setting that actually works.
257 To revert this you can call ``OpenSSL.crypto._lib.ASN1_STRING_set_default_mask_asc(b"default")``.
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100258 `#234 <https://github.com/pyca/pyopenssl/pull/234>`_
Hynek Schlawack682443f2015-10-25 16:15:12 +0100259
260
Hynek Schlawack65e4def2016-03-13 15:07:52 +0100261----
262
Hynek Schlawack682443f2015-10-25 16:15:12 +0100263
264Older Changelog Entries
265-----------------------
266
Hynek Schlawack0cc61542016-01-19 14:09:32 +0100267The changes from before release 16.0.0 are preserved in the `repository <https://github.com/pyca/pyopenssl/blob/master/doc/ChangeLog_old.txt>`_.