Skip to content

Commit

Permalink
Bump github.com/google/certificate-transparency-go from 1.1.8 to 1.2.0 (
Browse files Browse the repository at this point in the history
#174)

Bumps
[github.com/google/certificate-transparency-go](https://github.com/google/certificate-transparency-go)
from 1.1.8 to 1.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/google/certificate-transparency-go/releases">github.com/google/certificate-transparency-go's
releases</a>.</em></p>
<blockquote>
<h2>v1.2.0</h2>
<h2>What's Changed</h2>
<h3>CTFE Storage Saving: Extra Data Issuance Chain Deduplication</h3>
<p>To reduce CT/Trillian database storage by deduplication of the entire
issuance chain (intermediate certificate(s) and root certificate) that
is currently stored in the Trillian merkle tree leaf ExtraData field.
Storage cost should be reduced by at least 33% for new CT logs with this
feature enabled. Currently only MySQL/MariaDB is supported to store the
issuance chain in the CTFE database.</p>
<p>Existing logs are not affected by this change.</p>
<p>Log operators can choose to opt-in this change for new CT logs by
adding new CTFE configs in the <a
href="https://github.com/google/certificate-transparency-go/blob/HEAD/trillian/ctfe/configpb/config.proto">LogMultiConfig</a>
and importing the <a
href="https://github.com/google/certificate-transparency-go/blob/HEAD/trillian/ctfe/storage/mysql/schema.sql">database
schema</a>. See <a
href="https://github.com/google/certificate-transparency-go/blob/HEAD/trillian/examples/deployment/docker/ctfe/ct_server.cfg">example</a>.</p>
<ul>
<li><code>ctfe_storage_connection_string</code></li>
<li><code>extra_data_issuance_chain_storage_backend</code></li>
</ul>
<p>An optional LRU cache can be enabled by providing the following
flags.</p>
<ul>
<li><code>cache_type</code></li>
<li><code>cache_size</code></li>
<li><code>cache_ttl</code></li>
</ul>
<p>This change is tested in Cloud Build tests using the
<code>mysql:8.4</code> Docker image as of the time of writing.</p>
<ul>
<li>Add issuance chain storage interface by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1430">google/certificate-transparency-go#1430</a></li>
<li>Add issuance chain cache interface by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1431">google/certificate-transparency-go#1431</a></li>
<li>Add CTFE extra data storage saving configs to config.proto by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1432">google/certificate-transparency-go#1432</a></li>
<li>Add new types <code>PrecertChainEntryHash</code> and
<code>CertificateChainHash</code> for TLS marshal/unmarshal in storage
saving by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1435">google/certificate-transparency-go#1435</a></li>
<li>Add IssuanceChainCache LRU implementation by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1454">google/certificate-transparency-go#1454</a></li>
<li>Add issuance chain service by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1452">google/certificate-transparency-go#1452</a></li>
<li>Add CTFE extra data storage saving configs validation by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1456">google/certificate-transparency-go#1456</a></li>
<li>Add IssuanceChainStorage MySQL implementation by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1462">google/certificate-transparency-go#1462</a></li>
<li>Fix errcheck lint in mysql test by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1464">google/certificate-transparency-go#1464</a></li>
<li>CTFE Extra Data Issuance Chain Deduplication by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1477">google/certificate-transparency-go#1477</a></li>
<li>Fix incorrect deployment doc and server config by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1494">google/certificate-transparency-go#1494</a></li>
</ul>
<h3>Submission proxy: Root compatibility checking</h3>
<ul>
<li>Adds the ability for a CT client to disable root compatibile
checking by <a
href="https://github.com/aaomidi"><code>@​aaomidi</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1258">google/certificate-transparency-go#1258</a></li>
</ul>
<h3>Fixes</h3>
<ul>
<li>Return 429 Too Many Requests for gRPC error code
<code>ResourceExhausted</code> from Trillian by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1401">google/certificate-transparency-go#1401</a></li>
<li>Safeguard against redirects on PUT request by <a
href="https://github.com/mhutchinson"><code>@​mhutchinson</code></a> in
<a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1418">google/certificate-transparency-go#1418</a></li>
<li>Fix CT client upload to be safe against no-op POSTs by <a
href="https://github.com/mhutchinson"><code>@​mhutchinson</code></a> in
<a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1424">google/certificate-transparency-go#1424</a></li>
</ul>
<h3>Misc</h3>
<ul>
<li>Prefix errors.New variables with the word &quot;Err&quot; by <a
href="https://github.com/aaomidi"><code>@​aaomidi</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1399">google/certificate-transparency-go#1399</a></li>
<li>Remove lint exceptions and fix remaining issues by <a
href="https://github.com/silaselisha"><code>@​silaselisha</code></a> in
<a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1438">google/certificate-transparency-go#1438</a></li>
<li>Fix invalid Go toolchain version by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1471">google/certificate-transparency-go#1471</a></li>
<li>Regenerate proto files by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1489">google/certificate-transparency-go#1489</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/google/certificate-transparency-go/blob/master/CHANGELOG.md">github.com/google/certificate-transparency-go's
changelog</a>.</em></p>
<blockquote>
<h2>v1.2.0</h2>
<h3>CTFE Storage Saving: Extra Data Issuance Chain Deduplication</h3>
<p>To reduce CT/Trillian database storage by deduplication of the entire
issuance chain (intermediate certificate(s) and root certificate) that
is currently stored in the Trillian merkle tree leaf ExtraData field.
Storage cost should be reduced by at least 33% for new CT logs with this
feature enabled. Currently only MySQL/MariaDB is supported to store the
issuance chain in the CTFE database.</p>
<p>Existing logs are not affected by this change.</p>
<p>Log operators can choose to opt-in this change for new CT logs by
adding new CTFE configs in the <a
href="https://github.com/google/certificate-transparency-go/blob/master/trillian/ctfe/configpb/config.proto">LogMultiConfig</a>
and importing the <a
href="https://github.com/google/certificate-transparency-go/blob/master/trillian/ctfe/storage/mysql/schema.sql">database
schema</a>. See <a
href="https://github.com/google/certificate-transparency-go/blob/master/trillian/examples/deployment/docker/ctfe/ct_server.cfg">example</a>.</p>
<ul>
<li><code>ctfe_storage_connection_string</code></li>
<li><code>extra_data_issuance_chain_storage_backend</code></li>
</ul>
<p>An optional LRU cache can be enabled by providing the following
flags.</p>
<ul>
<li><code>cache_type</code></li>
<li><code>cache_size</code></li>
<li><code>cache_ttl</code></li>
</ul>
<p>This change is tested in Cloud Build tests using the
<code>mysql:8.4</code> Docker image as of the time of writing.</p>
<ul>
<li>Add issuance chain storage interface by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1430">google/certificate-transparency-go#1430</a></li>
<li>Add issuance chain cache interface by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1431">google/certificate-transparency-go#1431</a></li>
<li>Add CTFE extra data storage saving configs to config.proto by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1432">google/certificate-transparency-go#1432</a></li>
<li>Add new types <code>PrecertChainEntryHash</code> and
<code>CertificateChainHash</code> for TLS marshal/unmarshal in storage
saving by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1435">google/certificate-transparency-go#1435</a></li>
<li>Add IssuanceChainCache LRU implementation by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1454">google/certificate-transparency-go#1454</a></li>
<li>Add issuance chain service by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1452">google/certificate-transparency-go#1452</a></li>
<li>Add CTFE extra data storage saving configs validation by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1456">google/certificate-transparency-go#1456</a></li>
<li>Add IssuanceChainStorage MySQL implementation by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1462">google/certificate-transparency-go#1462</a></li>
<li>Fix errcheck lint in mysql test by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1464">google/certificate-transparency-go#1464</a></li>
<li>CTFE Extra Data Issuance Chain Deduplication by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1477">google/certificate-transparency-go#1477</a></li>
<li>Fix incorrect deployment doc and server config by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1494">google/certificate-transparency-go#1494</a></li>
</ul>
<h3>Submission proxy: Root compatibility checking</h3>
<ul>
<li>Adds the ability for a CT client to disable root compatibile
checking by <a
href="https://github.com/aaomidi"><code>@​aaomidi</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1258">google/certificate-transparency-go#1258</a></li>
</ul>
<h3>Fixes</h3>
<ul>
<li>Return 429 Too Many Requests for gRPC error code
<code>ResourceExhausted</code> from Trillian by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1401">google/certificate-transparency-go#1401</a></li>
<li>Safeguard against redirects on PUT request by <a
href="https://github.com/mhutchinson"><code>@​mhutchinson</code></a> in
<a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1418">google/certificate-transparency-go#1418</a></li>
<li>Fix CT client upload to be safe against no-op POSTs by <a
href="https://github.com/mhutchinson"><code>@​mhutchinson</code></a> in
<a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1424">google/certificate-transparency-go#1424</a></li>
</ul>
<h3>Misc</h3>
<ul>
<li>Prefix errors.New variables with the word &quot;Err&quot; by <a
href="https://github.com/aaomidi"><code>@​aaomidi</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1399">google/certificate-transparency-go#1399</a></li>
<li>Remove lint exceptions and fix remaining issues by <a
href="https://github.com/silaselisha"><code>@​silaselisha</code></a> in
<a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1438">google/certificate-transparency-go#1438</a></li>
<li>Fix invalid Go toolchain version by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1471">google/certificate-transparency-go#1471</a></li>
<li>Regenerate proto files by <a
href="https://github.com/roger2hk"><code>@​roger2hk</code></a> in <a
href="https://redirect.github.com/google/certificate-transparency-go/pull/1489">google/certificate-transparency-go#1489</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/0c9c98f339b9304a5ffbff496c2b032883319607"><code>0c9c98f</code></a>
Update CHANGELOG.md for v1.2.0 release (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1495">#1495</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/998b8f632500444c3f46515db9cd382e5d3a7e53"><code>998b8f6</code></a>
Fix incorrect deployment doc and server config (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1494">#1494</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/414a850db654f7aedd14bd691aadc9c9c4dc87b2"><code>414a850</code></a>
Bump alpine from <code>58d02b4</code> to <code>77726ef</code> in
/internal/witness/cmd/feeder (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1493">#1493</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/e329a8e46cb23dc676a4248b980d221f9066d0be"><code>e329a8e</code></a>
--- (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1491">#1491</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/a3fb01efe6a369e66e14473aa846a350fa456efe"><code>a3fb01e</code></a>
CTFE Extra Data Issuance Chain Deduplication (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1477">#1477</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/64bda79ce48405c8468a18a127378b5a67c4816f"><code>64bda79</code></a>
--- (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1490">#1490</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/ae7c4dbe1780c45b0bc95a6d4108925ccfc78caa"><code>ae7c4db</code></a>
Regenerate proto files (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1489">#1489</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/0f0482045db2876afb80b0260f43764953dffac5"><code>0f04820</code></a>
Bump golang from <code>ef27a3c</code> to <code>5c56bd4</code> in
/internal/witness/cmd/feeder (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1488">#1488</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/d126563fb27504afd8df6099af0706b40329ef81"><code>d126563</code></a>
Bump actions/checkout from 4.1.5 to 4.1.6 (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1487">#1487</a>)</li>
<li><a
href="https://github.com/google/certificate-transparency-go/commit/c68d045126b8137dfbfdb1952055dfe2cd3bed18"><code>c68d045</code></a>
Bump golang in /trillian/examples/deployment/docker/ctfe (<a
href="https://redirect.github.com/google/certificate-transparency-go/issues/1486">#1486</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/google/certificate-transparency-go/compare/v1.1.8...v1.2.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/google/certificate-transparency-go&package-manager=go_modules&previous-version=1.1.8&new-version=1.2.0)](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>
  • Loading branch information
dependabot[bot] authored May 29, 2024
1 parent 93a31a6 commit 329b53b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/go-openapi/runtime v0.28.0
github.com/go-openapi/strfmt v0.23.0
github.com/go-openapi/swag v0.23.0
github.com/google/certificate-transparency-go v1.1.8
github.com/google/certificate-transparency-go v1.2.0
github.com/google/go-containerregistry v0.19.1
github.com/google/uuid v1.6.0
github.com/hashicorp/go-cleanhttp v0.5.2
Expand Down Expand Up @@ -226,7 +226,7 @@ require (
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/prometheus/client_golang v1.19.0 // indirect
github.com/prometheus/client_golang v1.19.1 // indirect
github.com/prometheus/client_model v0.6.0 // indirect
github.com/prometheus/common v0.51.1 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
Expand Down Expand Up @@ -285,14 +285,14 @@ require (
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.24.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/term v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.19.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
Expand All @@ -302,7 +302,7 @@ require (
google.golang.org/genproto/googleapis/api v0.0.0-20240311173647-c811ad7063a7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
google.golang.org/grpc v1.63.2 // indirect
google.golang.org/protobuf v1.34.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
Expand Down
39 changes: 20 additions & 19 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ github.com/blendle/zapdriver v1.3.1 h1:C3dydBOWYRiOk+B8X9IVZ5IOe+7cl+tGOexN4QqHf
github.com/blendle/zapdriver v1.3.1/go.mod h1:mdXfREi6u5MArG4j9fewC+FGnXaBR+T4Ox4J2u4eHCc=
github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I=
github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
github.com/bufbuild/protocompile v0.6.0 h1:Uu7WiSQ6Yj9DbkdnOe7U4mNKp58y9WDMKDn28/ZlunY=
github.com/bufbuild/protocompile v0.6.0/go.mod h1:YNP35qEYoYGme7QMtz5SBCoN4kL4g12jTtjuzRNdjpE=
github.com/bufbuild/protocompile v0.10.0 h1:+jW/wnLMLxaCEG8AX9lD0bQ5v9h1RUiMKOBOT5ll9dM=
github.com/bufbuild/protocompile v0.10.0/go.mod h1:G9qQIQo0xZ6Uyj6CMNz0saGmx2so+KONo8/KrELABiY=
github.com/buildkite/agent/v3 v3.62.0 h1:yvzSjI8Lgifw883I8m9u8/L/Thxt4cLFd5aWPn3gg70=
github.com/buildkite/agent/v3 v3.62.0/go.mod h1:jN6SokGXrVNNIpI0BGQ+j5aWeI3gin8F+3zwA5Q6gqM=
github.com/buildkite/go-pipeline v0.3.2 h1:SW4EaXNwfjow7xDRPGgX0Rcx+dPj5C1kV9LKCLjWGtM=
Expand Down Expand Up @@ -457,8 +457,8 @@ github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=
github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/certificate-transparency-go v1.1.8 h1:LGYKkgZF7satzgTak9R4yzfJXEeYVAjV6/EAEJOf1to=
github.com/google/certificate-transparency-go v1.1.8/go.mod h1:bV/o8r0TBKRf1X//iiiSgWrvII4d7/8OiA+3vG26gI8=
github.com/google/certificate-transparency-go v1.2.0 h1:5zPN6dsOmQkJzjIzNBjB1WoHi+84Rk1MOxZhElL1wSI=
github.com/google/certificate-transparency-go v1.2.0/go.mod h1:zeOPg1hdOZz0xyUxQcu+S48ozMdx6BXeaLMrFi9SF/Y=
github.com/google/flatbuffers v2.0.8+incompatible h1:ivUb1cGomAB101ZM1T0nOiWz9pSrTMoa9+EiY7igmkM=
github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8=
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 h1:0VpGH+cDhbDtdcweoyCVsF3fhN8kejK6rFe/2FFX2nU=
Expand Down Expand Up @@ -620,8 +620,8 @@ github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267 h1:TMtDYDHKYY
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267/go.mod h1:h1nSAbGFqGVzn6Jyl1R/iCcBUHN4g+gW1u9CoBTrb9E=
github.com/jellydator/ttlcache/v3 v3.2.0 h1:6lqVJ8X3ZaUwvzENqPAobDsXNExfUJd61u++uW8a3LE=
github.com/jellydator/ttlcache/v3 v3.2.0/go.mod h1:hi7MGFdMAwZna5n2tuvh63DvFLzVKySzCVW6+0gA2n4=
github.com/jhump/protoreflect v1.15.3 h1:6SFRuqU45u9hIZPJAoZ8c28T3nK64BNdp9w6jFonzls=
github.com/jhump/protoreflect v1.15.3/go.mod h1:4ORHmSBmlCW8fh3xHmJMGyul1zNqZK4Elxc8qKP+p1k=
github.com/jhump/protoreflect v1.16.0 h1:54fZg+49widqXYQ0b+usAFHbMkBGR4PpXrsHc8+TBDg=
github.com/jhump/protoreflect v1.16.0/go.mod h1:oYPd7nPvcBw/5wlDfm/AVmU9zH9BgqGCI469pGxfj/8=
github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg=
github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo=
github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=
Expand Down Expand Up @@ -771,8 +771,8 @@ github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqr
github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY=
github.com/prometheus/client_golang v1.12.2/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY=
github.com/prometheus/client_golang v1.13.0/go.mod h1:vTeo+zgvILHsnnj/39Ou/1fPN5nJFOEMgftOUOmlvYQ=
github.com/prometheus/client_golang v1.19.0 h1:ygXvpU1AoN1MhdzckN+PyD9QJOSD4x7kmXYlnfbA6JU=
github.com/prometheus/client_golang v1.19.0/go.mod h1:ZRM9uEAypZakd+q/x7+gmsvXdURP+DABIEIjnmDdp+k=
github.com/prometheus/client_golang v1.19.1 h1:wZWJDwK+NameRJuPGDhlnFgx8e8HN3XHQeLaYJFJBOE=
github.com/prometheus/client_golang v1.19.1/go.mod h1:mP78NwGzrVks5S2H6ab8+ZZGJLZUq1hoULYBAYBw1Ho=
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
Expand Down Expand Up @@ -1023,8 +1023,8 @@ golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4
golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58=
golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I=
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30=
golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M=
golang.org/x/crypto v0.23.0 h1:dIJU/v2J8Mdglj/8rJ6UUOM3Zc9zLZxVZwwxMooUSAI=
golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
Expand Down Expand Up @@ -1108,8 +1108,8 @@ golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ=
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
Expand Down Expand Up @@ -1196,17 +1196,17 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo=
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q=
golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk=
golang.org/x/term v0.20.0 h1:VnkxpohqXaOBYJtBmEppKUG6mXpi+4O6purfc2+sMhw=
golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
Expand All @@ -1219,8 +1219,9 @@ golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk=
golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
Expand Down Expand Up @@ -1375,8 +1376,8 @@ google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp0
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4=
google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand Down

0 comments on commit 329b53b

Please sign in to comment.