Skip to content

Commit

Permalink
0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vehemont committed Mar 29, 2023
1 parent 581d9dc commit 773cedd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions HISTORY.md
@@ -1,6 +1,18 @@
Release History
===============

0.7.3 (2023-03-29)
-------------------

**Bugfixes**

- Merged #24. When using a datetime object in parameters like `pubEndDate`, NVDLib will now replace the `+` character used to denote the time zone with `%2B` in the string of parameters, preventing a 404 error and per the NVD API documentation. Normally this is done automatically within requests, but NVDLib passes the parameters as a string rather than a dictionary natively within requests.

**Enhancements**
- Merged #23. Set the optional parameters in `searchCVE` and `searchCPE` to `None` instead of `False`. Helps out with linters and type assignment mismatches.

Big thanks to @ntnunk for submitting the PRs for these changes.

0.7.2 (2023-03-14)
-------------------
**Bugfixes**
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -7,7 +7,7 @@
setup(
name='nvdlib',
packages=find_packages(include=['nvdlib']),
version='0.7.2',
version='0.7.3',
install_requires = ['requests'],
extras_require={
"dev": [
Expand Down

0 comments on commit 773cedd

Please sign in to comment.