Bumps [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) from 0.69.0 to 0.70.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/releases">github.com/open-policy-agent/opa's releases</a>.</em></p> <blockquote> <h2>v0.70.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Optimized read mode for OPA's in-memory store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7125">#7125</a>)</h3> <p>A new optimized read mode has been added to the default in-memory store, where data written to the store is eagerly converted to AST values (the data format used during evaluation). This removes the time spent converting raw data values to AST during policy evaluation, thereby improving performance.</p> <p>The memory footprint of the store will increase, as processed AST values generally take up more space in memory than the corresponding raw data values, but overall memory usage of OPA might remain more stable over time, as pre-converted data is shared across evaluations and isn't recomputed for each evaluation, which can cause spikes in memory usage.</p> <p>This mode can be enabled for <code>opa run</code>, <code>opa eval</code>, and <code>opa bench</code> by setting the <code>--optimize-store-for-read-speed</code> flag.</p> <p>More information about this feature can be found <a href="https://www.openpolicyagent.org/docs/v0.70.0/policy-performance/#storage-optimization">here</a>.</p> <p>Co-authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a> and <a href="https://github.com/ashutosh-narkar"><code>@ashutosh-narkar</code></a>.</p> <h3>Topdown and Rego</h3> <ul> <li>topdown: Use new Inter-Query Value Cache for <code>json.match_schema</code> built-in function (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7011">#7011</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a> reported by <a href="https://github.com/lcarva"><code>@lcarva</code></a></li> <li>ast: Fix location text attribute for multi-value rules with generated body (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7128">#7128</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a></li> <li>ast: Fix regression in <code>opa check</code> where a file that referenced non-provided schemas failed validation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7124">#7124</a>) authored by <a href="https://github.com/tjons"><code>@tjons</code></a></li> <li>test/cases/testdata: Fix bug in test by replacing unification by explicit equality check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7093">#7093</a>) authored by <a href="https://github.com/matajoh"><code>@matajoh</code></a></li> <li>ast: Replace use of yaml.v2 library with yaml.v3. The earlier version would parse <code>yes</code>/<code>no</code> values as boolean. The usage of yaml.v2 in the parser was unintentional and now has been updated to yaml.v3 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7090">#7090</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>cmd: Make <code>opa check</code> respect <code>--ignore</code> when <code>--bundle</code> flag is set (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7136">#7136</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a></li> <li>server/writer: Properly handle result encoding errors which earlier on failure would emit logs such as <code>superfluous call to WriteHeader()</code> while still returning <code>200</code> HTTP status code. Now, errors encoding the payload properly lead to <code>500</code> HTTP status code, without extra logs. Also use Header().Set() not Header().Add() to avoid duplicate content-type headers (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7114">#7114</a>) authored by <a href="https://github.com/srenatus"><code>@srenatus</code></a></li> <li>cmd: Support <code>file://</code> format for TLS key material file flags in <code>opa run</code> (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7094">#7094</a>) authored by <a href="https://github.com/alexrohozneanu"><code>@alexrohozneanu</code></a></li> <li>plugins/rest/azure: Support managed identity for App Service / Container Apps (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7085">#7085</a>) reported and authored by <a href="https://github.com/apc-kamezaki"><code>@apc-kamezaki</code></a></li> <li>debug: Fix step-over behaviour when exiting partial rules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7096">#7096</a>) authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a></li> <li>util+plugins: Fix potential memory leaks with explicit timer cancellation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7089">#7089</a>) authored by <a href="https://github.com/philipaconrad"><code>@philipaconrad</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Fix OCI example with updated flag used by the ORAS CLI (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7130">#7130</a>) authored by <a href="https://github.com/b3n3d17"><code>@b3n3d17</code></a></li> <li>docs: Delete Atom editor from supported editor integrations (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7111">#7111</a>) authored by <a href="https://github.com/KaranbirSingh7"><code>@KaranbirSingh7</code></a></li> <li>docs/website: Add Styra OPA ASP.NET Core SDK integration (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7073">#7073</a>) authored by <a href="https://github.com/philipaconrad"><code>@philipaconrad</code></a></li> <li>docs/website: Update compatibility information on the rego-cpp integration (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7078">#7078</a>) authored by <a href="https://github.com/matajoh"><code>@matajoh</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>Dependency updates; notably: <ul> <li>build(deps): bump github.com/containerd/containerd from 1.7.22 to 1.7.23</li> <li>build(deps): bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5</li> <li>build(deps): bump golang.org/x/net from 0.29.0 to 0.30.0</li> <li>build(deps): bump golang.org/x/time from 0.6.0 to 0.7.0</li> <li>build(deps): bump google.golang.org/grpc from 1.67.0 to 1.67.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md">github.com/open-policy-agent/opa's changelog</a>.</em></p> <blockquote> <h2>0.70.0</h2> <p>This release contains a mix of features, performance improvements, and bugfixes.</p> <h3>Optimized read mode for OPA's in-memory store (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7125">#7125</a>)</h3> <p>A new optimized read mode has been added to the default in-memory store, where data written to the store is eagerly converted to AST values (the data format used during evaluation). This removes the time spent converting raw data values to AST during policy evaluation, thereby improving performance.</p> <p>The memory footprint of the store will increase, as processed AST values generally take up more space in memory than the corresponding raw data values, but overall memory usage of OPA might remain more stable over time, as pre-converted data is shared across evaluations and isn't recomputed for each evaluation, which can cause spikes in memory usage.</p> <p>This mode can be enabled for <code>opa run</code>, <code>opa eval</code>, and <code>opa bench</code> by setting the <code>--optimize-store-for-read-speed</code> flag.</p> <p>More information about this feature can be found <a href="https://www.openpolicyagent.org/docs/v0.70.0/policy-performance/#storage-optimization">here</a>.</p> <p>Co-authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a> and <a href="https://github.com/ashutosh-narkar"><code>@ashutosh-narkar</code></a>.</p> <h3>Topdown and Rego</h3> <ul> <li>topdown: Use new Inter-Query Value Cache for <code>json.match_schema</code> built-in function (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7011">#7011</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a> reported by <a href="https://github.com/lcarva"><code>@lcarva</code></a></li> <li>ast: Fix location text attribute for multi-value rules with generated body (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7128">#7128</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a></li> <li>ast: Fix regression in <code>opa check</code> where a file that referenced non-provided schemas failed validation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7124">#7124</a>) authored by <a href="https://github.com/tjons"><code>@tjons</code></a></li> <li>test/cases/testdata: Fix bug in test by replacing unification by explicit equality check (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7093">#7093</a>) authored by <a href="https://github.com/matajoh"><code>@matajoh</code></a></li> <li>ast: Replace use of yaml.v2 library with yaml.v3. The earlier version would parse <code>yes</code>/<code>no</code> values as boolean. The usage of yaml.v2 in the parser was unintentional and now has been updated to yaml.v3 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7090">#7090</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a></li> </ul> <h3>Runtime, Tooling, SDK</h3> <ul> <li>cmd: Make <code>opa check</code> respect <code>--ignore</code> when <code>--bundle</code> flag is set (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7136">#7136</a>) authored by <a href="https://github.com/anderseknert"><code>@anderseknert</code></a></li> <li>server/writer: Properly handle result encoding errors which earlier on failure would emit logs such as <code>superfluous call to WriteHeader()</code> while still returning <code>200</code> HTTP status code. Now, errors encoding the payload properly lead to <code>500</code> HTTP status code, without extra logs. Also use Header().Set() not Header().Add() to avoid duplicate content-type headers (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7114">#7114</a>) authored by <a href="https://github.com/srenatus"><code>@srenatus</code></a></li> <li>cmd: Support <code>file://</code> format for TLS key material file flags in <code>opa run</code> (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7094">#7094</a>) authored by <a href="https://github.com/alexrohozneanu"><code>@alexrohozneanu</code></a></li> <li>plugins/rest/azure: Support managed identity for App Service / Container Apps (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7085">#7085</a>) reported and authored by <a href="https://github.com/apc-kamezaki"><code>@apc-kamezaki</code></a></li> <li>debug: Fix step-over behaviour when exiting partial rules (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7096">#7096</a>) authored by <a href="https://github.com/johanfylling"><code>@johanfylling</code></a></li> <li>util+plugins: Fix potential memory leaks with explicit timer cancellation (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7089">#7089</a>) authored by <a href="https://github.com/philipaconrad"><code>@philipaconrad</code></a></li> </ul> <h3>Docs, Website, Ecosystem</h3> <ul> <li>docs: Fix OCI example with updated flag used by the ORAS CLI (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7130">#7130</a>) authored by <a href="https://github.com/b3n3d17"><code>@b3n3d17</code></a></li> <li>docs: Delete Atom editor from supported editor integrations (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7111">#7111</a>) authored by <a href="https://github.com/KaranbirSingh7"><code>@KaranbirSingh7</code></a></li> <li>docs/website: Add Styra OPA ASP.NET Core SDK integration (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7073">#7073</a>) authored by <a href="https://github.com/philipaconrad"><code>@philipaconrad</code></a></li> <li>docs/website: Update compatibility information on the rego-cpp integration (<a href="https://redirect.github.com/open-policy-agent/opa/pull/7078">#7078</a>) authored by <a href="https://github.com/matajoh"><code>@matajoh</code></a></li> </ul> <h3>Miscellaneous</h3> <ul> <li>Dependency updates; notably: <ul> <li>build(deps): bump github.com/containerd/containerd from 1.7.22 to 1.7.23</li> <li>build(deps): bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5</li> <li>build(deps): bump golang.org/x/net from 0.29.0 to 0.30.0</li> <li>build(deps): bump golang.org/x/time from 0.6.0 to 0.7.0</li> <li>build(deps): bump google.golang.org/grpc from 1.67.0 to 1.67.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="2ea031ea04"><code>2ea031e</code></a> Prepare v0.70.0 release</li> <li><a href="6af5e79bd9"><code>6af5e79</code></a> storage: Optimized read mode for default data storage</li> <li><a href="1b797d9c1b"><code>1b797d9</code></a> Make <code>opa check</code> respect <code>--ignore</code> when <code>--bundle</code> flag is set (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7137">#7137</a>)</li> <li><a href="8e44b98993"><code>8e44b98</code></a> build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7138">#7138</a>)</li> <li><a href="ad6ffdae6a"><code>ad6ffda</code></a> build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7135">#7135</a>)</li> <li><a href="67fe53bfbe"><code>67fe53b</code></a> Update Andrew Peabody to emeritus (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7133">#7133</a>)</li> <li><a href="30f374713b"><code>30f3747</code></a> build(deps): bump github/codeql-action from 3.26.13 to 3.27.0</li> <li><a href="f7957bdd73"><code>f7957bd</code></a> 🐛 fix: oras cli changed to --config</li> <li><a href="58ec50b4b0"><code>58ec50b</code></a> Fix location for multivalue rules with generated bodies (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7129">#7129</a>)</li> <li><a href="555fe84094"><code>555fe84</code></a> only check schemas when schemas are provided (<a href="https://redirect.github.com/open-policy-agent/opa/issues/7124">#7124</a>)</li> <li>Additional commits viewable in <a href="https://github.com/open-policy-agent/opa/compare/v0.69.0...v0.70.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
200 lines
10 KiB
Modula-2
200 lines
10 KiB
Modula-2
module github.com/docker/attest
|
|
|
|
go 1.22.8
|
|
|
|
require (
|
|
github.com/Masterminds/semver/v3 v3.3.0
|
|
github.com/aws/aws-sdk-go-v2/config v1.28.1
|
|
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20231024185945-8841054dbdb8
|
|
github.com/containerd/containerd/v2 v2.0.0-rc.6
|
|
github.com/containerd/platforms v0.2.1
|
|
github.com/distribution/reference v0.6.0
|
|
github.com/docker-library/bashbrew v0.1.12
|
|
github.com/go-git/go-git/v5 v5.12.0
|
|
github.com/go-openapi/runtime v0.28.0
|
|
github.com/go-openapi/strfmt v0.23.0
|
|
github.com/google/go-containerregistry v0.20.2
|
|
github.com/in-toto/in-toto-golang v0.9.0
|
|
github.com/open-policy-agent/opa v0.70.0
|
|
github.com/opencontainers/image-spec v1.1.0
|
|
github.com/package-url/packageurl-go v0.1.3
|
|
github.com/secure-systems-lab/go-securesystemslib v0.8.0
|
|
github.com/sigstore/cosign/v2 v2.4.1
|
|
github.com/sigstore/rekor v1.3.6
|
|
github.com/sigstore/sigstore v1.8.10
|
|
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.8.10
|
|
github.com/sigstore/sigstore/pkg/signature/kms/gcp v1.8.10
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/theupdateframework/go-tuf/v2 v2.0.2
|
|
google.golang.org/api v0.204.0
|
|
sigs.k8s.io/yaml v1.4.0
|
|
)
|
|
|
|
// fork with changes to support ArtifactType (https://github.com/google/go-containerregistry/pull/1931)
|
|
replace github.com/google/go-containerregistry => github.com/docker/go-containerregistry v0.0.0-20240808132857-c8bfc44af7c8
|
|
|
|
require (
|
|
cloud.google.com/go v0.116.0 // indirect
|
|
cloud.google.com/go/auth v0.10.0 // indirect
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect
|
|
cloud.google.com/go/compute/metadata v0.5.2 // indirect
|
|
cloud.google.com/go/iam v1.2.1 // indirect
|
|
cloud.google.com/go/kms v1.20.0 // indirect
|
|
cloud.google.com/go/longrunning v0.6.1 // indirect
|
|
dario.cat/mergo v1.0.1 // indirect
|
|
github.com/Microsoft/go-winio v0.6.2 // indirect
|
|
github.com/Microsoft/hcsshim v0.12.8 // indirect
|
|
github.com/OneOfOne/xxhash v1.2.8 // indirect
|
|
github.com/ProtonMail/go-crypto v1.0.0 // indirect
|
|
github.com/agnivade/levenshtein v1.2.0 // indirect
|
|
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
|
github.com/aws/aws-sdk-go-v2 v1.32.3 // indirect
|
|
github.com/aws/aws-sdk-go-v2/credentials v1.17.42 // indirect
|
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.18 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.22 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.22 // indirect
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/ecr v1.29.1 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.24.1 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.0 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.3 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/kms v1.37.2 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sso v1.24.3 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.3 // indirect
|
|
github.com/aws/aws-sdk-go-v2/service/sts v1.32.3 // indirect
|
|
github.com/aws/smithy-go v1.22.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/blang/semver v3.5.1+incompatible // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/cloudflare/circl v1.3.8 // indirect
|
|
github.com/containerd/containerd v1.7.23 // indirect
|
|
github.com/containerd/errdefs v0.3.0 // indirect
|
|
github.com/containerd/log v0.1.0 // indirect
|
|
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
|
|
github.com/cyberphone/json-canonicalization v0.0.0-20231217050601-ba74d44ecf5f // indirect
|
|
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352 // indirect
|
|
github.com/digitorus/timestamp v0.0.0-20231217203849-220c5c2851b7 // indirect
|
|
github.com/docker/cli v27.1.1+incompatible // indirect
|
|
github.com/docker/distribution v2.8.3+incompatible // indirect
|
|
github.com/docker/docker-credential-helpers v0.8.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/emirpasic/gods v1.18.1 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
github.com/go-chi/chi v4.1.2+incompatible // indirect
|
|
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
|
|
github.com/go-git/go-billy/v5 v5.5.0 // indirect
|
|
github.com/go-ini/ini v1.67.0 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/go-openapi/analysis v0.23.0 // indirect
|
|
github.com/go-openapi/errors v0.22.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/loads v0.22.0 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/go-openapi/validate v0.24.0 // indirect
|
|
github.com/gobwas/glob v0.2.3 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/certificate-transparency-go v1.2.1 // indirect
|
|
github.com/google/s2a-go v0.1.8 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
|
|
github.com/gorilla/mux v1.8.1 // indirect
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
|
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
|
|
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
|
|
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267 // indirect
|
|
github.com/jellydator/ttlcache/v3 v3.3.0 // indirect
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/kevinburke/ssh_config v1.2.0 // indirect
|
|
github.com/klauspost/compress v1.17.11 // indirect
|
|
github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/nozzle/throttler v0.0.0-20180817012639-2ea982251481 // indirect
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
|
|
github.com/pjbgf/sha1cd v0.3.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus/client_golang v1.20.5 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.55.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
|
|
github.com/rogpeppe/go-internal v1.13.1 // indirect
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
github.com/sassoftware/relic v7.2.1+incompatible // indirect
|
|
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
|
|
github.com/shibumi/go-pathspec v1.3.0 // indirect
|
|
github.com/sigstore/protobuf-specs v0.3.2 // indirect
|
|
github.com/sigstore/timestamp-authority v1.2.2 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/skeema/knownhosts v1.2.2 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
github.com/spf13/cobra v1.8.1 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/spf13/viper v1.19.0 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
|
|
github.com/tchap/go-patricia/v2 v2.3.1 // indirect
|
|
github.com/theupdateframework/go-tuf v0.7.0 // indirect
|
|
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
|
|
github.com/transparency-dev/merkle v0.0.2 // indirect
|
|
github.com/vbatts/tar-split v0.11.5 // indirect
|
|
github.com/xanzy/ssh-agent v0.3.3 // indirect
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
github.com/yashtewari/glob-intersection v0.2.0 // indirect
|
|
go.mongodb.org/mongo-driver v1.15.0 // indirect
|
|
go.opencensus.io v0.24.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 // indirect
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
|
|
go.opentelemetry.io/otel v1.31.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.31.0 // indirect
|
|
go.opentelemetry.io/otel/sdk v1.31.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.31.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.uber.org/zap v1.27.0 // indirect
|
|
golang.org/x/crypto v0.28.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
|
|
golang.org/x/mod v0.21.0 // indirect
|
|
golang.org/x/net v0.30.0 // indirect
|
|
golang.org/x/oauth2 v0.23.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.26.0 // indirect
|
|
golang.org/x/term v0.25.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
golang.org/x/time v0.7.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect
|
|
google.golang.org/grpc v1.67.1 // indirect
|
|
google.golang.org/protobuf v1.35.1 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/warnings.v0 v0.1.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
gotest.tools/v3 v3.5.1 // indirect
|
|
k8s.io/klog/v2 v2.130.1 // indirect
|
|
pault.ag/go/debian v0.12.0 // indirect
|
|
pault.ag/go/topsort v0.1.1 // indirect
|
|
)
|