|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file. |
4 | 4 |
|
| 5 | +## [1.0.0.a4] - 2025-01-23 |
| 6 | + |
| 7 | +### Bug Fixes |
| 8 | + |
| 9 | +- Update data loading to new lydata API. |
| 10 | +- Add sampling config back to sample CLI. |
| 11 | +- Finish `data filter` command. |
| 12 | +- Correctly log number of excluded pateints in `lyproxify`. |
| 13 | +- Allow extra args in CLI cmds. |
| 14 | +- Logging during progress bar. |
| 15 | + |
| 16 | +### Documentation |
| 17 | + |
| 18 | +- Deactivate help of removed commands. |
| 19 | +- Link only to stable versions. |
| 20 | +- Fix intersphinx links. |
| 21 | +- Update link to schedule module. |
| 22 | +- Configure how pydantic models are displayed. |
| 23 | +- Add more info about schema. |
| 24 | +- Better explain sampling. |
| 25 | +- Add proper info to `cli_cmd()` methods. |
| 26 | + |
| 27 | +### Features |
| 28 | + |
| 29 | +- Add mandatory `version` field to command settings.\ |
| 30 | + This will allow to differentiate between old and new configs and create |
| 31 | + the models accordingly. |
| 32 | +- Add translation of old to new model configs. |
| 33 | +- Add dynamic YAML config source. |
| 34 | +- Configure logging nicely. |
| 35 | +- Update `data enhance` command. |
| 36 | +- Update `data join` command. |
| 37 | +- Update `data filter` command. |
| 38 | +- Update `data split` command. |
| 39 | +- Capture lydata logging output. |
| 40 | +- Update YAML schema for CLIs. |
| 41 | +- Update `data lyproxify` cmd. |
| 42 | +- Allow sampling only specified params.\ |
| 43 | + Via a new CLI arg named `param_names` one may restrict the parameters |
| 44 | + sampled to a named subset. In combination with the fact that any Python |
| 45 | + model may be loaded, this results in an enormously flexible sampler. |
| 46 | +- Update inv temp `schedule` cmd. |
| 47 | +- Allow providing start state to sampling func. |
| 48 | + |
| 49 | +### Testing |
| 50 | + |
| 51 | +- Replace subprocess calls with monkeypatch.\ |
| 52 | + This allows for better debugging during test calls. |
| 53 | +- Load generated data correctly.\ |
| 54 | + The synthetic data for testing already has "early" and "late" as |
| 55 | + T-stages. Thus, the mapping needed to be adapted. |
| 56 | + |
| 57 | +### Build |
| 58 | + |
| 59 | +- pydantic-settings >= 2.7 needed. |
| 60 | + |
| 61 | +### Change |
| 62 | + |
| 63 | +- Make `version` field in command settings required. |
| 64 | +- Use pydantic for subcommands. |
| 65 | +- Use loguru over default logging. |
| 66 | +- Rename `data` field to `input`. |
| 67 | +- Use pydantic for plot utils, too. |
| 68 | +- Use rich logging handler. |
| 69 | + |
| 70 | +### Refac |
| 71 | + |
| 72 | +- Slightly change CLI inheritances. |
| 73 | +- Sort configs alphabetically. |
| 74 | +- Make sampling more reusable. |
| 75 | + |
| 76 | +### Remove |
| 77 | + |
| 78 | +- Unused utility functions. |
| 79 | +- Plotting scripts except histogram/betaposterp helpers. |
| 80 | + |
5 | 81 | ## [1.0.0.a3] - 2024-11-15 |
6 | 82 |
|
7 | 83 | ### Bug Fixes |
|
0 commit comments