Skip to content

Commit

Permalink
chore(deps): bump the go group across 1 directory with 12 updates (#463)
Browse files Browse the repository at this point in the history
Bumps the go group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/adrg/xdg](https://github.com/adrg/xdg) | `0.5.0` | `0.5.3`
|
| [github.com/elliotchance/pie/v2](https://github.com/elliotchance/pie)
| `2.9.0` | `2.9.1` |
| [github.com/fatih/color](https://github.com/fatih/color) | `1.17.0` |
`1.18.0` |
| [github.com/go-git/go-billy/v5](https://github.com/go-git/go-billy) |
`5.5.0` | `5.6.0` |
|
[github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin)
| `1.6.1` | `1.6.2` |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) |
`2.22.0` | `2.23.0` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) |
`1.9.0` | `1.10.0` |
| [github.com/zclconf/go-cty](https://github.com/zclconf/go-cty) |
`1.15.0` | `1.15.1` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.23.0` |
`0.24.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.8.0` |
`0.9.0` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.21.0` |
`0.22.0` |


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/elliotchance/pie/v2` from 2.9.0 to 2.9.1
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/elliotchance/pie/commit/16969447f3c63553ac1d7177e45a220312ecf06e"><code>1696944</code></a>
Simplify ZipLongest and fix typo (<a
href="https://redirect.github.com/elliotchance/pie/issues/204">#204</a>)</li>
<li>See full diff in <a
href="https://github.com/elliotchance/pie/compare/v2.9.0...v2.9.1">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 `github.com/go-git/go-billy/v5` from 5.5.0 to 5.6.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/go-git/go-billy/releases">github.com/go-git/go-billy/v5's
releases</a>.</em></p>
<blockquote>
<h2>v5.6.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Adding support for wasm/wasip1 by <a
href="https://github.com/tryggvil"><code>@​tryggvil</code></a> in <a
href="https://redirect.github.com/go-git/go-billy/pull/36">go-git/go-billy#36</a></li>
<li><code>Memory.ReadDir()</code> should return an error when path isn't
found. by <a
href="https://github.com/weberc2-tempus"><code>@​weberc2-tempus</code></a>
in <a
href="https://redirect.github.com/go-git/go-billy/pull/38">go-git/go-billy#38</a></li>
<li>Adding support for WriteAt by <a
href="https://github.com/sfc-gh-thardie"><code>@​sfc-gh-thardie</code></a>
in <a
href="https://redirect.github.com/go-git/go-billy/pull/39">go-git/go-billy#39</a></li>
<li>Update memfs.New() to create root directory by <a
href="https://github.com/onee-only"><code>@​onee-only</code></a> in <a
href="https://redirect.github.com/go-git/go-billy/pull/45">go-git/go-billy#45</a></li>
<li>Fix symlink by <a
href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-billy/pull/46">go-git/go-billy#46</a></li>
<li>Close via defer by <a
href="https://github.com/spennymac"><code>@​spennymac</code></a> in <a
href="https://redirect.github.com/go-git/go-billy/pull/47">go-git/go-billy#47</a></li>
<li>General improvements to memfs by <a
href="https://github.com/pjbgf"><code>@​pjbgf</code></a> in <a
href="https://redirect.github.com/go-git/go-billy/pull/50">go-git/go-billy#50</a></li>
<li>boundos:insideBaseDirEval: return true if baseDir is &quot;/&quot;
by <a href="https://github.com/rminnich"><code>@​rminnich</code></a> in
<a
href="https://redirect.github.com/go-git/go-billy/pull/48">go-git/go-billy#48</a></li>
<li>Add wrapper for io/fs by <a
href="https://github.com/evankanderson"><code>@​evankanderson</code></a>
in <a
href="https://redirect.github.com/go-git/go-billy/pull/81">go-git/go-billy#81</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/dependabot"><code>@​dependabot</code></a> made
their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/35">go-git/go-billy#35</a></li>
<li><a href="https://github.com/tryggvil"><code>@​tryggvil</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/36">go-git/go-billy#36</a></li>
<li><a
href="https://github.com/weberc2-tempus"><code>@​weberc2-tempus</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/38">go-git/go-billy#38</a></li>
<li><a
href="https://github.com/sfc-gh-thardie"><code>@​sfc-gh-thardie</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/39">go-git/go-billy#39</a></li>
<li><a href="https://github.com/onee-only"><code>@​onee-only</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/45">go-git/go-billy#45</a></li>
<li><a href="https://github.com/spennymac"><code>@​spennymac</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/47">go-git/go-billy#47</a></li>
<li><a href="https://github.com/rminnich"><code>@​rminnich</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/48">go-git/go-billy#48</a></li>
<li><a
href="https://github.com/evankanderson"><code>@​evankanderson</code></a>
made their first contribution in <a
href="https://redirect.github.com/go-git/go-billy/pull/81">go-git/go-billy#81</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/go-git/go-billy/compare/v5.5.0...v5.6.0">https://github.com/go-git/go-billy/compare/v5.5.0...v5.6.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/go-git/go-billy/commit/371e232676ac6807a104d8d2d3373b2327840aff"><code>371e232</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-billy/issues/85">#85</a>
from go-git/dependabot/github_actions/github/codeql-ac...</li>
<li><a
href="https://github.com/go-git/go-billy/commit/5087c4c251600ff8cc1acc24550fda2198df78a0"><code>5087c4c</code></a>
build: bump github/codeql-action from 3.26.10 to 3.26.11</li>
<li><a
href="https://github.com/go-git/go-billy/commit/5f263c9795347f5aee705461a94508e07b91ca9e"><code>5f263c9</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-billy/issues/84">#84</a>
from go-git/dependabot/github_actions/github/codeql-ac...</li>
<li><a
href="https://github.com/go-git/go-billy/commit/18ec09879c80c3f00ec2127ed6d4740bb07ab4f4"><code>18ec098</code></a>
build: bump github/codeql-action from 3.26.8 to 3.26.10</li>
<li><a
href="https://github.com/go-git/go-billy/commit/c1ee0b97d109c16ed86df17914d3273cb4273176"><code>c1ee0b9</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-billy/issues/81">#81</a>
from evankanderson/iofs</li>
<li><a
href="https://github.com/go-git/go-billy/commit/b50bc97051ea4bdfef26dd45fdc00d6611483f0b"><code>b50bc97</code></a>
Rename Wrap to New</li>
<li><a
href="https://github.com/go-git/go-billy/commit/9745bbbd34318edf62e9108ec7132a73376094e0"><code>9745bbb</code></a>
Merge pull request <a
href="https://redirect.github.com/go-git/go-billy/issues/83">#83</a>
from go-git/dependabot/github_actions/github/codeql-ac...</li>
<li><a
href="https://github.com/go-git/go-billy/commit/d864d47c2c6c8f7d0f0774ed85f84fc01ac1eab9"><code>d864d47</code></a>
build: bump github/codeql-action from 3.26.7 to 3.26.8</li>
<li><a
href="https://github.com/go-git/go-billy/commit/b8c5b1bd59024b0644aaef23ed43177ca8301f7f"><code>b8c5b1b</code></a>
Prevent test failures on Windows, address feedback from pjbgf</li>
<li><a
href="https://github.com/go-git/go-billy/commit/28f6c4986d403626559b92aa275cac0ceeda6439"><code>28f6c49</code></a>
Fix test handling on go &lt; 1.23</li>
<li>Additional commits viewable in <a
href="https://github.com/go-git/go-billy/compare/v5.5.0...v5.6.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `github.com/hashicorp/go-plugin` from 1.6.1 to 1.6.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/go-plugin/releases">github.com/hashicorp/go-plugin's
releases</a>.</em></p>
<blockquote>
<h2>v1.6.2</h2>
<p>ENHANCEMENTS:</p>
<ul>
<li>Added support for gRPC dial options to the <code>Dial</code> API [<a
href="https://redirect.github.com/hashicorp/go-plugin/pull/257">GH-257</a>]</li>
</ul>
<p>BUGS:</p>
<ul>
<li>Fixed a bug where reattaching to a plugin that exits could kill an
unrelated process [<a
href="https://redirect.github.com/hashicorp/go-plugin/pull/320">GH-320</a>]</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/go-plugin/blob/main/CHANGELOG.md">github.com/hashicorp/go-plugin's
changelog</a>.</em></p>
<blockquote>
<h2>v1.6.2</h2>
<p>ENHANCEMENTS:</p>
<ul>
<li>Added support for gRPC dial options to the <code>Dial</code> API [<a
href="https://redirect.github.com/hashicorp/go-plugin/pull/257">GH-257</a>]</li>
</ul>
<p>BUGS:</p>
<ul>
<li>Fixed a bug where reattaching to a plugin that exits could kill an
unrelated process [<a
href="https://redirect.github.com/hashicorp/go-plugin/pull/320">GH-320</a>]</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hashicorp/go-plugin/commit/edcdee4bf2988be29bef88954e2b053f443a26b0"><code>edcdee4</code></a>
changelog for 1.6.2 (<a
href="https://redirect.github.com/hashicorp/go-plugin/issues/322">#322</a>)</li>
<li><a
href="https://github.com/hashicorp/go-plugin/commit/df94fce41bf7ae74623f805506fcffae12fc270a"><code>df94fce</code></a>
reattach: don't kill process on failed reconnection (<a
href="https://redirect.github.com/hashicorp/go-plugin/issues/320">#320</a>)</li>
<li><a
href="https://github.com/hashicorp/go-plugin/commit/7e5ceaa743d6d6aa6a24133595a34c3103aa49ea"><code>7e5ceaa</code></a>
Fix test and add CI (<a
href="https://redirect.github.com/hashicorp/go-plugin/issues/321">#321</a>)</li>
<li><a
href="https://github.com/hashicorp/go-plugin/commit/0c4f5641082a5bfaeb3faf21440faa5badce539c"><code>0c4f564</code></a>
Fix typo in Doc comment (<a
href="https://redirect.github.com/hashicorp/go-plugin/issues/307">#307</a>)</li>
<li><a
href="https://github.com/hashicorp/go-plugin/commit/06afb6d7ae99fca0002c4eecfd7b973073982672"><code>06afb6d</code></a>
GRPCBroker: add DialWithOptions (<a
href="https://redirect.github.com/hashicorp/go-plugin/issues/257">#257</a>)</li>
<li><a
href="https://github.com/hashicorp/go-plugin/commit/0e45961bf24c59ae3749f98f50038b9c1c21bbda"><code>0e45961</code></a>
Remove go-testing-interface from go-plugin (<a
href="https://redirect.github.com/hashicorp/go-plugin/issues/312">#312</a>)</li>
<li>See full diff in <a
href="https://github.com/hashicorp/go-plugin/compare/v1.6.1...v1.6.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `github.com/hashicorp/hcl/v2` from 2.22.0 to 2.23.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/hcl/releases">github.com/hashicorp/hcl/v2's
releases</a>.</em></p>
<blockquote>
<h2>v2.23.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Preserve marks when traversing unknown values by <a
href="https://github.com/jbardin"><code>@​jbardin</code></a> in <a
href="https://redirect.github.com/hashicorp/hcl/pull/699">hashicorp/hcl#699</a></li>
<li>Better control of marks through conditional and for expressions by
<a href="https://github.com/jbardin"><code>@​jbardin</code></a> in <a
href="https://redirect.github.com/hashicorp/hcl/pull/710">hashicorp/hcl#710</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/hashicorp/hcl/compare/v2.22.0...v2.23.0">https://github.com/hashicorp/hcl/compare/v2.22.0...v2.23.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md">github.com/hashicorp/hcl/v2's
changelog</a>.</em></p>
<blockquote>
<h2>v2.23.0 (November 15, 2024)</h2>
<h3>Bugs Fixed</h3>
<ul>
<li>Preserve marks when traversing through unknown values. (<a
href="https://redirect.github.com/hashicorp/hcl/pull/699">#699</a>)</li>
<li>Retain marks through conditional and for expressions. (<a
href="https://redirect.github.com/hashicorp/hcl/pull/710">#710</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hashicorp/hcl/commit/56a9aee5207dbaed7f061cd926b96fc159d26ea0"><code>56a9aee</code></a>
Merge pull request <a
href="https://redirect.github.com/hashicorp/hcl/issues/710">#710</a>
from hashicorp/jbardin/marked-conditions</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/b48ba6ecbfd16da22e3ad5476427744f9bee47b1"><code>b48ba6e</code></a>
pass marks through unknown ForExpr values</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/bbfec2d532518e6536b9924d1f039abd07c6f2ef"><code>bbfec2d</code></a>
pass all marks through conditional expressions</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/d20d07fa73707e58954493bdd600c1fb0a0d4c77"><code>d20d07f</code></a>
github: Pin action refs to latest trusted by TSCCR (<a
href="https://redirect.github.com/hashicorp/hcl/issues/700">#700</a>)</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/3883feb0e06458153e8a1b56566582b6725330d2"><code>3883feb</code></a>
docs(ext/dynblock): recursive function call typo in detecting variables
(<a
href="https://redirect.github.com/hashicorp/hcl/issues/686">#686</a>)</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/2eb163fdee4d453381ada085060569475c0c6864"><code>2eb163f</code></a>
Merge pull request <a
href="https://redirect.github.com/hashicorp/hcl/issues/701">#701</a>
from hashicorp/d/fix-typo</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/65971e8952c195172870bd11cf1bb34be6bd718d"><code>65971e8</code></a>
docs: use 'by' instead of 'prior to'</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/1dfc778b7de90d03c632055cd1b8b65a3f69f66d"><code>1dfc778</code></a>
docs: fix typo</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/78fe99307e883ea5cc12483c1832d4889346e7f7"><code>78fe993</code></a>
Merge pull request <a
href="https://redirect.github.com/hashicorp/hcl/issues/699">#699</a>
from hashicorp/jbardin/marked-traversals</li>
<li><a
href="https://github.com/hashicorp/hcl/commit/e2f43f4c9722c9a1e7c23b0af4c41ed9f7cab2c5"><code>e2f43f4</code></a>
Preserve marks when traversing unknown values</li>
<li>See full diff in <a
href="https://github.com/hashicorp/hcl/compare/v2.22.0...v2.23.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `github.com/stretchr/testify` from 1.9.0 to 1.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/stretchr/testify/releases">github.com/stretchr/testify's
releases</a>.</em></p>
<blockquote>
<h2>v1.10.0</h2>
<h2>What's Changed</h2>
<h3>Functional Changes</h3>
<ul>
<li>Add PanicAssertionFunc by <a
href="https://github.com/fahimbagar"><code>@​fahimbagar</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1337">stretchr/testify#1337</a></li>
<li>assert: deprecate CompareType by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1566">stretchr/testify#1566</a></li>
<li>assert: make YAML dependency pluggable via build tags by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1579">stretchr/testify#1579</a></li>
<li>assert: new assertion NotElementsMatch by <a
href="https://github.com/hendrywiranto"><code>@​hendrywiranto</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1600">stretchr/testify#1600</a></li>
<li>mock: in order mock calls by <a
href="https://github.com/ReyOrtiz"><code>@​ReyOrtiz</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1637">stretchr/testify#1637</a></li>
<li>Add assertion for NotErrorAs by <a
href="https://github.com/palsivertsen"><code>@​palsivertsen</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1129">stretchr/testify#1129</a></li>
<li>Record Return Arguments of a Call by <a
href="https://github.com/jayd3e"><code>@​jayd3e</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1636">stretchr/testify#1636</a></li>
<li>assert.EqualExportedValues: accepts everything by <a
href="https://github.com/redachl"><code>@​redachl</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1586">stretchr/testify#1586</a></li>
</ul>
<h3>Fixes</h3>
<ul>
<li>assert: make tHelper a type alias by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1562">stretchr/testify#1562</a></li>
<li>Do not get argument again unnecessarily in Arguments.Error() by <a
href="https://github.com/TomWright"><code>@​TomWright</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/820">stretchr/testify#820</a></li>
<li>Fix time.Time compare by <a
href="https://github.com/myxo"><code>@​myxo</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1582">stretchr/testify#1582</a></li>
<li>assert.Regexp: handle []byte array properly by <a
href="https://github.com/kevinburkesegment"><code>@​kevinburkesegment</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1587">stretchr/testify#1587</a></li>
<li>assert: collect.FailNow() should not panic by <a
href="https://github.com/marshall-lee"><code>@​marshall-lee</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1481">stretchr/testify#1481</a></li>
<li>mock: simplify implementation of FunctionalOptions by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1571">stretchr/testify#1571</a></li>
<li>mock: caller information for unexpected method call by <a
href="https://github.com/spirin"><code>@​spirin</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1644">stretchr/testify#1644</a></li>
<li>suite: fix test failures by <a
href="https://github.com/stevenh"><code>@​stevenh</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1421">stretchr/testify#1421</a></li>
<li>Fix issue <a
href="https://redirect.github.com/stretchr/testify/issues/1662">#1662</a>
(comparing infs should fail) by <a
href="https://github.com/ybrustin"><code>@​ybrustin</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1663">stretchr/testify#1663</a></li>
<li>NotSame should fail if args are not pointers <a
href="https://redirect.github.com/stretchr/testify/issues/1661">#1661</a>
by <a href="https://github.com/sikehish"><code>@​sikehish</code></a> in
<a
href="https://redirect.github.com/stretchr/testify/pull/1664">stretchr/testify#1664</a></li>
<li>Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in
CI by <a href="https://github.com/sikehish"><code>@​sikehish</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1667">stretchr/testify#1667</a></li>
<li>fix: compare functional option names for indirect calls by <a
href="https://github.com/arjun-1"><code>@​arjun-1</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1626">stretchr/testify#1626</a></li>
</ul>
<h3>Documantation, Build &amp; CI</h3>
<ul>
<li>.gitignore: ignore &quot;go test -c&quot; binaries by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1565">stretchr/testify#1565</a></li>
<li>mock: improve doc by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1570">stretchr/testify#1570</a></li>
<li>mock: fix FunctionalOptions docs by <a
href="https://github.com/snirye"><code>@​snirye</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1433">stretchr/testify#1433</a></li>
<li>README: link out to the excellent testifylint by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1568">stretchr/testify#1568</a></li>
<li>assert: fix typo in comment by <a
href="https://github.com/JohnEndson"><code>@​JohnEndson</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1580">stretchr/testify#1580</a></li>
<li>Correct the EventuallyWithT and EventuallyWithTf example by <a
href="https://github.com/JonCrowther"><code>@​JonCrowther</code></a> in
<a
href="https://redirect.github.com/stretchr/testify/pull/1588">stretchr/testify#1588</a></li>
<li>CI: bump softprops/action-gh-release from 1 to 2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1575">stretchr/testify#1575</a></li>
<li>mock: document more alternatives to deprecated
AnythingOfTypeArgument by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1569">stretchr/testify#1569</a></li>
<li>assert: Correctly document EqualValues behavior by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1593">stretchr/testify#1593</a></li>
<li>fix: grammar in godoc by <a
href="https://github.com/miparnisari"><code>@​miparnisari</code></a> in
<a
href="https://redirect.github.com/stretchr/testify/pull/1607">stretchr/testify#1607</a></li>
<li>.github/workflows: Run tests for Go 1.22 by <a
href="https://github.com/HaraldNordgren"><code>@​HaraldNordgren</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1629">stretchr/testify#1629</a></li>
<li>Document suite's lack of support for t.Parallel by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1645">stretchr/testify#1645</a></li>
<li>assert: fix typos in comments by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1650">stretchr/testify#1650</a></li>
<li>mock: fix doc comment for NotBefore by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1651">stretchr/testify#1651</a></li>
<li>Generate better comments for require package by <a
href="https://github.com/Neokil"><code>@​Neokil</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1610">stretchr/testify#1610</a></li>
<li>README: replace Testify V2 notice with <a
href="https://github.com/dolmen"><code>@​dolmen</code></a>'s V2
manifesto by <a
href="https://github.com/hendrywiranto"><code>@​hendrywiranto</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1518">stretchr/testify#1518</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/fahimbagar"><code>@​fahimbagar</code></a> made
their first contribution in <a
href="https://redirect.github.com/stretchr/testify/pull/1337">stretchr/testify#1337</a></li>
<li><a href="https://github.com/TomWright"><code>@​TomWright</code></a>
made their first contribution in <a
href="https://redirect.github.com/stretchr/testify/pull/820">stretchr/testify#820</a></li>
<li><a href="https://github.com/snirye"><code>@​snirye</code></a> made
their first contribution in <a
href="https://redirect.github.com/stretchr/testify/pull/1433">stretchr/testify#1433</a></li>
<li><a href="https://github.com/myxo"><code>@​myxo</code></a> made their
first contribution in <a
href="https://redirect.github.com/stretchr/testify/pull/1582">stretchr/testify#1582</a></li>
<li><a
href="https://github.com/JohnEndson"><code>@​JohnEndson</code></a> made
their first contribution in <a
href="https://redirect.github.com/stretchr/testify/pull/1580">stretchr/testify#1580</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/stretchr/testify/commit/89cbdd9e7b39eb58896d316a7495597d3aba4371"><code>89cbdd9</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1626">#1626</a>
from arjun-1/fix-functional-options-diff-indirect-calls</li>
<li><a
href="https://github.com/stretchr/testify/commit/07bac606be2191ae89a281195e58d01e0de7b5f8"><code>07bac60</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1667">#1667</a>
from sikehish/flaky</li>
<li><a
href="https://github.com/stretchr/testify/commit/716de8dff46ed7ae3c6ebb7a6124db741ba7c018"><code>716de8d</code></a>
Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in
CI</li>
<li><a
href="https://github.com/stretchr/testify/commit/118fb8346630c192421c8914848381af9d4412a7"><code>118fb83</code></a>
NotSame should fail if args are not pointers <a
href="https://redirect.github.com/stretchr/testify/issues/1661">#1661</a>
(<a
href="https://redirect.github.com/stretchr/testify/issues/1664">#1664</a>)</li>
<li><a
href="https://github.com/stretchr/testify/commit/7d99b2b43d8f60a8982a78cde6e8bd287dea5da0"><code>7d99b2b</code></a>
attempt 2</li>
<li><a
href="https://github.com/stretchr/testify/commit/05f87c016035811e6d8371f1887ec360c318f53f"><code>05f87c0</code></a>
more similar</li>
<li><a
href="https://github.com/stretchr/testify/commit/ea7129e00694592e20cb34c58a6b8a251418b9da"><code>ea7129e</code></a>
better fmt</li>
<li><a
href="https://github.com/stretchr/testify/commit/a1b9c9efe3c25c50678b1e492045164b914e255f"><code>a1b9c9e</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1663">#1663</a>
from ybrustin/master</li>
<li><a
href="https://github.com/stretchr/testify/commit/8302de98b17649445fc1f1992fc3fecdb40c59ba"><code>8302de9</code></a>
Merge branch 'master' into master</li>
<li><a
href="https://github.com/stretchr/testify/commit/89352f7958086841c72425ccd6f43ab299e1309c"><code>89352f7</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1518">#1518</a>
from hendrywiranto/adjust-readme-remove-v2</li>
<li>Additional commits viewable in <a
href="https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `github.com/zclconf/go-cty` from 1.15.0 to 1.15.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/zclconf/go-cty/blob/main/CHANGELOG.md">github.com/zclconf/go-cty's
changelog</a>.</em></p>
<blockquote>
<h1>1.15.1 (November 26, 2024)</h1>
<ul>
<li><code>function</code>: Function calls can now return more
mark-related information when called with unknown values when neither
<code>AllowMarks</code> nor <code>AllowUnknown</code> are set for a
particular parameter. (<a
href="https://redirect.github.com/zclconf/go-cty/pull/196">#196</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/zclconf/go-cty/commit/3149f9d71235e7f745ab0a8429dba3c362408c06"><code>3149f9d</code></a>
Prepare for v1.15.1 release</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/63279be090d7ca5fd01e5ecb7f02ac5f0c273ef2"><code>63279be</code></a>
Update CHANGELOG.md</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/da16ad4791eda831a83c2f336863ba12fb8c264c"><code>da16ad4</code></a>
function: include marks when returning early with an unknown value</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/ea922e7a95ba2be57897697117f318670e066d22"><code>ea922e7</code></a>
Add GitHub's &quot;funding&quot; metadata file</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/7313684bb2bf6ec4a464f3def8d60c23bb51123a"><code>7313684</code></a>
function/stdlib: Even more Distinct tests</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/b84388474441497515a24c6e5e94b9d32673a59e"><code>b843884</code></a>
function/stdlib: unit tests for Distinct function</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/0b7ccb8423606ba894cc0e3b71375386e4d564de"><code>0b7ccb8</code></a>
docs: fix little typo in value marks</li>
<li><a
href="https://github.com/zclconf/go-cty/commit/9a4ed1eca4e031e6fc36475d3f3cfb861c7be2d6"><code>9a4ed1e</code></a>
Prepare for possible future v1.15.1 release</li>
<li>See full diff in <a
href="https://github.com/zclconf/go-cty/compare/v1.15.0...v1.15.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `golang.org/x/exp` from 0.0.0-20240103183307-be819d1f06fc to
0.0.0-20240719175910-8a7402abbf56
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/golang/exp/commits">compare view</a></li>
</ul>
</details>
<br />

Updates `golang.org/x/oauth2` from 0.23.0 to 0.24.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/golang/oauth2/commit/22134a41033e44c2cd074106770ab5b7ca910d15"><code>22134a4</code></a>
README: don't recommend go get</li>
<li>See full diff in <a
href="https://github.com/golang/oauth2/compare/v0.23.0...v0.24.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `golang.org/x/sync` from 0.8.0 to 0.9.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/golang/sync/commit/151027eb5637d626749783009eab9f0a7cfb446a"><code>151027e</code></a>
README: don't recommend go get</li>
<li>See full diff in <a
href="https://github.com/golang/sync/compare/v0.8.0...v0.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `golang.org/x/mod` from 0.21.0 to 0.22.0
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/golang/mod/commit/dec0365065b75edd0e98b0306f6f9b0051710ed2"><code>dec0365</code></a>
sumdb: make data tiles by Server compatible with sum.golang.org</li>
<li><a
href="https://github.com/golang/mod/commit/c8a731972177c6ce4073699c705e55918ee7be09"><code>c8a7319</code></a>
x/mod: fix handling of vendored packages with '/vendor' in non-top-level
paths</li>
<li><a
href="https://github.com/golang/mod/commit/9cd0e4c9f675aeac595a4cbb5ba1b46798ce0fdf"><code>9cd0e4c</code></a>
x/mod: remove vendor/modules.txt from module download</li>
<li>See full diff in <a
href="https://github.com/golang/mod/compare/v0.21.0...v0.22.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>
  • Loading branch information
demeyerthom authored Dec 3, 2024
2 parents 9d71b4d + 7800b62 commit dc77f5b
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 57 deletions.
3 changes: 3 additions & 0 deletions .changes/unreleased/Dependency-20241201-213007.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: Dependency
body: 'chore(deps): bump the go group across 1 directory with 12 updates'
time: 2024-12-01T21:30:07.639032189Z
36 changes: 18 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ go 1.22.0
toolchain go1.22.5

require (
github.com/adrg/xdg v0.5.0
github.com/adrg/xdg v0.5.3
github.com/creasty/defaults v1.8.0
github.com/dominikbraun/graph v0.23.0
github.com/elliotchance/pie/v2 v2.9.0
github.com/fatih/color v1.17.0
github.com/go-git/go-billy/v5 v5.5.0
github.com/elliotchance/pie/v2 v2.9.1
github.com/fatih/color v1.18.0
github.com/go-git/go-billy/v5 v5.6.0
github.com/go-git/go-git/v5 v5.12.0
github.com/google/go-cmp v0.6.0
github.com/grokify/go-pkce v0.2.3
github.com/hashicorp/go-getter v1.7.6
github.com/hashicorp/go-hclog v1.6.3
github.com/hashicorp/go-plugin v1.6.1
github.com/hashicorp/go-plugin v1.6.2
github.com/hashicorp/go-retryablehttp v0.7.7
github.com/hashicorp/hcl/v2 v2.22.0
github.com/hashicorp/hcl/v2 v2.23.0
github.com/lithammer/dedent v1.1.0
github.com/mach-composer/mach-composer-plugin-sdk v1.0.0
github.com/mach-composer/mcc-sdk-go v0.2.0
Expand All @@ -31,12 +31,12 @@ require (
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.9.0
github.com/stretchr/testify v1.10.0
github.com/xeipuuv/gojsonschema v1.2.0
github.com/zclconf/go-cty v1.15.0
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc
golang.org/x/oauth2 v0.23.0
golang.org/x/sync v0.8.0
github.com/zclconf/go-cty v1.15.1
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
golang.org/x/oauth2 v0.24.0
golang.org/x/sync v0.9.0
gopkg.in/yaml.v3 v3.0.1
)

Expand Down Expand Up @@ -70,7 +70,7 @@ require (
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
Expand Down Expand Up @@ -114,12 +114,12 @@ require (
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/mod v0.21.0
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.16.1 // indirect
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/mod v0.22.0
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/tools v0.23.0 // indirect
google.golang.org/api v0.171.0 // indirect
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240311132316-a219d84964c2 // indirect
Expand Down
Loading

0 comments on commit dc77f5b

Please sign in to comment.