-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* main: (21 commits) chore(deps): bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 (#1862) chore(deps): bump modernc.org/sqlite from 1.22.1 to 1.23.0 (#1863) feat: source-version flag (#1859) chore(deps): bump github.com/spf13/viper from 1.15.0 to 1.16.0 (#1851) accept main.version ldflags even without vcs (#1855) feat: add scope to pom properties (#1779) chore(deps): bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#1852) chore(deps): bump github.com/docker/docker (#1849) Add test to ensure package metadata is represented in the JSON schema (#1841) Fix directory resolver to consider CWD and root path input correctly (#1840) Migrate location-related structs to the file package (#1751) chore(deps): bump github.com/go-git/go-git/v5 from 5.6.1 to 5.7.0 (#1843) fix: add panic recovery for license parse (#1839) chore: return both failures when failed to retrieve an image with a scheme (#1801) Extract go module versions from ldflags for binaries built by go (#1832) fix: duplicate packages, support pnpm lockfile v6 (#1778) chore(deps): update stereoscope to e14bc4437b2eac481c5b6f101890b22df4f33596 (#1834) chore(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.3 (#1829) chore(deps): bump github.com/docker/docker (#1833) Keep original FileInfo persisted on file.Metadata structs (#1794) ... Signed-off-by: Christopher Phillips <[email protected]>
- Loading branch information
Showing
345 changed files
with
8,375 additions
and
4,238 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 |
---|---|---|
@@ -1,27 +1,17 @@ | ||
#!/usr/bin/env bash | ||
set -u | ||
|
||
if ! git diff-index --quiet HEAD --; then | ||
git diff-index HEAD -- | ||
git --no-pager diff | ||
echo "there are uncommitted changes, please commit them before running this check" | ||
if [ "$(git status --porcelain | wc -l)" -ne "0" ]; then | ||
echo " 🔴 there are uncommitted changes, please commit them before running this check" | ||
exit 1 | ||
fi | ||
|
||
success=true | ||
|
||
if ! make generate-json-schema; then | ||
echo "Generating json schema failed" | ||
success=false | ||
fi | ||
|
||
if ! git diff-index --quiet HEAD --; then | ||
git diff-index HEAD -- | ||
git --no-pager diff | ||
echo "JSON schema drift detected!" | ||
success=false | ||
exit 1 | ||
fi | ||
|
||
if ! $success; then | ||
if [ "$(git status --porcelain | wc -l)" -ne "0" ]; then | ||
echo " 🔴 there are uncommitted changes, please commit them before running this check" | ||
exit 1 | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,13 +30,13 @@ require ( | |
// pinned to pull in 386 arch fix: https://github.com/scylladb/go-set/commit/cc7b2070d91ebf40d233207b633e28f5bd8f03a5 | ||
github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e | ||
github.com/sergi/go-diff v1.3.1 | ||
github.com/sirupsen/logrus v1.9.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spdx/tools-golang v0.5.0 | ||
github.com/spf13/afero v1.9.5 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.15.0 | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/spf13/viper v1.16.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/vifraa/gopom v0.2.1 | ||
github.com/wagoodman/go-partybus v0.0.0-20210627031916-db1f5573bbc5 | ||
github.com/wagoodman/go-progress v0.0.0-20230301185719-21920a456ad5 | ||
|
@@ -53,12 +53,13 @@ require ( | |
github.com/Masterminds/semver v1.5.0 | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/anchore/go-logger v0.0.0-20220728155337-03b66a5207d8 | ||
github.com/anchore/stereoscope v0.0.0-20230412183729-8602f1afc574 | ||
github.com/anchore/stereoscope v0.0.0-20230522170632-e14bc4437b2e | ||
github.com/dave/jennifer v1.6.1 | ||
github.com/deitch/magic v0.0.0-20230404182410-1ff89d7342da | ||
github.com/docker/docker v24.0.0+incompatible | ||
github.com/docker/docker v24.0.2+incompatible | ||
github.com/github/go-spdx/v2 v2.1.2 | ||
github.com/go-git/go-billy/v5 v5.4.1 | ||
github.com/go-git/go-git/v5 v5.6.1 | ||
github.com/go-git/go-git/v5 v5.7.0 | ||
github.com/google/go-containerregistry v0.15.2 | ||
github.com/google/licensecheck v0.3.1 | ||
github.com/invopop/jsonschema v0.7.0 | ||
|
@@ -68,7 +69,7 @@ require ( | |
github.com/vbatts/go-mtree v0.5.3 | ||
golang.org/x/exp v0.0.0-20230202163644-54bba9f4231b | ||
gopkg.in/yaml.v3 v3.0.1 | ||
modernc.org/sqlite v1.22.1 | ||
modernc.org/sqlite v1.23.0 | ||
) | ||
|
||
require ( | ||
|
@@ -77,33 +78,34 @@ require ( | |
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.0 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20230518184743-7afd39499903 // indirect | ||
github.com/acomagu/bufpipe v1.0.4 // indirect | ||
github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 // indirect | ||
github.com/becheran/wildmatch-go v1.0.0 // indirect | ||
github.com/cloudflare/circl v1.1.0 // indirect | ||
github.com/cloudflare/circl v1.3.3 // indirect | ||
github.com/containerd/containerd v1.7.0 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/cli v23.0.5+incompatible // indirect | ||
github.com/docker/distribution v2.8.1+incompatible // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect | ||
github.com/emirpasic/gods v1.18.1 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.0 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect | ||
github.com/go-restruct/restruct v1.2.0-alpha // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/huandu/xstrings v1.3.3 // indirect | ||
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/imdario/mergo v0.3.15 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect | ||
|
@@ -119,16 +121,15 @@ require ( | |
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/nwaples/rardecode v1.1.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.8 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.15 // indirect | ||
github.com/pjbgf/sha1cd v0.3.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/rogpeppe/go-internal v1.8.0 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
github.com/skeema/knownhosts v1.1.0 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/skeema/knownhosts v1.1.1 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
|
@@ -147,8 +148,8 @@ require ( | |
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd // indirect | ||
google.golang.org/grpc v1.54.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect | ||
google.golang.org/grpc v1.55.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
|
@@ -168,7 +169,7 @@ require ( | |
// go: warning: github.com/andybalholm/[email protected]: retracted by module author: occasional panics and data corruption | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
) | ||
|
||
retract ( | ||
|
Oops, something went wrong.