Skip to content

v1.0.1 - 2023-04-20

Compare
Choose a tag to compare
@amontanez24 amontanez24 released this 20 Apr 19:04

This release improves the load_custom_constraint_classes method by removing the table_name parameter and just loading the constraint
for all tables instead. It also improves some error messages as well as removes some of the warnings that have been surfacing.

Support for sdtypes is enhanced by resolving a bug that was incorrecttly specifying Faker functions for some of them. Support for datetime formats has also been improved. Finally, the path argument in some save and load methods was changed to filepath for consistency.

New Features

  • Method load_custom_constraint_classes does not need table_name parameter - Issue #1354 by @R-Palazzo
  • Improve error message for invalid primary keys - Issue #1341 by @R-Palazzo
  • Add functionality to find version add-on - Issue #1309 by @frances-h

Bugs Fixed

  • Certain sdtypes cause Faker to raise error - Issue #1346 by @frances-h
  • Change path to filepath for load and save methods - Issue #1352 by @fealho
  • Some datetime formats cause InvalidDataError, even if the datetime matches the format - Issue #1136 by @amontanez24

Internal

  • Inequality constraint raises RuntimeWarning (invalid value encountered in log) - Issue #1275 by @frances-h
  • Pandas FutureWarning: Default dtype for Empty Series will be 'object' - Issue #1355 by @R-Palazzo
  • Pandas FutureWarning: Length 1 tuple will be returned - Issue #1356 by @R-Palazzo