|
3 | 3 | ## [0.4.0](https://github.com/getyourguide/dataframe-expectations/compare/v0.3.0...v0.4.0) (2025-11-10) |
4 | 4 |
|
5 | 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 | + |
6 | 25 | ### Features |
7 | 26 |
|
8 | 27 | * restructure codebase with core/ module and explicit imports ([42a233a](https://github.com/getyourguide/dataframe-expectations/commit/42a233ade81fc2af3ce0462ab24f189d969756bd)) |
|
14 | 33 |
|
15 | 34 | * consolidate imports ([9a76467](https://github.com/getyourguide/dataframe-expectations/commit/9a76467cd63c9ba15bd4878e247aef2b631316df)) |
16 | 35 | * deleted duplicate dataclass and enums from registry ([82bec0c](https://github.com/getyourguide/dataframe-expectations/commit/82bec0ce13be1e2a1bc16fb77d0aaf91edb5692f)) |
17 | | -* deleted duplicate DataFrameExpectation codefrom expectations package ([d47eb8b](https://github.com/getyourguide/dataframe-expectations/commit/d47eb8be2eef84d820653f5ef07a35e44695c5a3)) |
| 36 | +* deleted duplicate DataFrameExpectation code from expectations package ([d47eb8b](https://github.com/getyourguide/dataframe-expectations/commit/d47eb8be2eef84d820653f5ef07a35e44695c5a3)) |
18 | 37 | * import enums from types ([fa84764](https://github.com/getyourguide/dataframe-expectations/commit/fa847643a310a27e615290567d3e11fad4344977)) |
19 | 38 | * manually trigger CI for release-please PRs ([49419e6](https://github.com/getyourguide/dataframe-expectations/commit/49419e6531c9fec51a6f46f1dde20ab2e850c1db)) |
20 | 39 | * manually trigger CI for release-please PRs ([9585cf5](https://github.com/getyourguide/dataframe-expectations/commit/9585cf5d75b0e90b6f94cd14cae87922055a2212)) |
21 | | -* return corrent version when package is built ([82ff343](https://github.com/getyourguide/dataframe-expectations/commit/82ff3435c6b6ea904a1a58b71eb6a890d80991d6)) |
22 | | - |
| 40 | +* return correct version when package is built ([82ff343](https://github.com/getyourguide/dataframe-expectations/commit/82ff3435c6b6ea904a1a58b71eb6a890d80991d6)) |
23 | 41 |
|
24 | | -### Documentation |
25 | 42 |
|
26 | | -* remove unused imports ([276589d](https://github.com/getyourguide/dataframe-expectations/commit/276589da8c5fec5537427c2d9ea622a33f40642d)) |
27 | 43 |
|
28 | 44 | ## [0.3.0](https://github.com/getyourguide/dataframe-expectations/compare/v0.2.0...v0.3.0) (2025-11-09) |
29 | 45 |
|
|
0 commit comments