Problem
zi_crosswalk() carries two deprecated arguments — input_zip and dict — that have been superseded by input_var and zip_source/year respectively. The deprecation warnings promise removal "in early 2027."
Proposal
After the deprecation grace period expires (early 2027), remove the deprecated arguments and their handling code:
- Remove
input_zip parameter and its migration shim
- Remove
dict parameter and its migration shim
- Update roxygen2 documentation to drop the deprecated
@param entries
- Update any vignettes or examples still referencing old arguments
- Bump package version appropriately (minor or major per policy)
Acceptance criteria
Timing
Do not action before January 2027. The deprecation notice promises "early 2027" removal.
Codebase Context
R/zi_crosswalk.R lines 53–55 (roxygen), 98–119 (deprecation shims)
Problem
zi_crosswalk()carries two deprecated arguments —input_zipanddict— that have been superseded byinput_varandzip_source/yearrespectively. The deprecation warnings promise removal "in early 2027."Proposal
After the deprecation grace period expires (early 2027), remove the deprecated arguments and their handling code:
input_zipparameter and its migration shimdictparameter and its migration shim@paramentriesAcceptance criteria
input_zipanddictarguments fully removed fromzi_crosswalk()signatureTiming
Do not action before January 2027. The deprecation notice promises "early 2027" removal.
Codebase Context
R/zi_crosswalk.Rlines 53–55 (roxygen), 98–119 (deprecation shims)