Skip to content

Commit 2a49c92

Browse files
v0.27.0 Release Preparation (#842)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2ce75bf commit 2a49c92

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# History
22

3+
## v0.27.0 - 2026-01-29
4+
5+
### New Features
6+
7+
* When visualizing InterTable Trends, don't display pairs without any scores - Issue [#833](https://github.com/sdv-dev/SDMetrics/issues/833) by @fealho
8+
* When visualizing Column Pair Trends, don't display rows/columns without any scores - Issue [#832](https://github.com/sdv-dev/SDMetrics/issues/832) by @fealho
9+
* Add a threshold to the ContingencySimilarity metric - Issue [#817](https://github.com/sdv-dev/SDMetrics/issues/817) by @fealho
10+
* Add a threshold to the CorrelationSimilarity metric - Issue [#816](https://github.com/sdv-dev/SDMetrics/issues/816) by @R-Palazzo
11+
* In the quality report, ignore column pairs that don't have trends in the real data - Issue [#815](https://github.com/sdv-dev/SDMetrics/issues/815) by @fealho
12+
313
## v0.26.0 - 2026-01-26
414

515
### Bugs Fixed

static_code_analysis.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Run started:2026-01-26 18:58:49.863184+00:00
1+
Run started:2026-01-29 21:43:48.344046+00:00
22

33
Test results:
44
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
@@ -36,20 +36,20 @@ Test results:
3636
Severity: Medium Confidence: High
3737
CWE: CWE-502 (https://cwe.mitre.org/data/definitions/502.html)
3838
More Info: https://bandit.readthedocs.io/en/1.9.2/blacklists/blacklist_calls.html#b301-pickle
39-
Location: ./sdmetrics/reports/base_report.py:295:21
40-
294 with open(filepath, 'rb') as f:
41-
295 report = pickle.load(f)
42-
296 if current_version != report._package_version:
39+
Location: ./sdmetrics/reports/base_report.py:305:21
40+
304 with open(filepath, 'rb') as f:
41+
305 report = pickle.load(f)
42+
306 if current_version != report._package_version:
4343

4444
--------------------------------------------------
4545
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
4646
Severity: Low Confidence: High
4747
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
4848
More Info: https://bandit.readthedocs.io/en/1.9.2/plugins/b101_assert_used.html
49-
Location: ./sdmetrics/reports/multi_table/_properties/base.py:70:8
50-
69
51-
70 assert is_dataframe, assert_message
52-
71 if not has_score_column:
49+
Location: ./sdmetrics/reports/multi_table/_properties/base.py:74:8
50+
73
51+
74 assert is_dataframe, assert_message
52+
75 if not has_score_column:
5353

5454
--------------------------------------------------
5555
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
@@ -117,7 +117,7 @@ Test results:
117117
--------------------------------------------------
118118

119119
Code scanned:
120-
Total lines of code: 11869
120+
Total lines of code: 12188
121121
Total lines skipped (#nosec): 0
122122
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0
123123

0 commit comments

Comments
 (0)