Skip to content

Commit 432b7d5

Browse files
Prepare release for v1.28.0
1 parent 982e7c9 commit 432b7d5

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

HISTORY.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Release Notes
22

3+
## v1.28.0 - 2025-10-17
4+
5+
### New Features
6+
7+
* Unable to validate just 1 table of a multi-table schema - Issue [#2678](https://github.com/sdv-dev/SDV/issues/2678) by @frances-h
8+
* Allow users to validate the DayZ parameters - Issue [#2667](https://github.com/sdv-dev/SDV/issues/2667) by @frances-h
9+
* Allow users to estimate parameters for DayZSynthesizer - Issue [#2666](https://github.com/sdv-dev/SDV/issues/2666) by @R-Palazzo
10+
11+
### Bugs Fixed
12+
13+
* Minimum tests failing - OSError: [WinError 1114] A dynamic link library (DLL) initialization routine failed - Issue [#2725](https://github.com/sdv-dev/SDV/issues/2725) by @amontanez24
14+
* [DayZ Parameters] `'missing_values_proportion'` must be zero for any key columns - Issue [#2708](https://github.com/sdv-dev/SDV/issues/2708) by @frances-h
15+
* [DayZ Parameters] Validation results in unexpected errors for some edge cases - Issue [#2703](https://github.com/sdv-dev/SDV/issues/2703) by @fealho
16+
* [DayZ Parameters] `create_parameters` should fall back to default parameters if parameters cannot be detected - Issue [#2702](https://github.com/sdv-dev/SDV/issues/2702) by @fealho
17+
* [DayZ Parameters] DayZ parameter validation does not validate DAYZ_SPEC_VERSION - Issue [#2701](https://github.com/sdv-dev/SDV/issues/2701) by @R-Palazzo
18+
* [DayZParameters] `KeyError` when creating parameters with empty data and metadata - Issue [#2700](https://github.com/sdv-dev/SDV/issues/2700) by @fealho
19+
* Unable to load the DayZSynthesizer after saving it - Issue [#2698](https://github.com/sdv-dev/SDV/issues/2698) by @R-Palazzo
20+
* `DayZSynthesizer.create_parameters` errors in Colab with numeric columns - Issue [#2683](https://github.com/sdv-dev/SDV/issues/2683) by @frances-h
21+
* PARSynthesizer: `FutureWarnings` in `groupby.apply` and `Series.__getitem__` from pandas - Issue [#2682](https://github.com/sdv-dev/SDV/issues/2682) by @R-Palazzo
22+
323
## v1.27.0 - 2025-09-15
424

525
### New Features

static_code_analysis.txt

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Run started:2025-09-15 13:37:38.424277
1+
Run started:2025-10-17 19:38:52.414320
22

33
Test results:
44
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
@@ -74,22 +74,33 @@ Test results:
7474
367 pass
7575
368
7676

77+
--------------------------------------------------
78+
>> Issue: [B110:try_except_pass] Try, Except, Pass detected.
79+
Severity: Low Confidence: High
80+
CWE: CWE-703 (https://cwe.mitre.org/data/definitions/703.html)
81+
More Info: https://bandit.readthedocs.io/en/1.7.7/plugins/b110_try_except_pass.html
82+
Location: ./sdv/single_table/dayz.py:62:4
83+
61 params['num_decimal_digits'] = num_decimal_digits
84+
62 except Exception:
85+
63 pass
86+
64
87+
7788
--------------------------------------------------
7889

7990
Code scanned:
80-
Total lines of code: 16173
91+
Total lines of code: 16761
8192
Total lines skipped (#nosec): 0
8293
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0
8394

8495
Run metrics:
8596
Total issues (by severity):
8697
Undefined: 0
87-
Low: 6
98+
Low: 7
8899
Medium: 1
89100
High: 0
90101
Total issues (by confidence):
91102
Undefined: 0
92103
Low: 0
93104
Medium: 2
94-
High: 5
105+
High: 6
95106
Files skipped (0):

0 commit comments

Comments
 (0)