blob: 24c4581ea582bbef30b8e575c17b5fbf40aa140d [file] [log] [blame]
$ pub outdated --json
{
"packages": [
{
"package": "bar",
"current": null,
"upgradable": {
"version": "1.2.3"
},
"resolvable": {
"version": "2.0.0"
},
"latest": {
"version": "2.0.0"
}
},
{
"package": "foo",
"current": null,
"upgradable": {
"version": "1.2.3"
},
"resolvable": {
"version": "1.2.3"
},
"latest": {
"version": "1.2.3"
}
}
]
}
$ pub outdated --no-color
Showing outdated packages.
[*] indicates versions that are not the latest available.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - *1.2.3 2.0.0 2.0.0
foo - 1.2.3 1.2.3 1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --no-color --up-to-date
Showing outdated packages.
[*] indicates versions that are not the latest available.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - *1.2.3 2.0.0 2.0.0
foo - 1.2.3 1.2.3 1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --no-color --prereleases
Showing outdated packages.
[*] indicates versions that are not the latest available.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - *1.2.3 2.0.0 2.0.0
foo - 1.2.3 1.2.3 1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --no-color --no-dev-dependencies
Showing outdated packages.
[*] indicates versions that are not the latest available.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - *1.2.3 2.0.0 2.0.0
foo - 1.2.3 1.2.3 1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --no-color --no-dependency-overrides
Showing outdated packages.
[*] indicates versions that are not the latest available.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - *1.2.3 2.0.0 2.0.0
foo - 1.2.3 1.2.3 1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --no-color --mode=null-safety
Showing dependencies that are currently not opted in to null-safety.
[✗] indicates versions without null safety support.
[✓] indicates versions opting in to null safety.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - ✗1.2.3 ✗2.0.0 ✗2.0.0
foo - ✗1.2.3 ✗1.2.3 ✗1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --no-color --mode=null-safety --no-prereleases
Showing dependencies that are currently not opted in to null-safety.
[✗] indicates versions without null safety support.
[✓] indicates versions opting in to null safety.
Package Name Current Upgradable Resolvable Latest
direct dependencies:
bar - ✗1.2.3 ✗2.0.0 ✗2.0.0
foo - ✗1.2.3 ✗1.2.3 ✗1.2.3
No pubspec.lock found. There are no Current versions.
Run `pub get` to create a pubspec.lock with versions matching your pubspec.yaml.
1 dependency is constrained to a version that is older than a resolvable version.
To update it, edit pubspec.yaml.
$ pub outdated --json --mode=null-safety
{
"packages": [
{
"package": "bar",
"current": null,
"upgradable": {
"version": "1.2.3",
"nullSafety": false
},
"resolvable": {
"version": "2.0.0",
"nullSafety": false
},
"latest": {
"version": "2.0.0",
"nullSafety": false
}
},
{
"package": "foo",
"current": null,
"upgradable": {
"version": "1.2.3",
"nullSafety": false
},
"resolvable": {
"version": "1.2.3",
"nullSafety": false
},
"latest": {
"version": "1.2.3",
"nullSafety": false
}
}
]
}
$ pub outdated --json --no-dev-dependencies
{
"packages": [
{
"package": "bar",
"current": null,
"upgradable": {
"version": "1.2.3"
},
"resolvable": {
"version": "2.0.0"
},
"latest": {
"version": "2.0.0"
}
},
{
"package": "foo",
"current": null,
"upgradable": {
"version": "1.2.3"
},
"resolvable": {
"version": "1.2.3"
},
"latest": {
"version": "1.2.3"
}
}
]
}