What's Changed
* Format Python code with psf/black push by github-actions in https://github.com/0x41424142/qualysdk/pull/226
* migrate to VMDR 3.0 APIs, bugfixes and typo fixes. by jake-lindsay-tfs in https://github.com/0x41424142/qualysdk/pull/227
NOTE: THERE IS A BREAKING CHANGE WITH vmdr.query_kb.
In the 3.0 API, Qualys has added a PATCH_PUBLISHED_DATE field. This field has been added to the dataclass and relevant SQL upload function, but may fail to upload to your DB when you try to upload to a pre-existing KB table. This can be fixed by running the following SQL before uploading the data:
sql
alter table <table_name>
add PATCH_PUBLISHED_DATE datetime
**Full Changelog**: https://github.com/0x41424142/qualysdk/compare/v0.2.5...v0.2.6