Skip to content

Releases: unionai-oss/pandera

Release v0.18.2: Docs fix - try pandera page.

11 Mar 06:34
6c11fbb
Compare
Choose a tag to compare

Release v0.18.1: Granular control of validation on pandas dfs.

11 Mar 02:13
0c2533a
Compare
Choose a tag to compare

✨ Highlights ✨

Granular control of pandas validation #1490

There is now support for granular control of schema-level or data-level validations. This can be done via the PANDERA_VALIDATION_DEPTH environment variable. Schema-level (or metadata) validation includes things like column name checks and column data types, while data-level validation involves checks that operate on actual data values.

export PANDERA_VALIDATION_DEPTH= SCHEMA_AND_DATA  # check schema- and data-level checks (default)
export PANDERA_VALIDATION_DEPTH=SCHEMA_ONLY  # only do schema-level checks
export PANDERA_VALIDATION_DEPTH=DATA_ONLY  # only do data-level checks

Efficient Hypothesis strategies #1503

Pandas data synthesis strategies now uses comparison operator functions for more efficient data synthesis. It also updates the minimum hypothesis version to 6.92.7.

What's Changed

New Contributors

Full Changelog: v0.18.0...v0.18.1

Release v0.18.0: Pandas schemas supports global configuration

08 Dec 21:11
e99737f
Compare
Choose a tag to compare

✨ Highlight ✨

Pandera now supports the configuration environment variable PANDERA_VALIDATION_ENABLED.
export PANDERA_VALIDATION_ENABLED=False now globally deactivates validation.

What's Changed

New Contributors

Full Changelog: v0.17.2...v0.18.0

v0.18.0b0: Beta release

08 Dec 19:41
e99737f
Compare
Choose a tag to compare
Pre-release
beta release v0.18.0b0

Release v0.17.2: Improve PydanticModel performance

30 Sep 03:45
ceeae10
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.17.1...v0.17.2

Release v0.17.1: Python generic types bugfix

27 Sep 18:12
d46b3b9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.17.0...v0.17.1

Release v0.17.0: Add support for pydantic v2

23 Sep 04:29
9d3fe65
Compare
Choose a tag to compare

⭐️ Highlight

This release adds support for pydantic v2. Pydantic < v2 should be supported for the foreseeable future.

What's Changed

New Contributors

Full Changelog: v0.16.1...v0.17.0

Beta release v0.17.0b0: Add support for pydantic v2

21 Sep 17:58
5a15cb1
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.16.1...v0.17.0b0

v0.16.1: Bugfix pyspark dependency

17 Jul 15:59
8413a3a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.16.0...v0.16.1

v0.16.0: Support Pyspark SQL dataframes

16 Jul 18:15
62bc484
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.15.2...v0.16.0