Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump the dependencies group across 1 directory with 4 up…
…dates (#15) Bumps the dependencies group with 4 updates in the / directory: [github.com/adrg/xdg](https://github.com/adrg/xdg), [github.com/fatih/color](https://github.com/fatih/color), [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) and [k8s.io/client-go](https://github.com/kubernetes/client-go). Updates `github.com/adrg/xdg` from 0.5.0 to 0.5.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/adrg/xdg/releases">github.com/adrg/xdg's releases</a>.</em></p> <blockquote> <h2>v0.5.3</h2> <h3>Changelog</h3> <ul> <li>Updated <code>xdg.SearchRuntimeFile</code> to also look in the operating system's temporary directory for runtime files. This covers unlikely cases in which runtime files cannot be written relative to the base runtime directory either because it does not exist or it is not accessible, so <code>xdg.RuntimeFile</code> suggests the operating system's temporary directory as a suitable fallback location.</li> </ul> <h3>Internal</h3> <ul> <li>Improved package testing.</li> </ul> <h2>v0.5.2</h2> <h3>Changelog</h3> <ul> <li> <p>Updated logic of <code>xdg.RuntimeFile</code>: due to the special nature of the <code>runtime directory</code>, the function no longer attempts to create it if it does not exist. If that's the case, the function uses the operating system's <code>temporary directory</code> as a fallback. The function still creates subdirectories relative to the base runtime directory or its fallback.</p> <p>Justification: the creation of the runtime directory is not in the scope of this package as it has special requirements defined by the <a href="https://specifications.freedesktop.org/basedir-spec/latest">XDG Base Directory Specification</a>. Relevant excerpt:</p> <blockquote> <p>The lifetime of the directory MUST be bound to the user being logged in. It MUST be created when the user first logs in and if the user fully logs out the directory MUST be removed. If the user logs in more than once they should get pointed to the same directory, and it is mandatory that the directory continues to exist from their first login to their last logout on the system, and not removed in between. Files in the directory MUST not survive reboot or a full logout/login cycle.</p> </blockquote> <p>Also, on <code>Linux</code>, the parent directories of the default user runtime directory are owned by the root user so they cannot be created by a regular user. <a href="https://www.freedesktop.org/software/systemd/man/latest/pam_systemd.html">pam_systemd</a> is usually responsible for creating the runtime directory (<code>/run/user/$UID</code>).</p> </li> </ul> <h2>v0.5.1</h2> <h3>Changelog</h3> <ul> <li>Added support for the non-standard <code>XDG_BIN_HOME</code> base directory. See <a href="https://github.com/adrg/xdg?tab=readme-ov-file#xdg-base-directory">XDG base directories</a> README section for more details.</li> <li>Added more config and data search locations on <code>macOS</code>. <ul> <li>Added <code>~/.config</code> at the end of the list of default locations for <code>XDG_CONFIG_DIRS</code>.</li> <li>Added <code>~/.local/share</code> at the end of the list of default locations for <code>XDG_DATA_DIRS</code>.</li> </ul> </li> <li>Added more application search locations on <code>Windows</code>: <ul> <li><code>%ProgramFiles%</code></li> <li><code>%ProgramFiles%\Common Files</code></li> <li><code>%LOCALAPPDATA%\Programs</code></li> <li><code>%LOCALAPPDATA%\Programs\Common</code></li> </ul> </li> </ul> <h3>Internal</h3> <ul> <li>Updated <code>golang.org/x/sys</code> dependency to the latest version.</li> <li>Improved package testing.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/adrg/xdg/commit/aa865a51a1b35fd06925fd6b8604991e79e3167e"><code>aa865a5</code></a> Merge pull request <a href="https://redirect.github.com/adrg/xdg/issues/101">#101</a> from adrg/update-search-runtime-file</li> <li><a href="https://github.com/adrg/xdg/commit/71a81eccf3e9ac9ebf03e8c11ca3ed60a06eac7f"><code>71a81ec</code></a> Minor xdg.SearchRuntimeFile function documentation update</li> <li><a href="https://github.com/adrg/xdg/commit/88111eba52ac2a211b97194266db5207c975c266"><code>88111eb</code></a> Minor example update in README.md and doc.go</li> <li><a href="https://github.com/adrg/xdg/commit/d9f76be86d944bf2b9bdb8544952111e2533f3ad"><code>d9f76be</code></a> Improve non-existent runtime directory test case</li> <li><a href="https://github.com/adrg/xdg/commit/800775a49c0a7877af5dca22104b90dc7e788cd0"><code>800775a</code></a> Update xdg.SearchRuntimeFile to also look in temporary directory</li> <li><a href="https://github.com/adrg/xdg/commit/2335a687b19a49dafb193856d64d911d33c4b3c1"><code>2335a68</code></a> Merge pull request <a href="https://redirect.github.com/adrg/xdg/issues/99">#99</a> from adrg/improve-runtime-file</li> <li><a href="https://github.com/adrg/xdg/commit/221e50698e5b31d277289e971f645299279efdd5"><code>221e506</code></a> Minor non-existent runtime directory test case fix on macOS</li> <li><a href="https://github.com/adrg/xdg/commit/9bbb6024b2e9ee213bbed1f63ae8ea6063767d5b"><code>9bbb602</code></a> Minor error format improvement in pathutil.Create and pathutil.Search</li> <li><a href="https://github.com/adrg/xdg/commit/987b3ce5c440036b799a21a633a699be91530d0a"><code>987b3ce</code></a> Minor README.md update</li> <li><a href="https://github.com/adrg/xdg/commit/3c39d559725cf005c392630100f4f338b49daf24"><code>3c39d55</code></a> Add non-existent runtime directory test case</li> <li>Additional commits viewable in <a href="https://github.com/adrg/xdg/compare/v0.5.0...v0.5.3">compare view</a></li> </ul> </details> <br /> Updates `github.com/fatih/color` from 1.17.0 to 1.18.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fatih/color/releases">github.com/fatih/color's releases</a>.</em></p> <blockquote> <h2>v1.18.0</h2> <h2>What's Changed</h2> <ul> <li>Add RGB API support by <a href="https://github.com/fatih"><code>@fatih</code></a> in <a href="https://redirect.github.com/fatih/color/pull/225">fatih/color#225</a></li> <li>Bump GitHub workflow actions by <a href="https://github.com/deining"><code>@deining</code></a> in <a href="https://redirect.github.com/fatih/color/pull/235">fatih/color#235</a></li> <li>Bump golang.org/x/sys from 0.18.0 to 0.24.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/fatih/color/pull/236">fatih/color#236</a></li> <li>Bump golang.org/x/sys from 0.24.0 to 0.25.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/fatih/color/pull/237">fatih/color#237</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/deining"><code>@deining</code></a> made their first contribution in <a href="https://redirect.github.com/fatih/color/pull/235">fatih/color#235</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/fatih/color/compare/v1.17.0...v1.18.0">https://github.com/fatih/color/compare/v1.17.0...v1.18.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fatih/color/commit/1c8d8706604ee5fb9a464e5097ba113101828a75"><code>1c8d870</code></a> Update README.md</li> <li><a href="https://github.com/fatih/color/commit/546c2d0f9aa4e97dab39a1ed273fd0aa08765972"><code>546c2d0</code></a> Merge pull request <a href="https://redirect.github.com/fatih/color/issues/225">#225</a> from fatih/add-rgb-api</li> <li><a href="https://github.com/fatih/color/commit/1ff0f9790840e92e289b824302f71b465c426735"><code>1ff0f97</code></a> Apply suggestions from code review</li> <li><a href="https://github.com/fatih/color/commit/5723903daae15b72846d40cf1483c37a1b86ba79"><code>5723903</code></a> Add RGB API support</li> <li><a href="https://github.com/fatih/color/commit/f203fbcecbc160dace4ffcec613221379365c67a"><code>f203fbc</code></a> Merge pull request <a href="https://redirect.github.com/fatih/color/issues/237">#237</a> from fatih/dependabot/go_modules/golang.org/x/sys-0.25.0</li> <li><a href="https://github.com/fatih/color/commit/60aa7fb483e2b048970dec3925d6c298ea428c4e"><code>60aa7fb</code></a> Bump golang.org/x/sys from 0.24.0 to 0.25.0</li> <li><a href="https://github.com/fatih/color/commit/741c2f4087173b24f4cb47ad02d93600b0d5c947"><code>741c2f4</code></a> Merge pull request <a href="https://redirect.github.com/fatih/color/issues/236">#236</a> from fatih/dependabot/go_modules/golang.org/x/sys-0.24.0</li> <li><a href="https://github.com/fatih/color/commit/0d24b42a27f768598c311ac3ec1961003418a90a"><code>0d24b42</code></a> Bump golang.org/x/sys from 0.18.0 to 0.24.0</li> <li><a href="https://github.com/fatih/color/commit/cb154c021886f50c313e686422c7baecff8c0b7f"><code>cb154c0</code></a> Merge pull request <a href="https://redirect.github.com/fatih/color/issues/235">#235</a> from deining/fix-typo</li> <li><a href="https://github.com/fatih/color/commit/9b9653e8ce3e644130b0412b9236c1d3e07a5017"><code>9b9653e</code></a> Bump GitHub workflow actions</li> <li>See full diff in <a href="https://github.com/fatih/color/compare/v1.17.0...v1.18.0">compare view</a></li> </ul> </details> <br /> Updates `k8s.io/apimachinery` from 0.31.1 to 0.32.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kubernetes/apimachinery/commit/59e9003f02d6f0c8fff53719a7a0604ec82ee9a9"><code>59e9003</code></a> Merge remote-tracking branch 'origin/master' into release-1.32</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/639247cc34a451d9c24d3c9465e88b36e7b9caab"><code>639247c</code></a> Drop use of winreadlinkvolume godebug option</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/220d7c35f6dbf7e4135f6797f63bcb20b363318b"><code>220d7c3</code></a> Merge remote-tracking branch 'origin/master' into release-1.32</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/c199d3b108c00d4f5ed254827327cb73f4440ae1"><code>c199d3b</code></a> Revert to go1.22 windows filesystem stdlib behavior</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/16af2ff33fbfcd4f89254113e5b7b3292972ca58"><code>16af2ff</code></a> implement unsafe deletion, and wire it</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/6ff8305a005aadec8b0ec2102fcec127e9087a10"><code>6ff8305</code></a> api: run codegen</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/ca9b8b23418e3f034f1b6e54172c8f6ef120ed93"><code>ca9b8b2</code></a> api: add a new field to meta/v1 DeleteOptions</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/d941d9fb4c83d0a840baa40a2f47329f37d7dade"><code>d941d9f</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes/apimachinery/issues/128503">#128503</a> from benluddy/cbor-codecs-featuregate</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/3b4250faac5a9ef994851a3aedf07479ab2265bc"><code>3b4250f</code></a> Wire serving codecs to CBOR feature gate.</li> <li><a href="https://github.com/kubernetes/apimachinery/commit/daaad096b3a068f3d022e37cbcc05bd13508a211"><code>daaad09</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes/apimachinery/issues/128501">#128501</a> from benluddy/watch-cbor-seq</li> <li>Additional commits viewable in <a href="https://github.com/kubernetes/apimachinery/compare/v0.31.1...v0.32.0">compare view</a></li> </ul> </details> <br /> Updates `k8s.io/client-go` from 0.31.1 to 0.32.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/kubernetes/client-go/commit/0d554618e21a4605cafd4264a685b916d2c024e9"><code>0d55461</code></a> Update dependencies to v0.32.0 tag</li> <li><a href="https://github.com/kubernetes/client-go/commit/4765adee376ddbdc4a899ae7c164bf20a4c10089"><code>4765ade</code></a> Merge remote-tracking branch 'origin/master' into release-1.32</li> <li><a href="https://github.com/kubernetes/client-go/commit/692a5111890f5aecfff875b8977667cf103c0c63"><code>692a511</code></a> Drop use of winreadlinkvolume godebug option</li> <li><a href="https://github.com/kubernetes/client-go/commit/9df5099247711aced8ef2de4a7967d844d468c5f"><code>9df5099</code></a> Merge remote-tracking branch 'origin/master' into release-1.32</li> <li><a href="https://github.com/kubernetes/client-go/commit/120beb24076eb56b89e43121f45ede69cbf35782"><code>120beb2</code></a> Revert to go1.22 windows filesystem stdlib behavior</li> <li><a href="https://github.com/kubernetes/client-go/commit/55d23e26d5ef883b6e608dae45aefaeed891b21f"><code>55d23e2</code></a> Align fake client-go clients with the main interface</li> <li><a href="https://github.com/kubernetes/client-go/commit/646e79b061a2d5e8db3dbeecd5ec57f9b35a497a"><code>646e79b</code></a> Run codegen</li> <li><a href="https://github.com/kubernetes/client-go/commit/c475fe0910d050d229d906a4d9c1484b7a40f4fd"><code>c475fe0</code></a> Generify fake clientsets</li> <li><a href="https://github.com/kubernetes/client-go/commit/955401ca9a151ba3e52179ea95d9dca2f4e48ab8"><code>955401c</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes/client-go/issues/128407">#128407</a> from ndixita/pod-level-resources</li> <li><a href="https://github.com/kubernetes/client-go/commit/eddb107938245aceee57035c5756d5fcdf37c9a1"><code>eddb107</code></a> Merge pull request <a href="https://redirect.github.com/kubernetes/client-go/issues/127857">#127857</a> from Jefftree/cle-v1alpha2</li> <li>Additional commits viewable in <a href="https://github.com/kubernetes/client-go/compare/v0.31.1...v0.32.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>
- Loading branch information