Skip to content

Commit 4247394

Browse files
author
ci bot
committed
Merge branch 'fix-warning' into 'enterprise'
security: upgrade libs with vulnerabilities See merge request dkinternal/testgen/dataops-testgen!450
2 parents 62201e6 + ae845ba commit 4247394

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "dataops-testgen"
11-
version = "5.0.2"
11+
version = "5.9.4"
1212
description = "DataKitchen's Data Quality DataOps TestGen"
1313
authors = [
1414
{ "name" = "DataKitchen, Inc.", "email" = "info@datakitchen.io" },
@@ -45,7 +45,7 @@ dependencies = [
4545
"requests_extensions==1.1.3",
4646
"numpy==1.26.4",
4747
"pandas==2.1.4",
48-
"streamlit==1.53.0",
48+
"streamlit==1.55.0",
4949
"streamlit-extras==0.3.0",
5050
"streamlit-aggrid==0.3.4.post3",
5151
"plotly_express==0.4.1",
@@ -57,7 +57,7 @@ dependencies = [
5757
"xlsxwriter==3.2.0",
5858
"psutil==5.9.8",
5959
"concurrent_log_handler==0.9.25",
60-
"cryptography==46.0.5",
60+
"cryptography==46.0.6",
6161
"validators==0.33.0",
6262
"reportlab==4.2.2",
6363
"cron-converter==1.2.1",

testgen/common/models/data_column.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from uuid import UUID, uuid4
22

3-
from sqlalchemy import Boolean, Column, ForeignKey, String
3+
from sqlalchemy import Boolean, Column, ForeignKey, String, asc
44
from sqlalchemy.dialects import postgresql
55

66
from testgen.common.models.entity import Entity
@@ -17,7 +17,7 @@ class DataColumnChars(Entity):
1717
excluded_data_element: bool | None = Column(Boolean, nullable=True)
1818
pii_flag: str | None = Column(String(50), nullable=True)
1919

20-
_default_order_by = (id,)
20+
_default_order_by = (asc(id),)
2121

2222
# Unmapped columns: table_id, ordinal_position, general_type, column_type,
2323
# db_data_type, functional_data_type, description, critical_data_element,

0 commit comments

Comments
 (0)