pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/py-nvdlib



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jan 14 06:43:18 UTC 2025

Modified Files:
        pkgsrc/security/py-nvdlib: Makefile distinfo

Log Message:
py-nvdlib: updated to 0.7.9

0.7.9 (2025-01-13)

**Enhancements**
- Added missing CVSS 3.0 data for `attackVector`, `attackComplexity`, `privilegesRequired`, `userInteraction`, `scope`, `confidentialityImpact`, `integrityImpact`, and `availabilityImpact` as 
reported from https://github.com/vehemont/nvdlib/issues/48
- Added basic CVSS 4.0 data: `v40score`, `v40vector`, and `v40severity` in CVEs.
- Merged https://github.com/vehemont/nvdlib/pull/49 and https://github.com/vehemont/nvdlib/pull/50 to add more type hints and also fixes the MatchString search. Courtesy of @LachJones.
- Increased minimum required Python version to `3.11` or later from Python 3.8.3. This opens up some cooler features and fixed a compatibility issue with `LiteralString` not being available until 
3.11.

0.7.8 (2024-07-11)

**Enhancements**
- Merged https://github.com/vehemont/nvdlib/pull/44
 - Updated delay parameter to a float.
 - Removed verbose in favor of the Python logging module.

 To try out the new logging addition, try the simple logger configuration below. It will create a file named "example_NVDLib.log" and will log NVDLib and Requests actions into the file. Syntax 
errors/HTTP server errors are logging level of "error", URLs requested (similar output to the previous `verbose` parameter) are set to "debug".
 ```
 import logging
 import nvdlib

 logging.basicConfig(filename='example_NVDLib.log', encoding='utf-8', level=logging.DEBUG)
r = nvdlib.searchCVE(keywordSearch="Microsoft")
```


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-nvdlib/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-nvdlib/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/py-nvdlib/Makefile
diff -u pkgsrc/security/py-nvdlib/Makefile:1.3 pkgsrc/security/py-nvdlib/Makefile:1.4
--- pkgsrc/security/py-nvdlib/Makefile:1.3      Mon Nov 11 07:28:55 2024
+++ pkgsrc/security/py-nvdlib/Makefile  Tue Jan 14 06:43:18 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2024/11/11 07:28:55 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2025/01/14 06:43:18 adam Exp $
 
-DISTNAME=      nvdlib-0.7.7
+DISTNAME=      nvdlib-0.7.9
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python www
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=vehemont/}

Index: pkgsrc/security/py-nvdlib/distinfo
diff -u pkgsrc/security/py-nvdlib/distinfo:1.2 pkgsrc/security/py-nvdlib/distinfo:1.3
--- pkgsrc/security/py-nvdlib/distinfo:1.2      Thu Aug 22 09:56:57 2024
+++ pkgsrc/security/py-nvdlib/distinfo  Tue Jan 14 06:43:18 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2024/08/22 09:56:57 adam Exp $
+$NetBSD: distinfo,v 1.3 2025/01/14 06:43:18 adam Exp $
 
-BLAKE2s (nvdlib-0.7.7.tar.gz) = 3e4aece429c90736977dacdfa2ee43ec24cd49582260b12e2c6af7ff4c43cb9e
-SHA512 (nvdlib-0.7.7.tar.gz) = b22a299afaf07cd1bc4ca8870db7876dc1810899ccbda4c2bd79e9eac48ed32368af2ab6b3b38257cfcd7d2f4ebde8a5e79ff8ae7205b20be52de17c6cde8f03
-Size (nvdlib-0.7.7.tar.gz) = 544748 bytes
+BLAKE2s (nvdlib-0.7.9.tar.gz) = 53c549278a27a9208a14cdec2ae3140ca7358a16e7af71c5cd874bc10ceb7e60
+SHA512 (nvdlib-0.7.9.tar.gz) = 76efaafad12ba0307b50ce5b63d040af3706bbf5ab88c8be9e75fc86de42907b551bf9539179669387037da1590a42eb57903ea9317228691e7438d33efe61c4
+Size (nvdlib-0.7.9.tar.gz) = 545706 bytes



Home | Main Index | Thread Index | Old Index