I am trying to upgrade a gem (hydra-derivatives
) to version 3.3.2 to see if it solves a bug we are having.
hydra-derivatives is not a Gemfile gem; it's bundled as a dependency of another gem, called hydra-works
.
What I've Tried
bundle update --conservative hydra-derivatives
but that only upgraded hydra-derivatives to 3.2.2 (& we want 3.3.2) and its dependencymini_magick
from 4.5.1 to 4.8.0adding
gem 'hydra-derivatives', '~> 3.3.2'
but that gave me:You have requested: hydra-derivatives ~> 3.3.2 The bundle currently has hydra-derivatives locked at 3.2.1. Try running `bundle update hydra-derivatives` If you are updating multiple gems in your Gemfile at once, try passing them all to `bundle update`
I don't want to run
bundle update hydra-derivatives
because I don't want it to update a bunch of unnecessary gems and cause problems, hence why I read about--conservative
a. I ran this anyway to test it, and it upgraded target gem to only 3.2.2 and 15 gems in total!