Skip to content

Releases: rstudio/shinymeta

shinymeta 0.2.0.3

17 Nov 20:50
8484004
Compare
Choose a tag to compare

Small patch release to accommodate for changes made to base::deparse() in the next upcoming R release. (#107)

shinymeta 0.2.0.2

15 Nov 16:34
Compare
Choose a tag to compare

Small patch release to accommodate new version of testthat.

shinymeta 0.2.0.1

15 Jun 15:16
Compare
Choose a tag to compare

Small patch release to address unit test failures on Solaris.

shinymeta 0.2.0

15 Jun 14:14
Compare
Choose a tag to compare

Breaking changes

  • A different operator, ..() (instead of !!), is now expanded in meta-mode. In normal execution, this operator is not expanded, and is, instead stripped (i.e., .,(data()) becomes data()). See this wiki page for more information. (#59)

New features

  • New metaAction function, intended for executing code for its side effects while also capturing the source for code generation. This is useful for app setup code, such as library() calls, source-ing of supplemental .R files, loading static data sets, etc. (#71)

Known issues

  • bquote(splicing = TRUE) can't be used inside a metaExpr() context since the ..() operator is reserved for {shinymeta}'s quasi-quotation rules. Use {rlang}'s !!! operator for splicing instead of bquote().

  • metaRender() will throw a warning about deprecated env/quoted arguments when shiny::devmode(TRUE). This warning may be safely ignored and will be fixed in a future version.