Changelog
Source:NEWS.md
shinymeta 0.2.1
CRAN release: 2025-04-11
Tweak imports to avoid revdepcheck errors for styler. (#119)
Add
"reactive"class tometaReactiveobjects, soshiny::is.reactive()returnsTRUEfor them. (#120)
shinymeta 0.2.0.3
CRAN release: 2021-11-17
Small patch release to accommodate for changes made to base::deparse() in the next upcoming R release. (#107)
shinymeta 0.2.0.2
CRAN release: 2021-09-20
Small patch release to accommodate for changes made in testthat 3.1.0. (#102)
shinymeta 0.2.0.1
CRAN release: 2021-06-15
Small patch release to address unit test failures on Solaris. (#101)
shinymeta 0.2.0
CRAN release: 2021-06-15
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())becomesdata()). See this wiki page for more information. (#59)
Known issues
bquote(splicing = TRUE)can’t be used inside ametaExpr()context since the..()operator is reserved for shinymeta’s quasi-quotation rules. Use rlang’s!!!operator for splicing instead ofbquote().metaRender()will throw a warning about deprecatedenv/quotedarguments whenshiny::devmode(TRUE). This warning may be safely ignored and will be fixed in a future version.