You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing BootBoot, when I run bundle update (regardless of whether or not I have DEPENDENCIES_NEXT environment variable set), only the Gemfile_next.lock is being updated, Gemfile.lock is unchanged. This is causing issues on CI when running the current version as it is pulling the older version(s) of gems from the Gemfile.lock. I've noticed that running Bundler.default_lockfile always returns Gemfile_next.lock regardless of whether the DEPENDENCIES_NEXT environment variable is set.
Just wondering what the expected behaviour is - like from the docs, it sounds like bundle update should be updating both lock files. Is there something I'm missing in order to get BootBoot to update both lock files?
The text was updated successfully, but these errors were encountered:
With Bundler 2.4.22, if I update a specific gem (i.e. bundle update rails) that seems to work as expected and updates both lock files. However, if I attempt to update all outdated gems (i.e. bundle update), it seems to still only update the Gemfile_next.lock file.
After installing BootBoot, when I run
bundle update
(regardless of whether or not I haveDEPENDENCIES_NEXT
environment variable set), only theGemfile_next.lock
is being updated,Gemfile.lock
is unchanged. This is causing issues on CI when running the current version as it is pulling the older version(s) of gems from theGemfile.lock
. I've noticed that runningBundler.default_lockfile
always returnsGemfile_next.lock
regardless of whether theDEPENDENCIES_NEXT
environment variable is set.Just wondering what the expected behaviour is - like from the docs, it sounds like
bundle update
should be updating both lock files. Is there something I'm missing in order to get BootBoot to update both lock files?The text was updated successfully, but these errors were encountered: