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

spin plugins list --json #2958

Merged
merged 1 commit into from
Dec 16, 2024
Merged

spin plugins list --json #2958

merged 1 commit into from
Dec 16, 2024

Conversation

itowlson
Copy link
Contributor

@itowlson itowlson commented Dec 16, 2024

Fixes #2956

$ spin plugins list --format json --installed
[
  {
    "name": "check-for-update",
    "installed": true,
    "version": "0.1.0",
    "installedVersion": "0.1.0"
  },
  {
    "name": "cloud",
    "installed": true,
    "version": "0.10.0",
    "installedVersion": "0.10.0"
  },
# ...

$ spin plugins list --format json
[
  {
    "name": "check-for-update",
    "installed": false,
    "version": "0.0.1"
  },
  {
    "name": "check-for-update",
    "installed": true,
    "version": "0.1.0",
    "installedVersion": "0.1.0"
  },
  {
    "name": "cloud",
    "installed": false,
    "version": "0.9.1"
  },
  {
    "name": "cloud",
    "installed": true,
    "version": "0.10.0",
    "installedVersion": "0.10.0"
  },
  {
    "name": "cloud-gpu",
    "installed": false,
    "version": "0.1.0"
  },
# ...

Copy link
Member

@radu-matei radu-matei left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

LGTM

src/commands/plugins.rs Outdated Show resolved Hide resolved
src/commands/plugins.rs Outdated Show resolved Hide resolved
@itowlson itowlson enabled auto-merge December 16, 2024 18:33
@itowlson itowlson merged commit 74681e0 into fermyon:main Dec 16, 2024
15 of 17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

spin plugins list --json
3 participants