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
{{ message }}
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
$ dbundle outdated
Fetching source index from https://rubygems.org/
Resolving dependencies..................
Outdated gems included in the bundle:
* resque (newest 1.26.0, installed 1.25.2) in group "default"* typhoeus (newest 1.0.1, installed 1.0.0) in group "default"
$ dbundle outdated --minor
Fetching source index from https://rubygems.org/
Resolving dependencies..................
Outdated gems included in the bundle:
* resque (newest 1.26.0, installed 1.25.2) in group "default"
$ dbundle outdated --patch
Fetching source index from https://rubygems.org/
Resolving dependencies..................
Outdated gems included in the bundle:
* typhoeus (newest 1.0.1, installed 1.0.0) in group "default"
$ dbundle outdated --patch --minor
Fetching source index from https://rubygems.org/
Resolving dependencies..................
Outdated gems included in the bundle:
* resque (newest 1.26.0, installed 1.25.2) in group "default"
The patch update in typhoeus is not detected/displayed when both --minor and --patch flags are used for bundle outdated. Some work and test coverage is required to make sure that the --major, --minor, and --patch flags still work properly when combined.
@indirect, the desired output for using bundle outdated --minor --patch would be to show both updates in the minor and patch version sections right?
The text was updated successfully, but these errors were encountered:
Sample
Gemfile
:Sample
Gemfile.lock
:Sample
bundle outdated
outputs:The patch update in
typhoeus
is not detected/displayed when both--minor
and--patch
flags are used forbundle outdated
. Some work and test coverage is required to make sure that the--major
,--minor
, and--patch
flags still work properly when combined.@indirect, the desired output for using
bundle outdated --minor --patch
would be to show both updates in the minor and patch version sections right?The text was updated successfully, but these errors were encountered: