Skip to content

Commit

Permalink
Merge branch 'white/staging' into white/master
Browse files Browse the repository at this point in the history
  • Loading branch information
dkraus committed Nov 21, 2024
2 parents fba303d + 850d2d2 commit 92cdc16
Show file tree
Hide file tree
Showing 22 changed files with 533 additions and 126 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG/5.9.0/community.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* [ADD] Added more validations to attachments. #7851
* [MOD] Removed __license_version__ from init.py. #7763
* [ADD] Added a configurable limit to the retrieval of vulnerabilities. #7841
* [ADD] Added the `description` field to evidence attachments in the `VulnerabilitySchema`. #7811
* [FIX] Fixed vulnerability deletion when it has more than one command associated. #7859
1 change: 1 addition & 0 deletions CHANGELOG/5.9.0/date.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Nov 21st, 2024
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
New features in the latest update
=====================================

5.9.0 [Nov 21st, 2024]:
---
* [ADD] Added more validations to attachments. #7851
* [MOD] Removed __license_version__ from init.py. #7763
* [ADD] Added a configurable limit to the retrieval of vulnerabilities. #7841
* [ADD] Added the `description` field to evidence attachments in the `VulnerabilitySchema`. #7811
* [FIX] Fixed vulnerability deletion when it has more than one command associated. #7859

5.8.0 [Oct 24th, 2024]:
---
* [ADD] Added support for CVSS 4.0. #7753
Expand Down
3 changes: 1 addition & 2 deletions faraday/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
See the file 'doc/LICENSE' for the license information
"""

__version__ = '5.8.0'
__license_version__ = __version__
__version__ = '5.9.0'
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


def upgrade():
op.execute("UPDATE faraday_user SET preferences = NULL;")
op.execute("UPDATE faraday_user SET preferences = '{}';")


def downgrade():
Expand Down
Loading

0 comments on commit 92cdc16

Please sign in to comment.