Skip to content

Commit 832ca20

Browse files
chore(deps): Bump the go-deps group across 2 directories with 2 updates (#4848)
Bumps the go-deps group with 2 updates in the /packages/@jsii/go-runtime-test/project directory: [golang.org/x/tools](https://github.com/golang/tools) and [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver). Bumps the go-deps group with 2 updates in the /packages/@jsii/go-runtime/jsii-runtime-go directory: [golang.org/x/tools](https://github.com/golang/tools) and [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver). Updates `golang.org/x/tools` from 0.33.0 to 0.34.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/578c1213983a83e6411536ddf6bbf3a1faf97aea"><code>578c121</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/f114dcf97d4f35feb86030bb9e1c5c8fc6fd8942"><code>f114dcf</code></a> gopls/internal/protocol: refine DocumentURI Clean method and its usages</li> <li><a href="https://github.com/golang/tools/commit/82ee0fd1228b85b95daadd1901e83a9200d661e6"><code>82ee0fd</code></a> internal/mcp: change paginateList to a generic helper</li> <li><a href="https://github.com/golang/tools/commit/64bfecc32e163d2684a85b73472919e02da50180"><code>64bfecc</code></a> gopls/internal/golang: fix extract bug with anon functions</li> <li><a href="https://github.com/golang/tools/commit/4546fbd0b20190ede82382b293ae4440923ecaea"><code>4546fbd</code></a> internal/mcp: unify json tag parsing</li> <li><a href="https://github.com/golang/tools/commit/82473ce934847055bec96f8a96e4d1fc38ecefa9"><code>82473ce</code></a> gopls/doc/release: tweak v0.19</li> <li><a href="https://github.com/golang/tools/commit/f3c581ff0cb8b4b87129f04094005c4b0f962bf9"><code>f3c581f</code></a> gopls/internal/protocol: add DocumentURI.Base accessor</li> <li><a href="https://github.com/golang/tools/commit/d9bacab54dfed6ac3f871f422bb0b2cb5eb5c428"><code>d9bacab</code></a> gopls/internal/server: improve &quot;editing generated file&quot; warning</li> <li><a href="https://github.com/golang/tools/commit/1afeefa8150f171e0a8f0948015513b31d59d2f3"><code>1afeefa</code></a> internal/mcp: unexport FileResourceHandler</li> <li><a href="https://github.com/golang/tools/commit/33d59880f345d37e4262f5f8e504ddfb6818266b"><code>33d5988</code></a> gopls/internal/server: Organize Imports of generated files</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.33.0...v0.34.0">compare view</a></li> </ul> </details> <br /> 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 `golang.org/x/tools` from 0.33.0 to 0.34.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/578c1213983a83e6411536ddf6bbf3a1faf97aea"><code>578c121</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/f114dcf97d4f35feb86030bb9e1c5c8fc6fd8942"><code>f114dcf</code></a> gopls/internal/protocol: refine DocumentURI Clean method and its usages</li> <li><a href="https://github.com/golang/tools/commit/82ee0fd1228b85b95daadd1901e83a9200d661e6"><code>82ee0fd</code></a> internal/mcp: change paginateList to a generic helper</li> <li><a href="https://github.com/golang/tools/commit/64bfecc32e163d2684a85b73472919e02da50180"><code>64bfecc</code></a> gopls/internal/golang: fix extract bug with anon functions</li> <li><a href="https://github.com/golang/tools/commit/4546fbd0b20190ede82382b293ae4440923ecaea"><code>4546fbd</code></a> internal/mcp: unify json tag parsing</li> <li><a href="https://github.com/golang/tools/commit/82473ce934847055bec96f8a96e4d1fc38ecefa9"><code>82473ce</code></a> gopls/doc/release: tweak v0.19</li> <li><a href="https://github.com/golang/tools/commit/f3c581ff0cb8b4b87129f04094005c4b0f962bf9"><code>f3c581f</code></a> gopls/internal/protocol: add DocumentURI.Base accessor</li> <li><a href="https://github.com/golang/tools/commit/d9bacab54dfed6ac3f871f422bb0b2cb5eb5c428"><code>d9bacab</code></a> gopls/internal/server: improve &quot;editing generated file&quot; warning</li> <li><a href="https://github.com/golang/tools/commit/1afeefa8150f171e0a8f0948015513b31d59d2f3"><code>1afeefa</code></a> internal/mcp: unexport FileResourceHandler</li> <li><a href="https://github.com/golang/tools/commit/33d59880f345d37e4262f5f8e504ddfb6818266b"><code>33d5988</code></a> gopls/internal/server: Organize Imports of generated files</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.33.0...v0.34.0">compare view</a></li> </ul> </details> <br /> Updates `golang.org/x/tools` from 0.33.0 to 0.34.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/578c1213983a83e6411536ddf6bbf3a1faf97aea"><code>578c121</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/f114dcf97d4f35feb86030bb9e1c5c8fc6fd8942"><code>f114dcf</code></a> gopls/internal/protocol: refine DocumentURI Clean method and its usages</li> <li><a href="https://github.com/golang/tools/commit/82ee0fd1228b85b95daadd1901e83a9200d661e6"><code>82ee0fd</code></a> internal/mcp: change paginateList to a generic helper</li> <li><a href="https://github.com/golang/tools/commit/64bfecc32e163d2684a85b73472919e02da50180"><code>64bfecc</code></a> gopls/internal/golang: fix extract bug with anon functions</li> <li><a href="https://github.com/golang/tools/commit/4546fbd0b20190ede82382b293ae4440923ecaea"><code>4546fbd</code></a> internal/mcp: unify json tag parsing</li> <li><a href="https://github.com/golang/tools/commit/82473ce934847055bec96f8a96e4d1fc38ecefa9"><code>82473ce</code></a> gopls/doc/release: tweak v0.19</li> <li><a href="https://github.com/golang/tools/commit/f3c581ff0cb8b4b87129f04094005c4b0f962bf9"><code>f3c581f</code></a> gopls/internal/protocol: add DocumentURI.Base accessor</li> <li><a href="https://github.com/golang/tools/commit/d9bacab54dfed6ac3f871f422bb0b2cb5eb5c428"><code>d9bacab</code></a> gopls/internal/server: improve &quot;editing generated file&quot; warning</li> <li><a href="https://github.com/golang/tools/commit/1afeefa8150f171e0a8f0948015513b31d59d2f3"><code>1afeefa</code></a> internal/mcp: unexport FileResourceHandler</li> <li><a href="https://github.com/golang/tools/commit/33d59880f345d37e4262f5f8e504ddfb6818266b"><code>33d5988</code></a> gopls/internal/server: Organize Imports of generated files</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.33.0...v0.34.0">compare view</a></li> </ul> </details> <br /> 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 `golang.org/x/tools` from 0.33.0 to 0.34.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/tools/commit/578c1213983a83e6411536ddf6bbf3a1faf97aea"><code>578c121</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/tools/commit/f114dcf97d4f35feb86030bb9e1c5c8fc6fd8942"><code>f114dcf</code></a> gopls/internal/protocol: refine DocumentURI Clean method and its usages</li> <li><a href="https://github.com/golang/tools/commit/82ee0fd1228b85b95daadd1901e83a9200d661e6"><code>82ee0fd</code></a> internal/mcp: change paginateList to a generic helper</li> <li><a href="https://github.com/golang/tools/commit/64bfecc32e163d2684a85b73472919e02da50180"><code>64bfecc</code></a> gopls/internal/golang: fix extract bug with anon functions</li> <li><a href="https://github.com/golang/tools/commit/4546fbd0b20190ede82382b293ae4440923ecaea"><code>4546fbd</code></a> internal/mcp: unify json tag parsing</li> <li><a href="https://github.com/golang/tools/commit/82473ce934847055bec96f8a96e4d1fc38ecefa9"><code>82473ce</code></a> gopls/doc/release: tweak v0.19</li> <li><a href="https://github.com/golang/tools/commit/f3c581ff0cb8b4b87129f04094005c4b0f962bf9"><code>f3c581f</code></a> gopls/internal/protocol: add DocumentURI.Base accessor</li> <li><a href="https://github.com/golang/tools/commit/d9bacab54dfed6ac3f871f422bb0b2cb5eb5c428"><code>d9bacab</code></a> gopls/internal/server: improve &quot;editing generated file&quot; warning</li> <li><a href="https://github.com/golang/tools/commit/1afeefa8150f171e0a8f0948015513b31d59d2f3"><code>1afeefa</code></a> internal/mcp: unexport FileResourceHandler</li> <li><a href="https://github.com/golang/tools/commit/33d59880f345d37e4262f5f8e504ddfb6818266b"><code>33d5988</code></a> gopls/internal/server: Organize Imports of generated files</li> <li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.33.0...v0.34.0">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR 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> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
1 parent cdd0724 commit 832ca20

File tree

4 files changed

+30
-20
lines changed

4 files changed

+30
-20
lines changed

packages/@jsii/go-runtime-test/project/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ require (
1111
github.com/aws/jsii/jsii-calc/go/scopejsiicalclib v0.0.0-devpreview
1212
github.com/stretchr/testify v1.10.0
1313
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
14-
golang.org/x/tools v0.33.0
14+
golang.org/x/tools v0.35.0
1515
)
1616

1717
require (
18-
github.com/Masterminds/semver/v3 v3.3.1 // indirect
18+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
1919
github.com/aws/jsii/jsii-calc/go/scopejsiicalcbaseofbase/v2 v2.1.1 // indirect
2020
github.com/davecgh/go-spew v1.1.1 // indirect
2121
github.com/fatih/color v1.18.0 // indirect
2222
github.com/mattn/go-colorable v0.1.13 // indirect
2323
github.com/mattn/go-isatty v0.0.20 // indirect
2424
github.com/pmezard/go-difflib v1.0.0 // indirect
2525
github.com/yuin/goldmark v1.4.13 // indirect
26-
golang.org/x/mod v0.24.0 // indirect
27-
golang.org/x/sync v0.14.0 // indirect
28-
golang.org/x/sys v0.33.0 // indirect
26+
golang.org/x/mod v0.26.0 // indirect
27+
golang.org/x/sync v0.16.0 // indirect
28+
golang.org/x/sys v0.34.0 // indirect
2929
gopkg.in/yaml.v3 v3.0.1 // indirect
3030
)
3131

packages/@jsii/go-runtime-test/project/go.sum

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
22
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
3+
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
4+
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
35
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
46
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
57
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
@@ -24,21 +26,29 @@ golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPI
2426
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
2527
golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
2628
golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
29+
golang.org/x/mod v0.26.0 h1:EGMPT//Ezu+ylkCijjPc+f4Aih7sZvaAr+O3EHBxvZg=
30+
golang.org/x/mod v0.26.0/go.mod h1:/j6NAhSk8iQ723BGAUyoAcn7SlD7s15Dp9Nd/SfeaFQ=
2731
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
2832
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
2933
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
3034
golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ=
3135
golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
36+
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
37+
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
3238
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
3339
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
3440
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3541
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3642
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
3743
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
44+
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
45+
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
3846
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
3947
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
4048
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
4149
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=
50+
golang.org/x/tools v0.35.0 h1:mBffYraMEf7aa0sB+NuKnuCy8qI/9Bughn8dC2Gu5r0=
51+
golang.org/x/tools v0.35.0/go.mod h1:NKdj5HkL/73byiZSJjqJgKn3ep7KjFkBOkR/Hps3VPw=
4252
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
4353
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
4454
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

packages/@jsii/go-runtime/jsii-runtime-go/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ go 1.23.0
55
toolchain go1.24.5
66

77
require (
8-
github.com/Masterminds/semver/v3 v3.3.1
8+
github.com/Masterminds/semver/v3 v3.4.0
99
github.com/fatih/color v1.18.0
1010
github.com/mattn/go-isatty v0.0.20
1111
github.com/stretchr/testify v1.10.0
1212
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
13-
golang.org/x/tools v0.33.0
13+
golang.org/x/tools v0.35.0
1414
)
1515

1616
require (
1717
github.com/davecgh/go-spew v1.1.1 // indirect
1818
github.com/mattn/go-colorable v0.1.13 // indirect
1919
github.com/pmezard/go-difflib v1.0.0 // indirect
2020
github.com/yuin/goldmark v1.4.13 // indirect
21-
golang.org/x/mod v0.24.0 // indirect
22-
golang.org/x/sync v0.14.0 // indirect
23-
golang.org/x/sys v0.33.0 // indirect
21+
golang.org/x/mod v0.26.0 // indirect
22+
golang.org/x/sync v0.16.0 // indirect
23+
golang.org/x/sys v0.34.0 // indirect
2424
gopkg.in/yaml.v3 v3.0.1 // indirect
2525
)
2626

packages/@jsii/go-runtime/jsii-runtime-go/go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/Masterminds/semver/v3 v3.3.1 h1:QtNSWtVZ3nBfk8mAOu/B6v7FMJ+NHTIgUPi7rj+4nv4=
2-
github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
1+
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
2+
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
33
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
44
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
55
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
@@ -22,23 +22,23 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
2222
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug=
2323
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
2424
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
25-
golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
26-
golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
25+
golang.org/x/mod v0.26.0 h1:EGMPT//Ezu+ylkCijjPc+f4Aih7sZvaAr+O3EHBxvZg=
26+
golang.org/x/mod v0.26.0/go.mod h1:/j6NAhSk8iQ723BGAUyoAcn7SlD7s15Dp9Nd/SfeaFQ=
2727
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
2828
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
2929
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
30-
golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ=
31-
golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
30+
golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw=
31+
golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
3232
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
3333
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
3434
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3535
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
36-
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
37-
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
36+
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
37+
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
3838
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
3939
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
40-
golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc=
41-
golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI=
40+
golang.org/x/tools v0.35.0 h1:mBffYraMEf7aa0sB+NuKnuCy8qI/9Bughn8dC2Gu5r0=
41+
golang.org/x/tools v0.35.0/go.mod h1:NKdj5HkL/73byiZSJjqJgKn3ep7KjFkBOkR/Hps3VPw=
4242
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
4343
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
4444
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

0 commit comments

Comments
 (0)