From 204be5cc6558876855891524a1e40a4c38fb02d7 Mon Sep 17 00:00:00 2001 From: Aseem Savio Date: Thu, 11 Jan 2024 12:00:04 +0530 Subject: [PATCH] Change log added for 1.4.17 --- CHANGELOG.md | 10 ++++++++++ tenable/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75cf0601b..3f26313d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.17] + +### Fixed +- Vulnerability `CVE-2023-38325` by upgrading the test dependency `requests-pkcs12`. + +### Added +- Support for `include_open_ports` property in Vulnerability Management asset export request. + +[1.4.17]: https://github.com/tenable/pyTenable/compare/1.4.16...1.4.17 + ## [1.4.16] ### Fixed diff --git a/tenable/version.py b/tenable/version.py index e7727c95e..68de324f1 100644 --- a/tenable/version.py +++ b/tenable/version.py @@ -1,2 +1,2 @@ -version = '1.4.16' +version = '1.4.17' version_info = tuple(int(d) for d in version.split("-")[0].split("."))