Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump github.com/google/certificate-transparency-go from 1.1.8 to 1.2.0 (
#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 "Err" 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 "Err" 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