Skip to content

Commit 622a1af

Browse files
author
Diego Nadares
committed
Merge branch 'white/staging' into white/master
2 parents ec4ed7b + fad1fff commit 622a1af

File tree

23 files changed

+957
-706
lines changed

23 files changed

+957
-706
lines changed

.gitlab/ci/fetch-secrets.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@
99
- if [ -z "$FARADAY_USER" ]; then export FARADAY_USER="$(vault kv get -field=FARADAY_USER secrets/gitlab/faraday)"; fi; if [ -z "$FARADAY_USER" ]; then exit 1; fi
1010
- if [ -z "$FARADAY_PASSWORD" ]; then export FARADAY_PASSWORD="$(vault kv get -field=FARADAY_PASSWORD secrets/gitlab/faraday)"; fi; if [ -z "$FARADAY_PASSWORD" ]; then exit 1; fi
1111
- echo $FARADAY_URL
12-

CHANGELOG/4.4.0/community.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* [ADD] Now it's possible to modify the host or service assigned of a vulnerability. #7476
2+
* [MOD] Now `/get_manifest` separates the optional environment variables from the rest. #7481
3+
* [FIX] Add `not_any` filter operator which will retrieve results that not contains the value requested. #7394
4+
* [FIX] Make `get_manifest` compatible with all versions of dispatcher. #7500

CHANGELOG/4.4.0/date.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
May 29th, 2023

RELEASE.md

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

44

5+
4.4.0 [May 29th, 2023]:
6+
---
7+
* [ADD] Now it's possible to modify the host or service assigned of a vulnerability. #7476
8+
* [MOD] Now `/get_manifest` separates the optional environment variables from the rest. #7481
9+
* [FIX] Add `not_any` filter operator which will retrieve results that not contains the value requested. #7394
10+
* [FIX] Make `get_manifest` compatible with all versions of dispatcher. #7500
11+
512
4.3.5 [Apr 12th, 2023]:
613
---
714
* [FIX] Modify migration with autocommit. #7487

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__ = '4.3.5'
7+
__version__ = '4.4.0'
88
__license_version__ = __version__
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""Add warnings to command model
2+
3+
Revision ID: 1145efa88414
4+
Revises: b5065f401599
5+
Create Date: 2023-03-30 19:49:28.651868+00:00
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
12+
# revision identifiers, used by Alembic.
13+
revision = '1145efa88414'
14+
down_revision = 'b5065f401599'
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade():
20+
# ### commands auto generated by Alembic - please adjust! ###
21+
op.add_column('command', sa.Column('warnings', sa.String(length=250), nullable=True))
22+
# ### end Alembic commands ###
23+
24+
25+
def downgrade():
26+
# ### commands auto generated by Alembic - please adjust! ###
27+
op.drop_column('command', 'warnings')
28+
# ### end Alembic commands ###

0 commit comments

Comments
 (0)