Skip to content

Commit 92cdc16

Browse files
author
dkraus
committed
Merge branch 'white/staging' into white/master
2 parents fba303d + 850d2d2 commit 92cdc16

File tree

22 files changed

+533
-126
lines changed

22 files changed

+533
-126
lines changed

CHANGELOG/5.9.0/community.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* [ADD] Added more validations to attachments. #7851
2+
* [MOD] Removed __license_version__ from init.py. #7763
3+
* [ADD] Added a configurable limit to the retrieval of vulnerabilities. #7841
4+
* [ADD] Added the `description` field to evidence attachments in the `VulnerabilitySchema`. #7811
5+
* [FIX] Fixed vulnerability deletion when it has more than one command associated. #7859

CHANGELOG/5.9.0/date.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Nov 21st, 2024

RELEASE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
New features in the latest update
22
=====================================
33

4+
5.9.0 [Nov 21st, 2024]:
5+
---
6+
* [ADD] Added more validations to attachments. #7851
7+
* [MOD] Removed __license_version__ from init.py. #7763
8+
* [ADD] Added a configurable limit to the retrieval of vulnerabilities. #7841
9+
* [ADD] Added the `description` field to evidence attachments in the `VulnerabilitySchema`. #7811
10+
* [FIX] Fixed vulnerability deletion when it has more than one command associated. #7859
11+
412
5.8.0 [Oct 24th, 2024]:
513
---
614
* [ADD] Added support for CVSS 4.0. #7753

faraday/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
See the file 'doc/LICENSE' for the license information
55
"""
66

7-
__version__ = '5.8.0'
8-
__license_version__ = __version__
7+
__version__ = '5.9.0'

faraday/migrations/versions/4423dd3f90be_clear_preferences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
def upgrade():
19-
op.execute("UPDATE faraday_user SET preferences = NULL;")
19+
op.execute("UPDATE faraday_user SET preferences = '{}';")
2020

2121

2222
def downgrade():

0 commit comments

Comments
 (0)