Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

paket outdated should optionally evaluate version constraints #183

Closed
agross opened this issue Sep 29, 2014 · 2 comments
Closed

paket outdated should optionally evaluate version constraints #183

agross opened this issue Sep 29, 2014 · 2 comments

Comments

@agross
Copy link
Contributor

agross commented Sep 29, 2014

Just like in bundler, I'd like to see a --strict option to enable listing outdated packages w.r.t. the version constraints in paket.dependencies.

@forki
Copy link
Member

forki commented Sep 29, 2014

so --strict would be the mode we are currently running.
In the new default mode we would assume no version requirements are given in dependencies file and basically all is >= 0!?

How does this relate to #184?

@agross
Copy link
Contributor Author

agross commented Sep 29, 2014

paket.dependencies:

nuget Foo ~> 1.2 prerelease
nuget Bar ~> 1.2

paket outdated:

  • check for new versions of Foo, 0 <= x
  • check for new versions of Bar, 0 <= x

paket outdated --strict

  • check for new versions of Foo, 1.2 <= x < 2, including all prereleases
  • check for new versions of Bar, 1.2 <= x < 2

paket outdated --pre

  • check for new versions of Foo, 0 <= x, including all prereleases
  • check for new versions of Bar, 0 <= x, including all prereleases

paket outdated --strict --pre

  • check for new versions of Foo, 1.2 <= x < 2, including all prereleases
  • check for new versions of Bar, 1.2 <= x < 2, including all prereleases

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants