Skip to content

Commit

Permalink
Merge branch community version 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezequieltbh committed Nov 17, 2017
2 parents 63f6130 + c4275f5 commit 0734fa9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Make sure you run ```./faraday.py --update``` the first time after an update!
New features in the latest update
=====================================

November 17, 2017:
---
* Fix bug with tags in models.

November 5, 2017:
---
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7
2.7.1
2 changes: 1 addition & 1 deletion config/default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<faraday>

<appname>Faraday - Penetration Test IDE</appname>
<version>2.7</version>
<version>2.7.1</version>
<debug_status>0</debug_status>
<font>-Misc-Fixed-medium-r-normal-*-12-100-100-100-c-70-iso8859-1</font>
<home_path>~/</home_path>
Expand Down
2 changes: 1 addition & 1 deletion persistence/server/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ def __init__(self, vuln_web, workspace_name):
self.hostnames = vuln_web.get('hostnames')
self.impact = vuln_web.get('impact')
self.service = vuln_web.get('service')
self.tags = vuln_web.get('tags')
self.tags = vuln_web.get('tags', list())
self.target = vuln_web.get('target')
self.parent = vuln_web.get('parent')
self.policyviolations = vuln_web.get('policyviolations', list())
Expand Down
2 changes: 1 addition & 1 deletion server/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from sqlalchemy.ext.declarative import declarative_base


SCHEMA_VERSION = 'W.2.7'
SCHEMA_VERSION = 'W.2.7.1'

Base = declarative_base()

Expand Down

0 comments on commit 0734fa9

Please sign in to comment.