Skip to content

Commit dd15816

Browse files
author
Diego Nadares
committed
Merge branch 'white/dev' into white/staging
2 parents e22ca74 + 70c3cf1 commit dd15816

12 files changed

Lines changed: 20 additions & 15 deletions

File tree

CHANGELOG/5.2.0/community.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* [FIX] Fix hosts stats when bulk delete is applied to vulns. #7676
2+
* [FIX] The server was not updating the agents status on restart. #7677
3+
* [MOD] Remove websockets port from docker-compose. #7679

CHANGELOG/5.2.0/date.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Mar 12th, 2024

CHANGELOG/current/7676.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

RELEASE.md

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

4+
5.2.0 [Mar 12th, 2024]:
5+
---
6+
* [FIX] Fix hosts stats when bulk delete is applied to vulns. #7676
7+
* [FIX] Fix agents status from database. We were not updating the agents status on faraday-server restarts. #7677
8+
* [MOD] Remove websockets port from docker-compose. #7679
9+
410
5.1.1 [Feb 9th, 2024]:
511
---
612
* [FIX] Improve of host view performance.

docker-compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ services:
3535
- redis
3636
ports:
3737
- "5985:5985"
38-
- "9000:9000"
3938
volumes:
4039
db:
4140
driver: local

faraday/__init__.py

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

7-
__version__ = '5.1.1'
7+
__version__ = '5.2.0'
88
__license_version__ = __version__

faraday/openapi/faraday_swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"info": {
33
"description": "The Faraday REST API enables you to interact with [our server](https://github.com/infobyte/faraday).\nUse this API to interact or integrate with Faraday server. This page documents the REST API, with HTTP response codes and example requests and responses.",
4-
"title": "Faraday 5.1.0 API",
4+
"title": "Faraday 5.2.0 API",
55
"version": "v3"
66
},
77
"security": {

faraday/server/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def index(ex):
521521
app.view_functions['agent_api.AgentView:post'].is_public = True
522522

523523
# Remove agents that where registered
524-
if testing is False:
524+
if not testing:
525525
with app.app_context():
526526
remove_sid()
527527

pynixify/packages/faraday-agent-parameters-types/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
buildPythonPackage rec {
88
pname = "faraday-agent-parameters-types";
9-
version = "1.4.0";
9+
version = "1.5.1";
1010

1111
src = fetchPypi {
1212
inherit version;
1313
pname = "faraday_agent_parameters_types";
14-
sha256 = "1czn8p7f4g9h1rkkzn1hkh7gdvhfh51iw824chk7yfaanpvxxsd5";
14+
sha256 = "16wbvmc9sddwm71wmahfnx4la75qddz449b1kh2aw4clhz86q786";
1515
};
1616

1717
buildInputs = [ pytest-runner ];

pynixify/packages/faraday-plugins/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
buildPythonPackage rec {
1010
pname = "faraday-plugins";
11-
version = "1.16.0";
11+
version = "1.17.0";
1212

1313
src = fetchPypi {
1414
inherit pname version;
15-
sha256 = "1dn92mj3anzh9fvfqs9vd2wixah2py3vy9ihxr36wyljphi2jl5y";
15+
sha256 = "10pkd8ycdwv8a5mqhzdv19i4hrnv48vzmakgd1fx0lbwvfqish8n";
1616
};
1717

1818
propagatedBuildInputs = [

0 commit comments

Comments
 (0)