First I want to say, I love packrat & am grateful to Rstudio & the developers for making this. We are using it in our deploy process for code quite regularly.
I am, however, running into repeated problems primarily around stale packages. When I call "packrat::snapshot()", I almost always get a message that a particular package that I have just installed is stale.
The workflow is usually :
```
Open a project in Rstudio
Install or upgrade a package
Test the code / application
Run packrat::status() ## confirm that upgrade is noticed by packrat (sometimes it isn't)
Run packrat::snapshot() ## get message that the installed package is stale
```
I have looked around & am not sure what packrat means by "stale". What can I do to avoid this?
I have a follow-up to this scenario, but will ask separately.