Skip to content

Releases: insightsengineering/teal.transform

v0.5.0

18 Feb 18:26
e108274
Compare
Choose a tag to compare

Breaking changes

  • Namespace from magrittr package is no longer available when loading teal.transform. Only re-exports pipe %>% operator from dplyr package.

Miscellaneous

  • Removed magrittr from package dependencies.
  • Specified minimal version of package dependencies.

v0.4.0

14 Aug 13:38
5e7acf7
Compare
Choose a tag to compare

Miscellaneous

  • Removed scda package dependency from examples.
  • Deprecated data_merge_module() and data_merge_srv().
  • The get_relabel_call function now returns a call to teal.data::col_relabel instead of one to formatters::var_relabel.
  • Update installation instruction

What's Changed

New Contributors

Full Changelog: v0.3.0...v0.4.0

v0.3.0

22 May 18:08
3eb5fcd
Compare
Choose a tag to compare

New Features

  • Added Queue class with updated unit tests.

Enhancements

  • Updated error messages for choices_labeled(), variable_choices() and value_choices() to be more informative.
  • Updated data_extract to be compatible with shinyvalidate: data_extract_srv and data_extract_multiple_srv accept shinyvalidate validation rules and their return objects now include shinyvalidate::InputValidator(s).
  • Added helper function compose_and_enable_validators to simplify enabling shinyvalidate::InputValidators returned from data_extract_multiple_srv.

Bug fixes

  • Fixed a bug in data_extract_filter_srv when app developer sets a selected value.

Miscellaneous

  • Examples use scda.2022 instead of scda.2021

What's Changed

New Contributors

Full Changelog: v0.2.0...v0.3.0

v0.2.0

14 Oct 01:26
53857d8
Compare
Choose a tag to compare

Breaking changes

  • Updated the data merge functionality to no longer expect input datanames with the suffix _FILTERED following changes to the output of teal.slice::FilteredData$get_call().
  • Updated the data merge downstream functions to accept a joinKeys object for the join_keys argument.

New features

  • data_extract_ui, data_extract_srv, data_extract_multiple_srv can be initialized by a list of (optionally reactive) data.frame objects.
  • Added new modules merge_expression_srv and merge_expression_module, updates of data_merge_srv and data_merge_module
    (which will be deprecated in future releases) respectively, where datasets argument takes a list of (optionally reactive) data.frame objects and a new argument join_keys that accepts a joinKeys object.

Enhancements

  • Updated the examples and the tests to use teal.slice::init_filtered_data to initialize a FilteredData object.
  • Updated the vignettes and the README content.
  • Updated data_merge_module and merge_expression_module to accept NULL data_extract inputs.

What's Changed

Full Changelog: v0.1.1...v0.2.0

v0.1.1

09 Jun 14:31
84abd8b
Compare
Choose a tag to compare

New features

  • Added a formatting function format_data_extract for the output of data_extract_srv.

Breaking changes

  • Removed the (previously deprecated) input_id argument to data_merge_module.
  • Updated choices_selected so that all selected values must be valid choices. When using delayed resolving the invalid selected are removed and a warning is thrown to the logs, in other cases an error is thrown.

Miscellaneous

  • Added a template to the pkgdown site.
  • Added names to the id parameter of chunks$push calls.
  • Updated package authors.
  • Added vignettes for extracting and merging data.