Skip to content

Commit d679059

Browse files
chore(deps): bump the go group with 6 updates (#682)
Bumps the go group with 6 updates: | Package | From | To | | --- | --- | --- | | cuelang.org/go | `0.13.1` | `0.13.2` | | [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) | `3.3.1` | `3.4.0` | | [github.com/fluxcd/pkg/runtime](https://github.com/fluxcd/pkg) | `0.60.0` | `0.62.0` | | [github.com/fluxcd/source-controller/api](https://github.com/fluxcd/source-controller) | `1.6.1` | `1.6.2` | | [sigs.k8s.io/kustomize/api](https://github.com/kubernetes-sigs/kustomize) | `0.19.0` | `0.20.0` | | [sigs.k8s.io/yaml](https://github.com/kubernetes-sigs/yaml) | `1.4.0` | `1.5.0` | Updates `cuelang.org/go` from 0.13.1 to 0.13.2 Updates `github.com/Masterminds/semver/v3` from 3.3.1 to 3.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Masterminds/semver/releases">github.com/Masterminds/semver/v3's releases</a>.</em></p> <blockquote> <h2>v3.4.0</h2> <p>There are a few changes in this release to highlight:</p> <ol> <li><code>Constraints</code> now has a property <code>IncludePrerelease</code>. When set to true the <code>Check</code> and <code>Validate</code> methods will include prereleases.</li> <li>When an AND group has one constraint with a prerelease but more than one constraint then prereleases will be included. For example, <code>&gt;1.0.0-beta.1 &lt; 2</code>. In the past this would not have included prereleases because each constraint needed to have a prerelease. Now, only one constraint needs to have a prerelease. This is considered a long standing bug fix. Note, this does not carry across OR groups. For example, <code>&gt;1.0.0-beta.1 &lt; 2 || &gt; 3</code>. In this case, prereleases will not be included when evaluating against <code>&gt;3</code>.</li> <li><code>NewVersion</code> coercion with leading &quot;0&quot;'s is restored. This can be disabled by setting the package level property <code>CoerceNewVersion</code> to <code>false</code>.</li> </ol> <h2>What's Changed</h2> <ul> <li>fix the CodeQL link by <a href="https://github.com/dmitris"><code>@​dmitris</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/257">Masterminds/semver#257</a></li> <li>Restore detailed errors when failed to parse with NewVersion by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/262">Masterminds/semver#262</a></li> <li>updating go version tested with by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/263">Masterminds/semver#263</a></li> <li>Restore the ability to have leading 0's with NewVersion by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/266">Masterminds/semver#266</a></li> <li>Handle pre-releases on all in an and group by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/267">Masterminds/semver#267</a></li> <li>Add property to include prereleases by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/268">Masterminds/semver#268</a></li> <li>Updating the error message handling by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/269">Masterminds/semver#269</a></li> <li>Update the release notes and readme for new version by <a href="https://github.com/mattfarina"><code>@​mattfarina</code></a> in <a href="https://redirect.github.com/Masterminds/semver/pull/270">Masterminds/semver#270</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/dmitris"><code>@​dmitris</code></a> made their first contribution in <a href="https://redirect.github.com/Masterminds/semver/pull/257">Masterminds/semver#257</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/Masterminds/semver/compare/v3.3.1...v3.4.0">https://github.com/Masterminds/semver/compare/v3.3.1...v3.4.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Masterminds/semver/blob/master/CHANGELOG.md">github.com/Masterminds/semver/v3's changelog</a>.</em></p> <blockquote> <h2>3.4.0 (2025-06-27)</h2> <h3>Added</h3> <ul> <li><a href="https://redirect.github.com/Masterminds/semver/issues/268">#268</a>: Added property to Constraints to include prereleases for Check and Validate</li> </ul> <h3>Changed</h3> <ul> <li><a href="https://redirect.github.com/Masterminds/semver/issues/263">#263</a>: Updated Go testing for 1.24, 1.23, and 1.22</li> <li><a href="https://redirect.github.com/Masterminds/semver/issues/269">#269</a>: Updated the error message handling for message case and wrapping errors</li> <li><a href="https://redirect.github.com/Masterminds/semver/issues/266">#266</a>: Restore the ability to have leading 0's when parsing with NewVersion. Opt-out of this by setting CoerceNewVersion to false.</li> </ul> <h3>Fixed</h3> <ul> <li><a href="https://redirect.github.com/Masterminds/semver/issues/257">#257</a>: Fixed the CodeQL link (thanks <a href="https://github.com/dmitris"><code>@​dmitris</code></a>)</li> <li><a href="https://redirect.github.com/Masterminds/semver/issues/262">#262</a>: Restored detailed errors when failed to parse with NewVersion. Opt-out of this by setting DetailedNewVersionErrors to false for faster performance.</li> <li><a href="https://redirect.github.com/Masterminds/semver/issues/267">#267</a>: Handle pre-releases for an &quot;and&quot; group if one constraint includes them</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Masterminds/semver/commit/61fc460d28283a91c53be65c2e0f20b494ac8ad9"><code>61fc460</code></a> Merge pull request <a href="https://redirect.github.com/Masterminds/semver/issues/270">#270</a> from mattfarina/relnotes-3.4.0</li> <li><a href="https://github.com/Masterminds/semver/commit/69a63e729f6254d980ff39c4ac89b5990f2be449"><code>69a63e7</code></a> Update the release notes and readme for new version</li> <li><a href="https://github.com/Masterminds/semver/commit/dc05094bcba909be3d0c14364bb14b5e9142dad4"><code>dc05094</code></a> Merge pull request <a href="https://redirect.github.com/Masterminds/semver/issues/269">#269</a> from mattfarina/lowercase-error-strings</li> <li><a href="https://github.com/Masterminds/semver/commit/a2cd9c2c2e49a0a0af115a08be31d410eacdf9e4"><code>a2cd9c2</code></a> Updating the error message handling</li> <li><a href="https://github.com/Masterminds/semver/commit/9760c473b7cc395e48276f7f2d0c33ae824e123a"><code>9760c47</code></a> Merge pull request <a href="https://redirect.github.com/Masterminds/semver/issues/268">#268</a> from mattfarina/include-prerelease</li> <li><a href="https://github.com/Masterminds/semver/commit/c3747513c320448dfaf6f75c6a06a14a6221896f"><code>c374751</code></a> Add property to include prereleases</li> <li><a href="https://github.com/Masterminds/semver/commit/057c901b9979a2a6b8e06adfbf96349a641ba2e1"><code>057c901</code></a> Merge pull request <a href="https://redirect.github.com/Masterminds/semver/issues/267">#267</a> from mattfarina/fix-259</li> <li><a href="https://github.com/Masterminds/semver/commit/abab1c2f5fcf52a1483bfc4be892a0ad42afd09a"><code>abab1c2</code></a> Handle pre-releases on all in an and group</li> <li><a href="https://github.com/Masterminds/semver/commit/ebda872fa10e6cc730c5973bbdb512b9511eb65e"><code>ebda872</code></a> Merge pull request <a href="https://redirect.github.com/Masterminds/semver/issues/266">#266</a> from mattfarina/restore-calver</li> <li><a href="https://github.com/Masterminds/semver/commit/4ed619ef3b4f63d7c94b2e19725c2719054de3bd"><code>4ed619e</code></a> Restore the ability to have leading 0's with NewVersion</li> <li>Additional commits viewable in <a href="https://github.com/Masterminds/semver/compare/v3.3.1...v3.4.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/fluxcd/pkg/runtime` from 0.60.0 to 0.62.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fluxcd/pkg/commit/645523ed6a220c6db7dfcbf7e1dfac904aeffa81"><code>645523e</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/pkg/issues/955">#955</a> from cappyzawa/add-deprecated-field-logging</li> <li><a href="https://github.com/fluxcd/pkg/commit/88a990f702b5dc7733523f7b4feb78509d6f38ae"><code>88a990f</code></a> runtime/secrets: add legacy field logging to TLS functions</li> <li><a href="https://github.com/fluxcd/pkg/commit/264a3b326b53aad92f98383179df34163fc3954e"><code>264a3b3</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/pkg/issues/954">#954</a> from fluxcd/fix-rsa-hk-algos</li> <li><a href="https://github.com/fluxcd/pkg/commit/343e4db1c817dd76321123aeeb28d124caf2af2d"><code>343e4db</code></a> Add test for cloning Azure DevOps Git repository with SSH</li> <li><a href="https://github.com/fluxcd/pkg/commit/780892cf5268f7ff8512044a8b3702b97b01d204"><code>780892c</code></a> Support rsa-sha2-512 and rsa-sha2-256 host key algos when ssh-rsa is supported</li> <li><a href="https://github.com/fluxcd/pkg/commit/e5de5fadd41cb728500335e0bdc7e016f35ce242"><code>e5de5fa</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/pkg/issues/951">#951</a> from cappyzawa/remove-runtime-tls-package</li> <li><a href="https://github.com/fluxcd/pkg/commit/aab45419270d23a64ce83b91260ee7efbb9d1671"><code>aab4541</code></a> runtime/tls: remove deprecated package</li> <li><a href="https://github.com/fluxcd/pkg/commit/5d705429d05b2057cbd33302e04f227eba553d3e"><code>5d70542</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/pkg/issues/950">#950</a> from cappyzawa/add-runtime-secrets-package</li> <li><a href="https://github.com/fluxcd/pkg/commit/deb3fae05dc253074f6c275ac223267cf665e38b"><code>deb3fae</code></a> fixup! fixup! runtime/secrets: add package for consolidated secret handling</li> <li><a href="https://github.com/fluxcd/pkg/commit/9eb2c695337fd74dee6808abce01f772fb3191f0"><code>9eb2c69</code></a> fixup! fixup! fixup! fixup! runtime/secrets: add package for consolidated sec...</li> <li>Additional commits viewable in <a href="https://github.com/fluxcd/pkg/compare/runtime/v0.60.0...runtime/v0.62.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/fluxcd/source-controller/api` from 1.6.1 to 1.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fluxcd/source-controller/releases">github.com/fluxcd/source-controller/api's releases</a>.</em></p> <blockquote> <h2>v1.6.2</h2> <h2>Changelog</h2> <p><a href="https://github.com/fluxcd/source-controller/blob/v1.6.2/CHANGELOG.md">v1.6.2 changelog</a></p> <h2>Container images</h2> <ul> <li><code>docker.io/fluxcd/source-controller:v1.6.2</code></li> <li><code>ghcr.io/fluxcd/source-controller:v1.6.2</code></li> </ul> <p>Supported architectures: <code>linux/amd64</code>, <code>linux/arm64</code> and <code>linux/arm/v7</code>.</p> <p>The container images are built on GitHub hosted runners and are signed with cosign and GitHub OIDC. To verify the images and their provenance (SLSA level 3), please see the <a href="https://fluxcd.io/flux/security/">security documentation</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fluxcd/source-controller/blob/main/CHANGELOG.md">github.com/fluxcd/source-controller/api's changelog</a>.</em></p> <blockquote> <h2>1.6.2</h2> <p><strong>Release date:</strong> 2025-06-27</p> <p>This patch release comes with a fix for <code>rsa-sha2-512</code> and <code>rsa-sha2-256</code> algorithms not being prioritized for <code>ssh-rsa</code> host keys.</p> <p>Fixes:</p> <ul> <li>Fix: Prioritize sha2-512 and sha2-256 for ssh-rsa host keys <a href="https://redirect.github.com/fluxcd/source-controller/pull/1839">#1839</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fluxcd/source-controller/commit/254ef2ec92b4855d2a09bf61a1a6e8b1ac34d4a5"><code>254ef2e</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/source-controller/issues/1842">#1842</a> from fluxcd/release-v1.6.2</li> <li><a href="https://github.com/fluxcd/source-controller/commit/5b4b54c75a5aa423fb25db28543f6c1629eb7cb2"><code>5b4b54c</code></a> Release v1.6.2</li> <li><a href="https://github.com/fluxcd/source-controller/commit/55b45275a1ea9118cecb0261a090a24dda6c5612"><code>55b4527</code></a> Add changelog entry for v1.6.2</li> <li><a href="https://github.com/fluxcd/source-controller/commit/837e2126c5e7a6f377a5adc598e6939dff9bdc51"><code>837e212</code></a> Merge pull request <a href="https://redirect.github.com/fluxcd/source-controller/issues/1840">#1840</a> from fluxcd/backport-1839-to-release/v1.6.x</li> <li><a href="https://github.com/fluxcd/source-controller/commit/cf3dcb74d2d9e4d6630e03772ca24e8ec4fa4af6"><code>cf3dcb7</code></a> Fix: Prioritize sha2-512 and sha2-256 for ssh-rsa host keys</li> <li>See full diff in <a href="https://github.com/fluxcd/source-controller/compare/v1.6.1...v1.6.2">compare view</a></li> </ul> </details> <br /> Updates `sigs.k8s.io/kustomize/api` from 0.19.0 to 0.20.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/kubernetes-sigs/kustomize/releases">sigs.k8s.io/kustomize/api's releases</a>.</em></p> <blockquote> <h2>api/v0.20.0</h2> <p><a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5630">#5630</a>: Add static value source for replacement <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5771">#5771</a>: fix: Allow patches with empty files with multiple newlines or comments <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5846">#5846</a>: fix: Get version from the BuildInfo.Main.Version if not found in deps and build flag <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5847">#5847</a>: replace deplecated package github.com/google/shlex with github.com/carapace-sh/carapace-shlex <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5859">#5859</a>: fix: Don't panic on multiple $patch: delete strategic merge patches in a single patch file <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5865">#5865</a>: feat(helm): allow the use of devel alias for helmcharts <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5873">#5873</a>: Bump to github.com/spf13/viper v1.20.0 <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5877">#5877</a>: fix: make private one field in replacements transformer struct that had a missing JSON tag <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5882">#5882</a>: Set Git messages to English for TestRemoteLoad_LocalProtocol <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5921">#5921</a>: feat: Add suport for Image Volumes <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5931">#5931</a>: Drop usage of forked copies of goyaml.v2 and goyaml.v3 <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5934">#5934</a>: Update kyaml to v0.20.0</p> <h2>cmd/config/v0.20.0</h2> <p><a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5873">#5873</a>: Bump to github.com/spf13/viper v1.20.0 <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5931">#5931</a>: Drop usage of forked copies of goyaml.v2 and goyaml.v3 <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5934">#5934</a>: Update kyaml to v0.20.0</p> <h2>kyaml/v0.20.0</h2> <p><a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5316">#5316</a>: feat: add exec-plugin argument and environment support <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5873">#5873</a>: Bump to github.com/spf13/viper v1.20.0 <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5931">#5931</a>: Drop usage of forked copies of goyaml.v2 and goyaml.v3</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/b1bfac465f3aae493e80ce1882f3e2c74ae8002e"><code>b1bfac4</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5935">#5935</a> from koba1t/pinToCmdConfig</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/40d1f35940670a3513a22d91b1e48b931c8254b7"><code>40d1f35</code></a> Update cmd/config to v0.20.0</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/1a515925ab1f82936c91ae531168b80f293ba505"><code>1a51592</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5934">#5934</a> from koba1t/pinToKyaml</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/f54b2b4c59bfd238c2a1e472e179a745f2659f50"><code>f54b2b4</code></a> Update kyaml to v0.20.0</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/03ae5c93ca49a451a4a149f63e268aec557a809a"><code>03ae5c9</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5846">#5846</a> from dmvolod/issue-5845-fix-version</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/0fe722e99a4a2406c0ba01e09188d9f4ababec73"><code>0fe722e</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5931">#5931</a> from dims/drop-usage-of-forked-copies-of-goyaml.v2-a...</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/a7703f685c1b5e960ab23dfe3956bbdb4aa4ebf3"><code>a7703f6</code></a> Drop usage of forked copies of goyaml.v2 and goyaml.v3</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/ba617e51269f49c44b61e8a815b18a2b45e3f3b9"><code>ba617e5</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5921">#5921</a> from ThisIsQasim/imagevolume</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/755880462fd916a6d0b55b691e75dbb3863cafae"><code>7558804</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5918">#5918</a> from kubernetes-sigs/dependabot/github_actions/joela...</li> <li><a href="https://github.com/kubernetes-sigs/kustomize/commit/832f873855de8b581656f3a2a043d954fd7b0527"><code>832f873</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/kustomize/issues/5927">#5927</a> from kubernetes-sigs/dependabot/go_modules/hack/gith...</li> <li>Additional commits viewable in <a href="https://github.com/kubernetes-sigs/kustomize/compare/api/v0.19.0...api/v0.20.0">compare view</a></li> </ul> </details> <br /> Updates `sigs.k8s.io/yaml` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/kubernetes-sigs/yaml/releases">sigs.k8s.io/yaml's releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>Bugfix: Handle unhashable keys during merge (<a href="https://redirect.github.com/kubernetes-sigs/yaml/pull/122">kubernetes-sigs/yaml#122</a>)</li> <li>Improvement: wrap errors returned by JSON unmarshal (<a href="https://redirect.github.com/kubernetes-sigs/yaml/pull/106">kubernetes-sigs/yaml#106</a>)</li> <li>Deprecation: Deprecate code in goyaml.v2 and goyaml.v3 directories, and redirect to equivalents in go.yaml.in/yaml/v2 and go.yaml.in/yaml/v3 (<a href="https://redirect.github.com/kubernetes-sigs/yaml/pull/133">kubernetes-sigs/yaml#133</a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/kubernetes-sigs/yaml/compare/v1.4.0...v1.5.0">https://github.com/kubernetes-sigs/yaml/compare/v1.4.0...v1.5.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/0f318dce2b6c41d0c47bf05f9b07c727dfa0cb90"><code>0f318dc</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/yaml/issues/134">#134</a> from kubernetes-sigs/forgot-to-add-redirects-for-cons...</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/b8fc0c032f68a1bd3e7658c743761fee7e668f70"><code>b8fc0c0</code></a> Forgot to add redirects for v3 constants</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/8eaa80239387b0153fcc59c9521ebda5f89a06ac"><code>8eaa802</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/yaml/issues/133">#133</a> from kubernetes-sigs/deprecate-code-in-goyaml.v3-goya...</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/69e45c10e93d2641def90d03e62054d45e8d520e"><code>69e45c1</code></a> Deprecate code in goyaml.v2/goyaml.v3 directories and redirect</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/0fe7da35edc6aa625b56143f278741913b204464"><code>0fe7da3</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/yaml/issues/125">#125</a> from kragniz/go-1.24</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/14cbb8893b8b84b623eec64e133e616c3a7033f7"><code>14cbb88</code></a> Test against go 1.24.x</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/c6ac2c9190b082fe8136151445a804dbf1daa8e8"><code>c6ac2c9</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/yaml/issues/126">#126</a> from kragniz/remove-travis</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/203ded930b90ad364efb2fcbad4bfc4fbc83f22e"><code>203ded9</code></a> Remove old travisci config file</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/b9a9b1cb9d17f91e923529e5dcd3df1a6500b6a3"><code>b9a9b1c</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes-sigs/yaml/issues/106">#106</a> from ThatsMrTalbot/patch-1</li> <li><a href="https://github.com/kubernetes-sigs/yaml/commit/4c6913f457f3ed3e2fe971555838d74d8fcf677b"><code>4c6913f</code></a> fix: wrap errors returned by JSON unmarshal</li> <li>Additional commits viewable in <a href="https://github.com/kubernetes-sigs/yaml/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gergely Brautigam <[email protected]>
1 parent ee3a135 commit d679059

File tree

2 files changed

+30
-23
lines changed

2 files changed

+30
-23
lines changed

go.mod

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ replace (
1212
)
1313

1414
require (
15-
cuelang.org/go v0.13.1
15+
cuelang.org/go v0.13.2
1616
github.com/Masterminds/semver v1.5.0
17-
github.com/Masterminds/semver/v3 v3.3.1
17+
github.com/Masterminds/semver/v3 v3.4.0
1818
github.com/containers/image/v5 v5.35.0
1919
github.com/cyphar/filepath-securejoin v0.4.1
2020
github.com/distribution/distribution/v3 v3.0.0
@@ -24,9 +24,9 @@ require (
2424
github.com/fluxcd/pkg/apis/meta v1.13.0
2525
github.com/fluxcd/pkg/http/fetch v0.16.0
2626
github.com/fluxcd/pkg/kustomize v1.18.0
27-
github.com/fluxcd/pkg/runtime v0.60.0
27+
github.com/fluxcd/pkg/runtime v0.62.0
2828
github.com/fluxcd/pkg/tar v0.12.0
29-
github.com/fluxcd/source-controller/api v1.6.1
29+
github.com/fluxcd/source-controller/api v1.6.2
3030
github.com/google/go-containerregistry v0.20.3
3131
github.com/mandelsoft/logging v0.0.0-20240618075559-fdca28a87b0a
3232
github.com/mandelsoft/spiff v1.7.0-beta-7
@@ -49,7 +49,7 @@ require (
4949
ocm.software/ocm v0.25.0
5050
sigs.k8s.io/controller-runtime v0.21.0
5151
sigs.k8s.io/e2e-framework v0.6.0
52-
sigs.k8s.io/kustomize/api v0.19.0
52+
sigs.k8s.io/kustomize/api v0.20.0
5353
)
5454

5555
require (
@@ -119,6 +119,7 @@ require (
119119
github.com/buildkite/go-pipeline v0.13.3 // indirect
120120
github.com/buildkite/interpolate v0.1.5 // indirect
121121
github.com/buildkite/roko v1.3.1 // indirect
122+
github.com/carapace-sh/carapace-shlex v1.0.1 // indirect
122123
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
123124
github.com/chai2010/gettext-go v1.0.3 // indirect
124125
github.com/chainguard-dev/git-urls v1.0.2 // indirect
@@ -206,7 +207,6 @@ require (
206207
github.com/google/go-github/v50 v50.2.0 // indirect
207208
github.com/google/go-querystring v1.1.0 // indirect
208209
github.com/google/s2a-go v0.1.9 // indirect
209-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
210210
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
211211
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
212212
github.com/gorilla/handlers v1.5.2 // indirect
@@ -348,6 +348,8 @@ require (
348348
go.opentelemetry.io/otel/trace v1.35.0 // indirect
349349
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
350350
go.step.sm/crypto v0.60.0 // indirect
351+
go.yaml.in/yaml/v2 v2.4.2 // indirect
352+
go.yaml.in/yaml/v3 v3.0.3 // indirect
351353
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
352354
golang.org/x/mod v0.25.0 // indirect
353355
golang.org/x/sync v0.15.0 // indirect
@@ -361,7 +363,7 @@ require (
361363
k8s.io/cli-runtime v0.33.1 // indirect
362364
k8s.io/kubectl v0.33.1 // indirect
363365
oras.land/oras-go/v2 v2.6.0 // indirect
364-
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
366+
sigs.k8s.io/kustomize/kyaml v0.20.0 // indirect
365367
sigs.k8s.io/randfill v1.0.0 // indirect
366368
sigs.k8s.io/release-utils v0.11.1 // indirect
367369
)
@@ -415,5 +417,5 @@ require (
415417
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect
416418
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
417419
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
418-
sigs.k8s.io/yaml v1.4.0
420+
sigs.k8s.io/yaml v1.5.0
419421
)

go.sum

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ code.gitea.io/sdk/gitea v0.21.0 h1:69n6oz6kEVHRo1+APQQyizkhrZrLsTLXey9142pfkD4=
1717
code.gitea.io/sdk/gitea v0.21.0/go.mod h1:tnBjVhuKJCn8ibdyyhvUyxrR1Ca2KHEoTWoukNhXQPA=
1818
cuelabs.dev/go/oci/ociregistry v0.0.0-20250304105642-27e071d2c9b1 h1:Dmbd5Q+ENb2C6carvwrMsrOUwJ9X9qfL5JdW32gYAHo=
1919
cuelabs.dev/go/oci/ociregistry v0.0.0-20250304105642-27e071d2c9b1/go.mod h1:dqrnoZx62xbOZr11giMPrWbhlaV8euHwciXZEy3baT8=
20-
cuelang.org/go v0.13.1 h1:gG01N9B7P95MsQh0EBmr63mVOz7seTP3KH/zg6oAvSs=
21-
cuelang.org/go v0.13.1/go.mod h1:8MoQXu+RcXsa2s9mebJN1HJ1orVDc9aI9/yKi6Dzsi4=
20+
cuelang.org/go v0.13.2 h1:SagzeEASX4E2FQnRbItsqa33sSelrJjQByLqH9uZCE8=
21+
cuelang.org/go v0.13.2/go.mod h1:8MoQXu+RcXsa2s9mebJN1HJ1orVDc9aI9/yKi6Dzsi4=
2222
dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s=
2323
dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
2424
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
@@ -78,8 +78,8 @@ github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ
7878
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
7979
github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww=
8080
github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y=
81-
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
82-
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
81+
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
82+
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
8383
github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY=
8484
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
8585
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
@@ -223,6 +223,8 @@ github.com/buildkite/interpolate v0.1.5 h1:v2Ji3voik69UZlbfoqzx+qfcsOKLA61nHdU79
223223
github.com/buildkite/interpolate v0.1.5/go.mod h1:dHnrwHew5O8VNOAgMDpwRlFnhL5VSN6M1bHVmRZ9Ccc=
224224
github.com/buildkite/roko v1.3.1 h1:t7K30ceLLYn6k7hQP4oq1c7dVlhgD5nRcuSRDEEnY1s=
225225
github.com/buildkite/roko v1.3.1/go.mod h1:23R9e6nHxgedznkwwfmqZ6+0VJZJZ2Sg/uVcp2cP46I=
226+
github.com/carapace-sh/carapace-shlex v1.0.1 h1:ww0JCgWpOVuqWG7k3724pJ18Lq8gh5pHQs9j3ojUs1c=
227+
github.com/carapace-sh/carapace-shlex v1.0.1/go.mod h1:lJ4ZsdxytE0wHJ8Ta9S7Qq0XpjgjU0mdfCqiI2FHx7M=
226228
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
227229
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
228230
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
@@ -379,8 +381,8 @@ github.com/fluxcd/pkg/http/fetch v0.16.0 h1:XzhBTSK5HNdAPEnEGMJHwtoN2LfqQ9QFDsu3
379381
github.com/fluxcd/pkg/http/fetch v0.16.0/go.mod h1:+A+yrOzwA5436ufD8NPeCCQFNzk4metoPUgRVCozvzw=
380382
github.com/fluxcd/pkg/kustomize v1.18.0 h1:wWK+qYwmBmba3N3VAqZ9ijnfVGGaIjcaHWo033URZTw=
381383
github.com/fluxcd/pkg/kustomize v1.18.0/go.mod h1:Ij9722MdWIE6B1EPg2ZJUf6npycgfRfN4Lohi7D/Kic=
382-
github.com/fluxcd/pkg/runtime v0.60.0 h1:d++EkV3FlycB+bzakB5NumwY4J8xts8i7lbvD6jBLeU=
383-
github.com/fluxcd/pkg/runtime v0.60.0/go.mod h1:UeU0/eZLErYC/1bTmgzBfNXhiHy9fuQzjfLK0HxRgxY=
384+
github.com/fluxcd/pkg/runtime v0.62.0 h1:7/ZW4WgT23HDySqx+MRzefoh/1XlW9D/7siAlE20SQw=
385+
github.com/fluxcd/pkg/runtime v0.62.0/go.mod h1:7pxGvaU0Yy1cDIUhiHAHhCx2yCLnkcVsplbYZG6j4JY=
384386
github.com/fluxcd/pkg/sourceignore v0.12.0 h1:jCIe6d50rQ3wdXPF0+PhhqN0XrTRIq3upMomPelI8Mw=
385387
github.com/fluxcd/pkg/sourceignore v0.12.0/go.mod h1:dc0zvkuXM5OgL/b3IkrVuwvPjj1zJn4NBUMH45uJ4Y0=
386388
github.com/fluxcd/pkg/ssa v0.46.0 h1:TGomtbA6zTfZrHF0TDn3mIGKH+bbX45zdWSkdYrwS8g=
@@ -391,8 +393,8 @@ github.com/fluxcd/pkg/testserver v0.11.0 h1:a/kxpFqv7XQxZjwVPP3voooRmSd/3ipLVolK
391393
github.com/fluxcd/pkg/testserver v0.11.0/go.mod h1:E8LAH1jW9uClFjTRN27Y/gCCSrzNVx1/w/0NxKuNcas=
392394
github.com/fluxcd/pkg/version v0.7.0 h1:jZT5I6WFy1KlM40nHCSqlHmjC1VT1/DfmbAdOkIVVJc=
393395
github.com/fluxcd/pkg/version v0.7.0/go.mod h1:3BjQDJXIZJmeJLXnfa2yG/sNAT1t5oeLAPfnSjOHNuA=
394-
github.com/fluxcd/source-controller/api v1.6.1 h1:ZPTA9lNzBYHmwHfFX978qb8xVkdnQZHF1ggo6BoFm4w=
395-
github.com/fluxcd/source-controller/api v1.6.1/go.mod h1:ZJcAi0nemsnBxjVgmJl0WQzNvB0rMETxQMTdoFosmMw=
396+
github.com/fluxcd/source-controller/api v1.6.2 h1:UmodAeqLIeF29HdTqf2GiacZyO+hJydJlepDaYsMvhc=
397+
github.com/fluxcd/source-controller/api v1.6.2/go.mod h1:ZJcAi0nemsnBxjVgmJl0WQzNvB0rMETxQMTdoFosmMw=
396398
github.com/foxcpp/go-mockdns v1.1.0 h1:jI0rD8M0wuYAxL7r/ynTrCQQq0BVqfB99Vgk7DlmewI=
397399
github.com/foxcpp/go-mockdns v1.1.0/go.mod h1:IhLeSFGed3mJIAXPH2aiRQB+kqz7oqu8ld2qVbOu7Wk=
398400
github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8=
@@ -542,8 +544,6 @@ github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 h1:BHT72Gu3keYf3ZEu2J
542544
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6/go.mod h1:boTsfXsheKC2y+lKOCMpSfarhxDeIzfZG1jqGcPl3cA=
543545
github.com/google/s2a-go v0.1.9 h1:LGD7gtMgezd8a/Xak7mEWL0PjoTQFvpRudN895yqKW0=
544546
github.com/google/s2a-go v0.1.9/go.mod h1:YA0Ei2ZQL3acow2O62kdp9UlnvMmU7kA6Eutn0dXayM=
545-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
546-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
547547
github.com/google/tink/go v1.7.0 h1:6Eox8zONGebBFcCBqkVmt60LaWZa6xg1cl/DwAh/J1w=
548548
github.com/google/tink/go v1.7.0/go.mod h1:GAUOd+QE3pgj9q8VKIGTCP33c/B7eb4NhxLcgTJZStM=
549549
github.com/google/trillian v1.7.1 h1:+zX8jLM3524bAMPS+VxaDIDgsMv3/ty6DuLWerHXcek=
@@ -1057,6 +1057,10 @@ go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
10571057
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
10581058
go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
10591059
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
1060+
go.yaml.in/yaml/v2 v2.4.2 h1:DzmwEr2rDGHl7lsFgAHxmNz/1NlQ7xLIrlN2h5d1eGI=
1061+
go.yaml.in/yaml/v2 v2.4.2/go.mod h1:081UH+NErpNdqlCXm3TtEran0rJZGxAYx9hb/ELlsPU=
1062+
go.yaml.in/yaml/v3 v3.0.3 h1:bXOww4E/J3f66rav3pX3m8w6jDE4knZjGOw8b5Y6iNE=
1063+
go.yaml.in/yaml/v3 v3.0.3/go.mod h1:tBHosrYAkRZjRAOREWbDnBXUf08JOwYq++0QNwQiWzI=
10601064
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
10611065
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
10621066
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
@@ -1298,18 +1302,19 @@ sigs.k8s.io/e2e-framework v0.6.0 h1:p7hFzHnLKO7eNsWGI2AbC1Mo2IYxidg49BiT4njxkrM=
12981302
sigs.k8s.io/e2e-framework v0.6.0/go.mod h1:IREnCHnKgRCioLRmNi0hxSJ1kJ+aAdjEKK/gokcZu4k=
12991303
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=
13001304
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg=
1301-
sigs.k8s.io/kustomize/api v0.19.0 h1:F+2HB2mU1MSiR9Hp1NEgoU2q9ItNOaBJl0I4Dlus5SQ=
1302-
sigs.k8s.io/kustomize/api v0.19.0/go.mod h1:/BbwnivGVcBh1r+8m3tH1VNxJmHSk1PzP5fkP6lbL1o=
1303-
sigs.k8s.io/kustomize/kyaml v0.19.0 h1:RFge5qsO1uHhwJsu3ipV7RNolC7Uozc0jUBC/61XSlA=
1304-
sigs.k8s.io/kustomize/kyaml v0.19.0/go.mod h1:FeKD5jEOH+FbZPpqUghBP8mrLjJ3+zD3/rf9NNu1cwY=
1305+
sigs.k8s.io/kustomize/api v0.20.0 h1:xPLqcobHI0bThyRUteO+nCV8G4d1Rlo5HafO57VRcas=
1306+
sigs.k8s.io/kustomize/api v0.20.0/go.mod h1:F6CfaV27oevRCMJgehLqyX81dlUnRX/Fc13Uo7+OSo4=
1307+
sigs.k8s.io/kustomize/kyaml v0.20.0 h1:tT8KMKi4R3hCJ1+9HDdek2VoXpkerP92ZfF6fDgGw14=
1308+
sigs.k8s.io/kustomize/kyaml v0.20.0/go.mod h1:0EmkQHRUsJxY8Ug9Niig1pUMSCGHxQ5RklbpV/Ri6po=
13051309
sigs.k8s.io/randfill v0.0.0-20250304075658-069ef1bbf016/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY=
13061310
sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU=
13071311
sigs.k8s.io/randfill v1.0.0/go.mod h1:XeLlZ/jmk4i1HRopwe7/aU3H5n1zNUcX6TM94b3QxOY=
13081312
sigs.k8s.io/release-utils v0.11.1 h1:hzvXGpHgHJfLOJB6TRuu14bzWc3XEglHmXHJqwClSZE=
13091313
sigs.k8s.io/release-utils v0.11.1/go.mod h1:ybR2V/uQAOGxYfzYtBenSYeXWkBGNP2qnEiX77ACtpc=
13101314
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 h1:qPeWmscJcXP0snki5IYF79Z8xrl8ETFxgMd7wez1XkI=
13111315
sigs.k8s.io/structured-merge-diff/v4 v4.7.0/go.mod h1:dDy58f92j70zLsuZVuUX5Wp9vtxXpaZnkPGWeqDfCps=
1312-
sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
13131316
sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY=
1317+
sigs.k8s.io/yaml v1.5.0 h1:M10b2U7aEUY6hRtU870n2VTPgR5RZiL/I6Lcc2F4NUQ=
1318+
sigs.k8s.io/yaml v1.5.0/go.mod h1:wZs27Rbxoai4C0f8/9urLZtZtF3avA3gKvGyPdDqTO4=
13141319
software.sslmate.com/src/go-pkcs12 v0.4.0 h1:H2g08FrTvSFKUj+D309j1DPfk5APnIdAQAB8aEykJ5k=
13151320
software.sslmate.com/src/go-pkcs12 v0.4.0/go.mod h1:Qiz0EyvDRJjjxGyUQa2cCNZn/wMyzrRJ/qcDXOQazLI=

0 commit comments

Comments
 (0)