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 Jan 4, 2023
2 parents 81dad80 + 89910d3 commit 8b9d3b5
Show file tree
Hide file tree
Showing 10 changed files with 693 additions and 648 deletions.
1 change: 1 addition & 0 deletions CHANGELOG/4.3.2/community.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Change column type of advanced field in executive reports
1 change: 1 addition & 0 deletions CHANGELOG/4.3.2/date.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Jan 3rd, 2023
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ New features in the latest update
=====================================


4.3.2 [Jan 3rd, 2023]:
---
* Change column type of advanced field in executive reports

4.3.1 [Dec 15th, 2022]:
---
* [ADD] Workspace api stats refactor
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.1'
__version__ = '4.3.2'
__license_version__ = __version__
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
"""change executivereport field to text
Revision ID: f20aa8756612
Revises: 699402156cf4
Create Date: 2022-11-17 20:56:30.646510+00:00
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'f20aa8756612'
down_revision = '699402156cf4'
branch_labels = None
depends_on = None


def upgrade():
op.alter_column(
table_name="executive_report",
column_name="advanced_filter_parsed",
nullable=False,
existing_type=sa.String,
type_=sa.Text,
)


def downgrade():
op.alter_column(
table_name="executive_report",
column_name="advanced_filter_parsed",
nullable=False,
existing_type=sa.Text,
type_=sa.String,
)
Loading

0 comments on commit 8b9d3b5

Please sign in to comment.