Skip to content

Commit 3709152

Browse files
author
Diego Nadares
committed
Merge branch 'white/staging' into white/master
2 parents 223f4a2 + bb5acd6 commit 3709152

18 files changed

Lines changed: 1103 additions & 911 deletions

File tree

.gitlab/ci/testing/.pretesting-gitlab-ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ bandit:
5252
- source faraday_venv/bin/activate
5353
- pip3 install bandit
5454
- mkdir /results
55-
- "bandit -r ${CI_PROJECT_DIR}/faraday -o /results/output.xml -f xml --skip B101"
55+
- "bandit -r ${CI_PROJECT_DIR}/faraday -o /results/output.xml -f xml --skip B101,B202,B311,B501"
5656
after_script:
57+
- apt-get update -y
58+
- apt-get install -y lsb-release gnupg wget ca-certificates libcap2-bin
5759
- wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
58-
- apt update
59-
- apt-get install software-properties-common -y
60-
- echo "deb [ signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg ] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/hashicorp.list
61-
- apt update
62-
- apt install vault -y
60+
- echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/hashicorp.list
61+
- apt-get update -y
62+
- apt-get install -y vault
6363
- setcap cap_ipc_lock= /usr/bin/vault
6464
- pip3 install faraday-cli
6565
- cat /results/output.xml

CHANGELOG/5.17.0/community.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* [ADD] Update stats for hosts and workspaces from failed commands on server start, ensuring data consistency. #7935
2+
* [MOD] Fixed vulnerability filtering by range on status history. #8025

CHANGELOG/5.17.0/date.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Oct 3rd, 2025

RELEASE.md

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

4+
5.17.0 [Oct 3rd, 2025]:
5+
---
6+
* [ADD] Update stats for hosts and workspaces from failed commands on server start, ensuring data consistency. #7935
7+
* [MOD] Fixed vulnerability filtering by range on status history. #8025
8+
49
5.16.0 [Aug 27th, 2025]:
510
---
611
* [ADD] Implemented `range` operator for date fields in filters. #7990

faraday/__init__.py

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

7-
__version__ = '5.16.0'
7+
__version__ = '5.17.0'

0 commit comments

Comments
 (0)