Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/version_history.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Version History

#### 0.16.0
* Fixed **[Issue 124](https://github.com/Venafi/vcert-python/issues/124)**: Fixed an issue where adding a Certificate Issuing Template to an existing Application failed
* Upgraded cryptography dependency to 40.0.2 to cover a security risk CVE-2023-23931
* Removed orgUnit field from AppDetails, as Venafi as a Service dropped the use of the field
#### 0.15.0
* Fixed **[Issue 100](https://github.com/Venafi/vcert-python/issues/100)**: Updated behavior for 'serviceGenerated' attribute on VaaS
* Fixed **[Issue 101](https://github.com/Venafi/vcert-python/issues/101)**: Added support for the following Subject Alternative Names when creating a policy on VaaS: email, IP, URI
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
version='0.15.0',
url="https://github.com/Venafi/vcert-python",
packages=['vcert', 'vcert.parser', 'vcert.policy'],
install_requires=['requests==2.27.1', 'python-dateutil==2.8.2', 'certvalidator<=0.11.1', 'six==1.16.0',
'cryptography==36.0.1', 'ruamel.yaml==0.17.20', 'pynacl==1.5.0'],
install_requires=['requests==2.31.0', 'python-dateutil==2.8.2', 'certvalidator<=0.11.1', 'six==1.16.0',
'cryptography==40.0.2', 'ruamel.yaml==0.17.31', 'pynacl==1.5.0'],
description='Python client library for Venafi Trust Protection Platform and Venafi Cloud.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion vcert/connection_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ def set_policy(self, zone, policy_spec):
if app_details.cit_alias_id_map:
# Only link cit with Application when cit is not already associated with Application
cit_map = app_details.cit_alias_id_map
cit_id, cit_name = get_cit_data_from_response(cit_data)
cit_id, cit_name = get_cit_data_from_response(resp_cit_data)
cit_map[cit_name] = cit_id
app_req = build_app_update_request(app_details, cit_map)
status, data = self._put(URLS.APP_BY_ID.format(app_details.app_id), app_req)
Expand Down