@@ -16,6 +16,8 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
16
16
you want to use ` method = "trendfilter" ` you will need to manually install
17
17
this dependency (e.g., with ` remotes::install_github("glmgen/trendfilter") ` ).
18
18
- In ` revision_summary() ` :
19
+ - The ` should_compactify ` argument is now called ` compactify ` . To migrate,
20
+ change any calls with ` should_compactfiy = ` to ` compactify = ` .
19
21
- Output now uses the name ` lag_near_latest ` instead of ` time_near_latest ` . To
20
22
migrate, update references to ` time_near_latest ` to ` lag_near_latest ` .
21
23
- ` 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
32
34
` geo_keys ` , ` other_keys ` , and ` time_keys ` .
33
35
- The ` extra_keys ` argument has been deprecated and replaced with
34
36
` 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.
35
45
36
46
## Improvements
37
47
- ` revision_summary() ` now supports all ` time_type ` s.
48
+ - The compactification tolerance setting now works with integer-type columns.
38
49
39
50
## Bug fixes
40
51
@@ -43,6 +54,8 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
43
54
- Fixed ` epi_archive ` compactification raising an error on certain value column
44
55
classes such as ` "distribution" ` (#541 ); it's now easier to form an archive of
45
56
forecasts in that format.
57
+ - Fixed large compactification tolerances potentially removing all versions of
58
+ some observations in certain cases when activity was flat.
46
59
47
60
## Cleanup
48
61
0 commit comments