phylum-dev / cli

Command line interface for the Phylum API
https://phylum.io
GNU General Public License v3.0
102 stars 10 forks source link

Lockfile information missing `phylum parse` #1316

Closed kylewillmon closed 9 months ago

kylewillmon commented 9 months ago

After 17b2fb6, there is no longer any lockfile information in the output of phylum parse. This is an unintentional regression.

v5.9.0

❯ phylum --version
phylum v5.9.0

❯ phylum parse --lockfile-type pip ./requirements.txt
Generating lockfile for manifest "requirements.txt" using Pip…
[
  {
    "name": "PyYAML",
    "version": "6.0.1",
    "type": "pypi",
    "lockfile": "requirements.txt"
  }
]

v6.0.0-rc1

❯ phylum --version
phylum v6.0.0-rc1

❯ phylum parse --type pip ./requirements.txt
Generating lockfile for manifest "requirements.txt" using Pip…
[
  {
    "name": "PyYAML",
    "version": "6.0.1",
    "type": "pypi"
  }
]