Skip to content

Commit eb75bf0

Browse files
new columns
1 parent 2b51112 commit eb75bf0

6 files changed

Lines changed: 392 additions & 146 deletions

File tree

CHANGELOG.md

100644100755
Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,42 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [0.8.0] - 2025-06-29
10+
11+
### Added
12+
13+
- Vulnerabilities report with new columns:
14+
- Severity Number (only in debug mode)
15+
- Severity
16+
- CVSSv2 Base Score (only in debug mode)
17+
- CVSSv2
18+
- CVSSv3 Base Score (only in debug mode)
19+
- CVSSv3
20+
- CVSSv4 Base Score (only in debug mode)
21+
- CVSSv4
22+
- VPR Score (only in debug mode)
23+
- VPR
24+
- EPSS (only in debug mode)
25+
- EPSS %
26+
27+
28+
### Changed
29+
30+
- Progress preview with font color suited to dark and light modes.
31+
- Vulnerabilities report - some columns width changed to save space on the screen.
32+
- requirements update
33+
- from:
34+
- nessus-file-reader>=0.4.3
35+
- PyQt5>=5.15.11
36+
- XlsxWriter>=3.2.2
37+
- to:
38+
- nessus-file-reader>=0.6.0
39+
- PyQt5>=5.15.17
40+
- XlsxWriter>=3.2.5
41+
- build tests for python
42+
- removed: 3.9
43+
44+
945
## [0.7.3] - 2025-02-20
1046

1147
### Changed
@@ -25,7 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2561
- PyQt5>=5.15.11
2662
- XlsxWriter>=3.2.2
2763

28-
- tests for python
64+
- build tests for python
2965
- added: 3.10, 3.11, 3.12, 3.13
3066
- removed: 3.7, 3.8
3167

@@ -132,6 +168,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
132168

133169
- Initial release
134170

171+
[0.8.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.3...v0.8.0
172+
[0.7.3]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.2...v0.7.3
135173
[0.7.2]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.1...v0.7.2
136174
[0.7.1]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.0...v0.7.1
137175
[0.7.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.6.0...v0.7.0

nessus_file_analyzer/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"effortless analysis."
4646
)
4747
__uri__ = "https://limberduck.org"
48-
__version__ = "0.7.3"
49-
__release_date__ = "2025.02.20"
48+
__version__ = "0.8.0"
49+
__release_date__ = "2025.06.29"
5050
__author__ = "Damian Krawczyk"
5151
__email__ = "damian.krawczyk@limberduck.org"
5252
__license_name__ = "GNU GPLv3"

nessus_file_analyzer/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.3"
1+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)