|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## [0.4.0](https://github.com/getyourguide/dataframe-expectations/compare/v0.3.0...v0.4.0) (2025-11-10) |
| 4 | + |
| 5 | + |
| 6 | +### ⚠ BREAKING CHANGES |
| 7 | + |
| 8 | +* ‼️ BREAKING CHANGE: Major codebase restructuring with new module organization. However, most changes are made to the internal modules. |
| 9 | + |
| 10 | +**What changed:** |
| 11 | +- All internal modules have been reorganized into a `core/` package |
| 12 | +- Expectation registry simplified from three-dictionary to two-dictionary structure with O(1) lookups |
| 13 | +- Main imports updated from `expectations_suite` to `suite` |
| 14 | + |
| 15 | +**Migration guide:** |
| 16 | +Update your imports to use the new module structure: |
| 17 | +```python |
| 18 | +# Before |
| 19 | +from dataframe_expectations.expectations_suite import DataFrameExpectationsSuite |
| 20 | + |
| 21 | +# After |
| 22 | +from dataframe_expectations.suite import DataFrameExpectationsSuite |
| 23 | +``` |
| 24 | + |
| 25 | +### Features |
| 26 | + |
| 27 | +* restructure codebase with core/ module and explicit imports ([42a233a](https://github.com/getyourguide/dataframe-expectations/commit/42a233ade81fc2af3ce0462ab24f189d969756bd)) |
| 28 | +* restructure codebase, and registry refactoring ([111bca1](https://github.com/getyourguide/dataframe-expectations/commit/111bca10eed21631938db310c562d0a2d73e810c)) |
| 29 | +* simplified registry ([c182858](https://github.com/getyourguide/dataframe-expectations/commit/c18285874837952bf1a7af3f2d1f21613286c34f)) |
| 30 | + |
| 31 | + |
| 32 | +### Bug Fixes |
| 33 | + |
| 34 | +* consolidate imports ([9a76467](https://github.com/getyourguide/dataframe-expectations/commit/9a76467cd63c9ba15bd4878e247aef2b631316df)) |
| 35 | +* deleted duplicate dataclass and enums from registry ([82bec0c](https://github.com/getyourguide/dataframe-expectations/commit/82bec0ce13be1e2a1bc16fb77d0aaf91edb5692f)) |
| 36 | +* deleted duplicate DataFrameExpectation code from expectations package ([d47eb8b](https://github.com/getyourguide/dataframe-expectations/commit/d47eb8be2eef84d820653f5ef07a35e44695c5a3)) |
| 37 | +* import enums from types ([fa84764](https://github.com/getyourguide/dataframe-expectations/commit/fa847643a310a27e615290567d3e11fad4344977)) |
| 38 | +* manually trigger CI for release-please PRs ([49419e6](https://github.com/getyourguide/dataframe-expectations/commit/49419e6531c9fec51a6f46f1dde20ab2e850c1db)) |
| 39 | +* manually trigger CI for release-please PRs ([9585cf5](https://github.com/getyourguide/dataframe-expectations/commit/9585cf5d75b0e90b6f94cd14cae87922055a2212)) |
| 40 | +* return correct version when package is built ([82ff343](https://github.com/getyourguide/dataframe-expectations/commit/82ff3435c6b6ea904a1a58b71eb6a890d80991d6)) |
| 41 | + |
| 42 | + |
| 43 | + |
3 | 44 | ## [0.3.0](https://github.com/getyourguide/dataframe-expectations/compare/v0.2.0...v0.3.0) (2025-11-09) |
4 | 45 |
|
5 | 46 |
|
|
0 commit comments