Commit d679059
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>>1.0.0-beta.1 < 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>>1.0.0-beta.1 < 2 || > 3</code>. In
this case, prereleases will not be included when evaluating against
<code>>3</code>.</li>
<li><code>NewVersion</code> coercion with leading "0"'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 "and" 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
2 files changed
+30
-23
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
119 | 119 | | |
120 | 120 | | |
121 | 121 | | |
| 122 | + | |
122 | 123 | | |
123 | 124 | | |
124 | 125 | | |
| |||
206 | 207 | | |
207 | 208 | | |
208 | 209 | | |
209 | | - | |
210 | 210 | | |
211 | 211 | | |
212 | 212 | | |
| |||
348 | 348 | | |
349 | 349 | | |
350 | 350 | | |
| 351 | + | |
| 352 | + | |
351 | 353 | | |
352 | 354 | | |
353 | 355 | | |
| |||
361 | 363 | | |
362 | 364 | | |
363 | 365 | | |
364 | | - | |
| 366 | + | |
365 | 367 | | |
366 | 368 | | |
367 | 369 | | |
| |||
415 | 417 | | |
416 | 418 | | |
417 | 419 | | |
418 | | - | |
| 420 | + | |
419 | 421 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
| 20 | + | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
82 | | - | |
| 81 | + | |
| 82 | + | |
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
| |||
223 | 223 | | |
224 | 224 | | |
225 | 225 | | |
| 226 | + | |
| 227 | + | |
226 | 228 | | |
227 | 229 | | |
228 | 230 | | |
| |||
379 | 381 | | |
380 | 382 | | |
381 | 383 | | |
382 | | - | |
383 | | - | |
| 384 | + | |
| 385 | + | |
384 | 386 | | |
385 | 387 | | |
386 | 388 | | |
| |||
391 | 393 | | |
392 | 394 | | |
393 | 395 | | |
394 | | - | |
395 | | - | |
| 396 | + | |
| 397 | + | |
396 | 398 | | |
397 | 399 | | |
398 | 400 | | |
| |||
542 | 544 | | |
543 | 545 | | |
544 | 546 | | |
545 | | - | |
546 | | - | |
547 | 547 | | |
548 | 548 | | |
549 | 549 | | |
| |||
1057 | 1057 | | |
1058 | 1058 | | |
1059 | 1059 | | |
| 1060 | + | |
| 1061 | + | |
| 1062 | + | |
| 1063 | + | |
1060 | 1064 | | |
1061 | 1065 | | |
1062 | 1066 | | |
| |||
1298 | 1302 | | |
1299 | 1303 | | |
1300 | 1304 | | |
1301 | | - | |
1302 | | - | |
1303 | | - | |
1304 | | - | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + | |
| 1308 | + | |
1305 | 1309 | | |
1306 | 1310 | | |
1307 | 1311 | | |
1308 | 1312 | | |
1309 | 1313 | | |
1310 | 1314 | | |
1311 | 1315 | | |
1312 | | - | |
1313 | 1316 | | |
| 1317 | + | |
| 1318 | + | |
1314 | 1319 | | |
1315 | 1320 | | |
0 commit comments