forked from anchore/syft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-openssl-binary
* main: (30 commits) Add binary classifier for the ERLang interpretter (anchore#2417) Add binary classifier for Julia lang (anchore#2427) Add binary detection for PHP composer (anchore#2432) chore(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0 (anchore#2433) chore(deps): update CPE dictionary index (anchore#2442) chore(deps): update stereoscope to 4b999b76ca8901d15bb97aef445dc94c38d11d5c (anchore#2440) fix syft-json test to use pretty json for snapshot testing (anchore#2441) refactor pkg.Collection (anchore#2439) refactor javascript cataloger to use configuration options when creating packages (anchore#2438) use single source of truth for archive options (anchore#2437) fix file digest cataloger when passed coordinates (anchore#2436) chore(deps): bump github.com/CycloneDX/cyclonedx-go from 0.7.2 to 0.8.0 (anchore#2413) Look for a maven version in a pom from a parent dependency management section (anchore#2423) Parse Python licenses from LicenseExpression entry in the Wheel Metadata (anchore#2431) chore(deps): bump github/codeql-action from 2.22.10 to 3.22.11 (anchore#2430) chore(deps): bump modernc.org/sqlite from 1.27.0 to 1.28.0 (anchore#2429) chore(deps): update tools to latest versions (anchore#2428) Parse Python licenses from LicenseFile entry in the Wheel Metadata (anchore#2331) fix: use filepath instead of path for file source exclusions (anchore#2411) chore(deps): bump github.com/charmbracelet/bubbletea (anchore#2424) ...
- Loading branch information
Showing
41 changed files
with
485 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,7 @@ tools: | |
|
||
- name: gh | ||
version: | ||
want: v2.39.2 | ||
want: v2.40.1 | ||
method: github-release | ||
with: | ||
repo: cli/cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ module github.com/anchore/syft | |
go 1.21.0 | ||
|
||
require ( | ||
github.com/CycloneDX/cyclonedx-go v0.7.2 | ||
github.com/CycloneDX/cyclonedx-go v0.8.0 | ||
github.com/Masterminds/semver v1.5.0 | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d | ||
|
@@ -16,12 +16,12 @@ require ( | |
github.com/anchore/go-testutils v0.0.0-20200925183923-d5f45b0d3c04 | ||
github.com/anchore/go-version v1.2.2-0.20200701162849-18adb9c92b9b | ||
github.com/anchore/packageurl-go v0.1.1-0.20230104203445-02e0a6721501 | ||
github.com/anchore/stereoscope v0.0.0-20231117203853-3610f4ef3e83 | ||
github.com/anchore/stereoscope v0.0.0-20231215220732-4b999b76ca89 | ||
// we are hinting brotli to latest due to warning when installing archiver v3: | ||
// go: warning: github.com/andybalholm/[email protected]: retracted by module author: occasional panics and data corruption | ||
github.com/aquasecurity/go-pep440-version v0.0.0-20210121094942-22b2f8951d46 | ||
github.com/bmatcuk/doublestar/v4 v4.6.1 | ||
github.com/charmbracelet/bubbletea v0.24.2 | ||
github.com/charmbracelet/bubbletea v0.25.0 | ||
github.com/charmbracelet/lipgloss v0.9.1 | ||
github.com/dave/jennifer v1.7.0 | ||
github.com/deitch/magic v0.0.0-20230404182410-1ff89d7342da | ||
|
@@ -32,12 +32,12 @@ require ( | |
github.com/github/go-spdx/v2 v2.2.0 | ||
github.com/gkampitakis/go-snaps v0.4.12 | ||
github.com/go-git/go-billy/v5 v5.5.0 | ||
github.com/go-git/go-git/v5 v5.10.1 | ||
github.com/go-git/go-git/v5 v5.11.0 | ||
github.com/go-test/deep v1.1.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/go-containerregistry v0.17.0 | ||
github.com/google/licensecheck v0.3.1 | ||
github.com/google/uuid v1.4.0 | ||
github.com/google/uuid v1.5.0 | ||
github.com/gookit/color v1.5.4 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/iancoleman/strcase v0.3.0 | ||
|
@@ -53,7 +53,7 @@ require ( | |
github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/opencontainers/go-digest v1.0.0 | ||
github.com/pelletier/go-toml v1.9.5 | ||
github.com/saferwall/pe v1.4.7 | ||
github.com/saferwall/pe v1.4.8 | ||
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d | ||
github.com/sanity-io/litter v1.5.5 | ||
github.com/sassoftware/go-rpmutils v0.2.0 | ||
|
@@ -73,7 +73,7 @@ require ( | |
golang.org/x/mod v0.14.0 | ||
golang.org/x/net v0.19.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
modernc.org/sqlite v1.27.0 | ||
modernc.org/sqlite v1.28.0 | ||
) | ||
|
||
require ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.