Skip to content

Commit

Permalink
Merge branch 'white/staging' into white/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Nadares committed Jun 1, 2023
2 parents ec4ed7b + fad1fff commit 622a1af
Show file tree
Hide file tree
Showing 23 changed files with 957 additions and 706 deletions.
1 change: 0 additions & 1 deletion .gitlab/ci/fetch-secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@
- 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
- 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
- echo $FARADAY_URL

4 changes: 4 additions & 0 deletions CHANGELOG/4.4.0/community.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* [ADD] Now it's possible to modify the host or service assigned of a vulnerability. #7476
* [MOD] Now `/get_manifest` separates the optional environment variables from the rest. #7481
* [FIX] Add `not_any` filter operator which will retrieve results that not contains the value requested. #7394
* [FIX] Make `get_manifest` compatible with all versions of dispatcher. #7500
1 change: 1 addition & 0 deletions CHANGELOG/4.4.0/date.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
May 29th, 2023
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ New features in the latest update
=====================================


4.4.0 [May 29th, 2023]:
---
* [ADD] Now it's possible to modify the host or service assigned of a vulnerability. #7476
* [MOD] Now `/get_manifest` separates the optional environment variables from the rest. #7481
* [FIX] Add `not_any` filter operator which will retrieve results that not contains the value requested. #7394
* [FIX] Make `get_manifest` compatible with all versions of dispatcher. #7500

4.3.5 [Apr 12th, 2023]:
---
* [FIX] Modify migration with autocommit. #7487
Expand Down
2 changes: 1 addition & 1 deletion faraday/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
See the file 'doc/LICENSE' for the license information
"""

__version__ = '4.3.5'
__version__ = '4.4.0'
__license_version__ = __version__
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
"""Add warnings to command model
Revision ID: 1145efa88414
Revises: b5065f401599
Create Date: 2023-03-30 19:49:28.651868+00:00
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '1145efa88414'
down_revision = 'b5065f401599'
branch_labels = None
depends_on = None


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('command', sa.Column('warnings', sa.String(length=250), nullable=True))
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('command', 'warnings')
# ### end Alembic commands ###
Loading

0 comments on commit 622a1af

Please sign in to comment.