Changelog
Source:NEWS.md
qryflow 0.3.0
Breaking Changes
The type-specific parser system has been removed (#13) .
register_qryflow_parser(),ls_qryflow_parsers()validate_qryflow_parser(), andqryflow_parser_exists()are no longer available. Custom chunk behaviour should now be implemented entirely through handlers. Seeregister_qryflow_type()for details.ls_qryflow_handlers()andregister_qryflow_handler()were removed. Usels_qryflow_types()andregister_qryflow_type()instead.
Internal Changes
Parsing is now handled by a single unified parser that produces a consistent
qryflow_chunkstructure regardless of chunk type. This replaces the previous system where each chunk type could define its own parsing logic.User provided duplicate names now generates an error via refactored approach to
fix_chunk_names()(Now,resolve_chunk_names())Updated documentation, README, and vignettes to accomodate unified parsing.
qryflow 0.2.0
CRAN release: 2026-02-05
Breaking change:
qryflow(),qryflow_run(),qryflow_execute()and internal functions now acceptconargument first, before thesql/workflowarguments. This makes the API consistent with DBI and other DB packages, improves ergonomics, and enables method dispatch on connection classes. (#5)Minor documentation updates (#2)
Update License Year (#6)