@@ -16,6 +16,8 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
1616 you want to use ` method = "trendfilter" ` you will need to manually install
1717 this dependency (e.g., with ` remotes::install_github("glmgen/trendfilter") ` ).
1818- In ` revision_summary() ` :
19+ - The ` should_compactify ` argument is now called ` compactify ` . To migrate,
20+ change any calls with ` should_compactfiy = ` to ` compactify = ` .
1921 - Output now uses the name ` lag_near_latest ` instead of ` time_near_latest ` . To
2022 migrate, update references to ` time_near_latest ` to ` lag_near_latest ` .
2123 - ` revision_summary(epi_arch) ` without specifying the measurement column to
@@ -32,9 +34,18 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
3234 ` geo_keys ` , ` other_keys ` , and ` time_keys ` .
3335 - The ` extra_keys ` argument has been deprecated and replaced with
3436 ` other_keys ` .
37+ - The compactification tolerance argument has been renamed to
38+ ` compactify_abs_tol ` or ` abs_tol ` , depending on the function; now defines a
39+ nonstrict tolerances; and defaults to 0 (requiring exact matches in order to
40+ compactify). This argument has been added to ` as_epi_archive() ` and
41+ ` epix_merge() ` and removed (along with all compactification options) from
42+ ` new_epi_archive() ` .
43+ - ` validate_epi_archive() ` now follows the validator convention of operating on
44+ an "unvalidated" ` epi_archive ` (from ` new_epi_archive ` ) rather than arguments.
3545
3646## Improvements
3747- ` revision_summary() ` now supports all ` time_type ` s.
48+ - The compactification tolerance setting now works with integer-type columns.
3849
3950## Bug fixes
4051
@@ -43,6 +54,8 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
4354- Fixed ` epi_archive ` compactification raising an error on certain value column
4455 classes such as ` "distribution" ` (#541 ); it's now easier to form an archive of
4556 forecasts in that format.
57+ - Fixed large compactification tolerances potentially removing all versions of
58+ some observations in certain cases when activity was flat.
4659
4760## Cleanup
4861
0 commit comments