File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 33 History
44-------
55
6- X.X.X (X-X-X )
6+ 2.0.0 (2024-11-12 )
77++++++++++++++++++
88
99* Breaking changes
1010 - discontinue support for Python 2.7, the minimum supported version is now Python 3.9
1111 - the ``__init__ `` function of ``EdgeGridAuth `` and ``EdgeGridAuthHeaders `` now accepts ``headers_to_sign `` and ``max_body `` as keyword-only arguments
12- - changed signatures of following methods in the ``EdgeGridAuthHeaders `` class: ``make_auth_header ``, ``sign_request `` and ``make_data_to_sign ``
12+ - change signatures of these methods in the ``EdgeGridAuthHeaders `` class: ``make_auth_header ``, ``sign_request `` and ``make_data_to_sign ``
1313
1414* Improvements
1515 - update several dependencies in ``setup.py ``
1616 - start generating files ``requirements.txt `` and ``dev-requirements.txt `` using ``pip-compile ``,
1717 so that they contain the full set of project dependencies
1818
1919* Bug fixes
20- - properly handle file objects in the request body in EdgeGridAuth
20+ - fix handling file objects in the request body for `` EdgeGridAuth ``
2121
22221.3.1 (2022-09-22)
2323++++++++++++++++++
Original file line number Diff line number Diff line change 3636__all__ = ['EdgeGridAuth' , 'EdgeRc' ]
3737
3838__title__ = 'edgegrid-python'
39- __version__ = '1.3.1 '
39+ __version__ = '2.0.0 '
4040__license__ = 'Apache 2.0'
4141__copyright__ = 'Copyright 2024 Akamai Technologies'
Original file line number Diff line number Diff line change 22
33setup (
44 name = 'edgegrid-python' ,
5- version = '1.3.1 ' ,
5+ version = '2.0.0 ' ,
66 description = '{OPEN} client authentication protocol for python-requests' ,
77 url = 'https://github.com/akamai/AkamaiOPEN-edgegrid-python' ,
88 namespace_packages = ['akamai' ],
2727 license = 'Apache 2.0' ,
2828 classifiers = [
2929 'License :: OSI Approved :: Apache Software License' ,
30- 'Programming Language :: Python :: 2.7' ,
3130 'Programming Language :: Python :: 3' ,
3231 ]
3332)
You can’t perform that action at this time.
0 commit comments