shiny 1.7.0 stops with error Error in get_quosure: could not find function "get_quosure"

The error I get as soon as I launch shinyapp is:

Error in get_quosure: could not find function "get_quosure"

There is nothing else I have done and only updated a host of apps on my ubuntu server, including shiny app to the latest 1.7.0. This is most likely the reason of breaking the app.

I saw the same question raised here but remained unresolved and closed automatically.

This is a little urgent as a working app in production stopped working.

Any help on this promptly would be highly appreciated. And if I find a work around I will update the post immediately.

Thanks

Sanjay

UPDATE: I see the root cause was found by @wch and he recommended upgrade in packages bs4Dash and shinydashboardPlus. I suspect that may be the issue with some package authors copying functions statically. Issue #151

UPDATE 2: I have restored the app by downgrading shiny to 1.6.0
See my comments here

1 Like

Not a solution but a general advice, for production apps is better to lock the environment and update only after testing. At the very least you should consider using renv for your application and ideally you should use containers.

For those interested:

There is a similar issue with shinydashboard:

1 Like

If this is still an issue for anyone, make sure you have the latest version of these packages from CRAN:

install.packages("shinydashboard")
install.packages("shinydashboardPlus")
install.packages("bs4Dash")
2 Likes

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.