Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): 1.93.0 #4367

Merged
merged 28 commits into from
Dec 8, 2023
Merged

chore(release): 1.93.0 #4367

merged 28 commits into from
Dec 8, 2023

Conversation

aws-cdk-automation
Copy link
Collaborator

@aws-cdk-automation aws-cdk-automation commented Dec 8, 2023

See CHANGELOG

mergify bot and others added 28 commits November 16, 2023 18:09
…3 in /packages/@jsii/python-runtime (#4338)

Updates the requirements on [cattrs](https://github.com/python-attrs/cattrs) to permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/python-attrs/cattrs/releases">cattrs's releases</a>.</em></p>
<blockquote>
<h2>v23.2.1</h2>
<h2>23.2.1 (2023-11-18)</h2>
<ul>
<li>Fix unnecessary <code>typing_extensions</code> import on Python 3.11.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/446">#446</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/447">#447</a>)</li>
</ul>
<p>For the v23.2.0 release notes, see <a href="https://github.com/python-attrs/cattrs/releases/tag/v23.2.0">here</a>.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/python-attrs/cattrs/blob/main/HISTORY.md">cattrs's changelog</a>.</em></p>
<blockquote>
<h2>23.2.1 (2023-11-18)</h2>
<ul>
<li>Fix unnecessary <code>typing_extensions</code> import on Python 3.11.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/446">#446</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/447">#447</a>)</li>
</ul>
<h2>23.2.0 (2023-11-17)</h2>
<ul>
<li><strong>Potentially breaking</strong>: skip <em>attrs</em> fields marked as <code>init=False</code> by default. This change is potentially breaking for unstructuring.
See <a href="https://catt.rs/en/latest/customizing.html#include_init_false">here</a> for instructions on how to restore the old behavior.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/40">#40</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/395">#395</a>)</li>
<li><strong>Potentially breaking</strong>: {py:func}<code>cattrs.gen.make_dict_structure_fn</code> and {py:func}<code>cattrs.gen.typeddicts.make_dict_structure_fn</code> will use the values for the <code>detailed_validation</code> and <code>forbid_extra_keys</code> parameters from the given converter by default now.
If you're using these functions directly, the old behavior can be restored by passing in the desired values directly.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/410">#410</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/411">#411</a>)</li>
<li><strong>Potentially breaking</strong>: The default union structuring strategy will also use fields annotated as <code>typing.Literal</code> to help guide structuring.
See <a href="https://catt.rs/en/latest/unions.html#default-union-strategy">here</a> for instructions on how to restore the old behavior.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/391">#391</a>)</li>
<li>Python 3.12 is now supported. Python 3.7 is no longer supported; use older releases there.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/424">#424</a>)</li>
<li>Implement the <code>union passthrough</code> strategy, enabling much richer union handling for preconfigured converters. <a href="https://catt.rs/en/stable/strategies.html#union-passthrough">Learn more here</a>.</li>
<li>Introduce the <code>use_class_methods</code> strategy. Learn more <a href="https://catt.rs/en/latest/strategies.html#using-class-specific-structure-and-unstructure-methods">here</a>.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/405">#405</a>)</li>
<li>The <code>omit</code> parameter of {py:func}<code>cattrs.override</code> is now of type <code>bool | None</code> (from <code>bool</code>).
<code>None</code> is the new default and means to apply default <em>cattrs</em> handling to the attribute, which is to omit the attribute if it's marked as <code>init=False</code>, and keep it otherwise.</li>
<li>Converters can now be initialized with <a href="https://catt.rs/en/latest/converters.html#fallback-hook-factories">custom fallback hook factories</a> for un/structuring.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/311">#331</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/441">#441</a>)</li>
<li>Add support for <code>date</code> to preconfigured converters.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/420">#420</a>)</li>
<li>Add support for <code>datetime.date</code>s to the PyYAML preconfigured converter.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/393">#393</a>)</li>
<li>Fix {py:func}<code>format_exception() &lt;cattrs.v.format_exception&gt;</code> parameter working for recursive calls to {py:func}<code>transform_error &lt;cattrs.transform_error&gt;</code>.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/389">#389</a>)</li>
<li><a href="https://www.attrs.org/en/stable/init.html#private-attributes-and-aliases"><em>attrs</em> aliases</a> are now supported, although aliased fields still map to their attribute name instead of their alias by default when un/structuring.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/322">#322</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/391">#391</a>)</li>
<li>Fix TypedDicts with periods in their field names.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/376">#376</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/377">#377</a>)</li>
<li>Optimize and improve unstructuring of <code>Optional</code> (unions of one type and <code>None</code>).
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/380">#380</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/381">#381</a>)</li>
<li>Fix {py:func}<code>format_exception &lt;cattrs.v.format_exception&gt;</code> and {py:func}<code>transform_error &lt;cattrs.transform_error&gt;</code> type annotations.</li>
<li>Improve the implementation of <code>cattrs._compat.is_typeddict</code>. The implementation is now simpler, and relies on fewer private implementation details from <code>typing</code> and typing_extensions.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/384">#384</a>)</li>
<li>Improve handling of TypedDicts with forward references.</li>
<li>Speed up generated <em>attrs</em> and TypedDict structuring functions by changing their signature slightly.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/388">#388</a>)</li>
<li>Fix copying of converters with function hooks.
(<a href="https://redirect.github.com/python-attrs/cattrs/issues/398">#398</a> <a href="https://redirect.github.com/python-attrs/cattrs/pull/399">#399</a>)</li>
<li>Broaden {py:func}<code>loads' &lt;cattrs.preconf.orjson.OrjsonConverter.loads&gt;</code> type definition for the preconf orjson converter.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/400">#400</a>)</li>
<li>{py:class}<code>AttributeValidationNote &lt;cattrs.AttributeValidationNote&gt;</code> and {py:class}<code>IterableValidationNote &lt;cattrs.IterableValidationNote&gt;</code> are now picklable.
(<a href="https://redirect.github.com/python-attrs/cattrs/pull/408">#408</a>)</li>
<li>Fix structuring <code>Final</code> lists.</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/python-attrs/cattrs/commit/c098cd8dc723ca7dce859028438795476022a652"><code>c098cd8</code></a> v23.2.1</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/25d15d6f492817a8a618f2accd93bf0d6b55d3d1"><code>25d15d6</code></a> Import typing_extensions.TypeAlias only on python &lt; 3.11 (<a href="https://redirect.github.com/python-attrs/cattrs/issues/447">#447</a>)</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/46be811135633aee3fc97cd8c171bccdd14c5a93"><code>46be811</code></a> Of course I forgot to update the changelog</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/65ca839c85411ba47afbcd8acff21839f19ed8a6"><code>65ca839</code></a> Remove unnecessary docs</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/683e4a7264918327efb838cd55ef0631b31775df"><code>683e4a7</code></a> doc improvement</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/34e7d21567c0c8be38d8b3506899db107feae064"><code>34e7d21</code></a> typing_extensions to docs</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/a980e1b5646c02c868badd891f275bb4c822887b"><code>a980e1b</code></a> Tweak dev doc configuration</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/a9d349a254eb60799e147787c39f153d632e25d6"><code>a9d349a</code></a> Add a regression test for a nested tagged union scenario (<a href="https://redirect.github.com/python-attrs/cattrs/issues/444">#444</a>)</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/4df0c9eed0368756b0ca91d8bab0b4f9845056d1"><code>4df0c9e</code></a> Tweak tagged unions (<a href="https://redirect.github.com/python-attrs/cattrs/issues/443">#443</a>)</li>
<li><a href="https://github.com/python-attrs/cattrs/commit/1352676419129789278c61f5b8e2ea92dca5d19a"><code>1352676</code></a> Doc improvements (<a href="https://redirect.github.com/python-attrs/cattrs/issues/442">#442</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/python-attrs/cattrs/compare/v1.8.0...v23.2.1">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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…=9.4.10 in /gh-pages (#4339)

Updates the requirements on [mkdocs-material](https://github.com/squidfunk/mkdocs-material) to permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's releases</a>.</em></p>
<blockquote>
<h2>mkdocs-material-9.4.10</h2>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6356">#6356</a>: Version selector can't be disabled via mike's configuration</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6281">#6281</a>: Navigation not rendering due to Safari bug (9.4.2 regression)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6261">#6261</a>: Navigation expansion animates on first load (9.4.2 regression)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.4.10+insiders-4.43.1 (2023-11-19)</p>
<ul>
<li>Added third-party theme support in projects plugin, improving editing</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6360">#6360</a>: Projects plugin crashes when theme is not Material for MkDocs</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6306">#6306</a>: Projects plugin not reloading nested project configuration</li>
</ul>
<p>mkdocs-material-9.4.10 (2023-11-19)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6356">#6356</a>: Version selector can't be disabled via mike's configuration</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6281">#6281</a>: Navigation not rendering due to Safari bug (9.4.2 regression)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6261">#6261</a>: Navigation expansion animates on first load (9.4.2 regression)</li>
</ul>
<p>mkdocs-material-9.4.9 (2023-11-17)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6344">#6344</a>: Long entries cutoff in table of contents</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6336">#6336</a>: Custom template for glob archive not working with pagination</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6328">#6328</a>: Blog plugin crashes for locales with dashes, e.g. pt-BR</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6327">#6327</a>: Copy-to-clipboard button doesn't trim trailing line feed</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6302">#6302</a>: Version strings not matched when using mike, only aliases</li>
<li>Fixed instant navigation progress indicator for gzipped content in Chrome</li>
<li>Fixed rendering bug on details marker rotation in Firefox</li>
</ul>
<p>mkdocs-material-9.4.8+insiders-4.43.0 (2023-11-05)</p>
<ul>
<li>Added support for GitLab committers (document contributors)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6264">#6264</a>: Fixed compatibility with Python &lt; 3.10</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6254">#6254</a>: Meta plugin not applying meta files to blog posts</li>
</ul>
<p>mkdocs-material-9.4.8 (2023-11-05)</p>
<ul>
<li>Fixed invalid local address replacement when using instant loading</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6275">#6275</a>: Crash after navigation caused 404 when using instant loading</li>
</ul>
<p>mkdocs-material-9.4.7+insiders-4.42.3 (2023-10-27)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6251">#6251</a>: Cards in grids cut off on very small screens</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6241">#6241</a>: Using social plugin + static-i18n plugin errors</li>
</ul>
<p>mkdocs-material-9.4.7 (2023-10-27)</p>
<ul>
<li>Added Azerbaijani translations</li>
</ul>
<p>mkdocs-material-9.4.6+insiders-4.42.2 (2023-10-14)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6186">#6186</a>: Privacy plugin ignores hash fragments on images</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6180">#6180</a>: Projects plugin crashing when adding or removing files</li>
</ul>
<p>mkdocs-material-9.4.6 (2023-10-14)</p>
<ul>
<li>Updated Danish and Norwegian (Nynorsk) translations</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/71a87f86b4616426f930c1fb1f7fb0dc9bdebdd9"><code>71a87f8</code></a> Prepare 9.4.10 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/c181a46f741d001c925ea6cdbc746830dc92b17d"><code>c181a46</code></a> Added support to disable version selector in mike</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/9721228f1f098a23f1408e882f97a205ef509c82"><code>9721228</code></a> Merge branch 'master' of github.com:squidfunk/mkdocs-material</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/dcc296e42e20216b29dd48ece346f7f81755fbaf"><code>dcc296e</code></a> Fixed animation of expanded navigation items</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/1cc4aca43a66fe81ee508f6bd03ee7799edd30a5"><code>1cc4aca</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6361">#6361</a> from sisp/fix/analytics-schema</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/f528598540b992daaa84baec109b2f9b551a0a5d"><code>f528598</code></a> Dropped schema for Google Universal Analytics</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/09cfb90a0e0596c02b336aefae946573b91cc220"><code>09cfb90</code></a> Fixed <code>extra:analytics</code> schema for custom providers</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/5a42f9f2d2acd5b974f88d2ba1ebcd6c7e3c6036"><code>5a42f9f</code></a> Updated changelog</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/a2a4dd928a3934dcef36696caeb50140ee056c18"><code>a2a4dd9</code></a> Prepare 9.4.9 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/a508bcc17433983b7d564d0c4cfe419ea7a8eb68"><code>a508bcc</code></a> Updated dependencies</li>
<li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.4.8...9.4.10">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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…ackages/@jsii/dotnet-runtime-test/test (#4342)

Bumps [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 2.5.3 to 2.5.4.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/b9eacec401591bf17d5a3a5436223045c980562e"><code>b9eacec</code></a> v2.5.4</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/316c225a721e952c98ee36fbd722c2859ff3847e"><code>316c225</code></a> Latest dependencies</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/9d3aaa076f1c5596dd5aed68941aef6ca9657c55"><code>9d3aaa0</code></a> Latest dependencies</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/da1033b99db9ae1debee355466a031081540dd78"><code>da1033b</code></a> Latest dependencies</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/8b760896810eb16a3a55c30a3ee63739ff84a1eb"><code>8b76089</code></a> Remove unnecessary global.json</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/af8f8dfd4ffc32c25a81c2dd3e427658f4c63696"><code>af8f8df</code></a> Sort Directory.Build.props</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/44114d063aae1b4c40d7dd64e378d4151f17f949"><code>44114d0</code></a> Disable MSBuild transitive copies</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/48b0558eadbee6b79379b2ad988ab5940882ef27"><code>48b0558</code></a> Latest dependencies</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/2b7d93036611a5026efe1b5cb90df7290a396f0b"><code>2b7d930</code></a> Updated README</li>
<li><a href="https://github.com/xunit/visualstudio.xunit/commit/097b60584fb932d3dcff297de827c543c879c7f4"><code>097b605</code></a> Move load failure messages from DiaSession and friends to internal diagnostic...</li>
<li>Additional commits viewable in <a href="https://github.com/xunit/visualstudio.xunit/compare/2.5.3...2.5.4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xunit.runner.visualstudio&package-manager=nuget&previous-version=2.5.3&new-version=2.5.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
… to 8.0.0 in /packages/@jsii/dotnet-runtime-test/test (#4340)

Bumps [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) from 7.0.0 to 8.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dotnet/runtime/releases">Microsoft.Extensions.DependencyInjection's releases</a>.</em></p>
<blockquote>
<h2>.NET 8.0.0</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0">Release</a></p>
<h2>.NET 8.0 RC 2</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-rc.2">Release</a></p>
<h2>.NET 8.0 RC 1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-rc.1">Release</a></p>
<h2>.NET 8.0 Preview 7</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.7">Release</a></p>
<h2>.NET 8.0 Preview 6</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.6">Release</a></p>
<h2>.NET 8.0 Preview 5</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.5">Release</a></p>
<h2>.NET 8.0 Preview 4</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.4">Release</a></p>
<h2>.NET 8.0 Preview 3</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.3">Release</a></p>
<h2>.NET 8.0 Preview 2</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.2">Release</a></p>
<h2>.NET 8.0 Preview 1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.1">Release</a></p>
<h2>.NET 7.0.14</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v7.0.14">Release</a></p>
<h2>What's Changed</h2>
<ul>
<li>[release/7.0-staging] Check for .deps.json when enumerating framework paths by <a href="https://github.com/elinor-fung"><code>@​elinor-fung</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92033">dotnet/runtime#92033</a></li>
<li>[release/7.0] Update Ubuntu 16.04 amd64 queues to 22.04 by <a href="https://github.com/carlossanlop"><code>@​carlossanlop</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92796">dotnet/runtime#92796</a></li>
<li>[release/7.0-staging] Fix JsonDocument thread safety. by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92831">dotnet/runtime#92831</a></li>
<li>[automated] Merge branch 'release/7.0' =&gt; 'release/7.0-staging' by <a href="https://github.com/dotnet-maestro-bot"><code>@​dotnet-maestro-bot</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/91916">dotnet/runtime#91916</a></li>
<li>[release/7.0-staging] CI: runtime-wasm-perf: disable for PRs by <a href="https://github.com/radical"><code>@​radical</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92978">dotnet/runtime#92978</a></li>
<li>[release/7.0-staging] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92991">dotnet/runtime#92991</a></li>
<li>[release/7.0] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92992">dotnet/runtime#92992</a></li>
<li>[release/7.0] [Mono] Race in init_method when using LLVM AOT. by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93006">dotnet/runtime#93006</a></li>
<li>[release/7.0-staging] Fix a memory leak in runtime interop stubs when using an array of structs of types that use old-style managed marshalers by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93148">dotnet/runtime#93148</a></li>
<li>[7.0] Make thread pool thread timeouts configurable by <a href="https://github.com/kouvel"><code>@​kouvel</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92987">dotnet/runtime#92987</a></li>
<li>[release/7.0] Fix max chunk size limiting by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/81607">dotnet/runtime#81607</a></li>
<li>Merging internal commits for release/7.0 by <a href="https://github.com/vseanreesermsft"><code>@​vseanreesermsft</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93307">dotnet/runtime#93307</a></li>
<li>[release/7.0] Update dependencies from dotnet/arcade by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93389">dotnet/runtime#93389</a></li>
<li>[release/7.0] Update dependencies from dotnet/xharness by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93391">dotnet/runtime#93391</a></li>
<li>[release/7.0] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93408">dotnet/runtime#93408</a></li>
<li>[automated] Merge branch 'release/7.0' =&gt; 'release/7.0-staging' by <a href="https://github.com/dotnet-maestro-bot"><code>@​dotnet-maestro-bot</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92980">dotnet/runtime#92980</a></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/dotnet/runtime/commit/5535e31a712343a63f5d7d796cd874e563e5ac14"><code>5535e31</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/e0bed9410065d5e3554cbfc58e1ea1f1115c13e4"><code>e0bed94</code></a> Update dependencies from <a href="https://github.com/dotnet/emsdk">https://github.com/dotnet/emsdk</a> build 20231030.2 (<a href="https://redirect.github.com/dotnet/runtime/issues/9">#9</a>...</li>
<li><a href="https://github.com/dotnet/runtime/commit/0395649aa16820be8a669203b265b0a578e82843"><code>0395649</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/0a7709af7830b8b6e3e719fcf64f3da56f00e14a"><code>0a7709a</code></a> [release/8.0] Bump net7 downlevel version to 7.0.14 (<a href="https://redirect.github.com/dotnet/runtime/issues/94192">#94192</a>)</li>
<li><a href="https://github.com/dotnet/runtime/commit/a60d358270ad89a0542d9ec0cb95b7702821a512"><code>a60d358</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/7331dcb60e0fd7c74a6f7216d61819c9f57a1ade"><code>7331dcb</code></a> [8.0] Update MsQuic (<a href="https://redirect.github.com/dotnet/runtime/issues/93979">#93979</a>)</li>
<li><a href="https://github.com/dotnet/runtime/commit/17ea9ab3f662320d4ac62d3a2b783b5054ad80bf"><code>17ea9ab</code></a> Merged PR 34793: [internal/release/8.0] Merge from public</li>
<li><a href="https://github.com/dotnet/runtime/commit/2066e8f214a187fb7d039a519808ca67a11b0368"><code>2066e8f</code></a> Apply suggestions from code review</li>
<li><a href="https://github.com/dotnet/runtime/commit/59edaad404d1b8e47080015ae8d0787f94c970df"><code>59edaad</code></a> [release/8.0] Honor JsonSerializerOptions.PropertyNameCaseInsensitive in prop...</li>
<li><a href="https://github.com/dotnet/runtime/commit/488a8a3521610422e8fbe22d5cc66127f3dce3dc"><code>488a8a3</code></a> [release/8.0][wasm] Fix perf pipeline runs (<a href="https://redirect.github.com/dotnet/runtime/issues/93888">#93888</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/dotnet/runtime/compare/v7.0.0...v8.0.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.Extensions.DependencyInjection&package-manager=nuget&previous-version=7.0.0&new-version=8.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
… /packages/@jsii/dotnet-runtime-test/test (#4344)

Bumps [Microsoft.Extensions.Logging](https://github.com/dotnet/runtime) from 7.0.0 to 8.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dotnet/runtime/releases">Microsoft.Extensions.Logging's releases</a>.</em></p>
<blockquote>
<h2>.NET 8.0.0</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0">Release</a></p>
<h2>.NET 8.0 RC 2</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-rc.2">Release</a></p>
<h2>.NET 8.0 RC 1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-rc.1">Release</a></p>
<h2>.NET 8.0 Preview 7</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.7">Release</a></p>
<h2>.NET 8.0 Preview 6</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.6">Release</a></p>
<h2>.NET 8.0 Preview 5</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.5">Release</a></p>
<h2>.NET 8.0 Preview 4</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.4">Release</a></p>
<h2>.NET 8.0 Preview 3</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.3">Release</a></p>
<h2>.NET 8.0 Preview 2</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.2">Release</a></p>
<h2>.NET 8.0 Preview 1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.1">Release</a></p>
<h2>.NET 7.0.14</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v7.0.14">Release</a></p>
<h2>What's Changed</h2>
<ul>
<li>[release/7.0-staging] Check for .deps.json when enumerating framework paths by <a href="https://github.com/elinor-fung"><code>@​elinor-fung</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92033">dotnet/runtime#92033</a></li>
<li>[release/7.0] Update Ubuntu 16.04 amd64 queues to 22.04 by <a href="https://github.com/carlossanlop"><code>@​carlossanlop</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92796">dotnet/runtime#92796</a></li>
<li>[release/7.0-staging] Fix JsonDocument thread safety. by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92831">dotnet/runtime#92831</a></li>
<li>[automated] Merge branch 'release/7.0' =&gt; 'release/7.0-staging' by <a href="https://github.com/dotnet-maestro-bot"><code>@​dotnet-maestro-bot</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/91916">dotnet/runtime#91916</a></li>
<li>[release/7.0-staging] CI: runtime-wasm-perf: disable for PRs by <a href="https://github.com/radical"><code>@​radical</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92978">dotnet/runtime#92978</a></li>
<li>[release/7.0-staging] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92991">dotnet/runtime#92991</a></li>
<li>[release/7.0] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92992">dotnet/runtime#92992</a></li>
<li>[release/7.0] [Mono] Race in init_method when using LLVM AOT. by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93006">dotnet/runtime#93006</a></li>
<li>[release/7.0-staging] Fix a memory leak in runtime interop stubs when using an array of structs of types that use old-style managed marshalers by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93148">dotnet/runtime#93148</a></li>
<li>[7.0] Make thread pool thread timeouts configurable by <a href="https://github.com/kouvel"><code>@​kouvel</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92987">dotnet/runtime#92987</a></li>
<li>[release/7.0] Fix max chunk size limiting by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/81607">dotnet/runtime#81607</a></li>
<li>Merging internal commits for release/7.0 by <a href="https://github.com/vseanreesermsft"><code>@​vseanreesermsft</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93307">dotnet/runtime#93307</a></li>
<li>[release/7.0] Update dependencies from dotnet/arcade by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93389">dotnet/runtime#93389</a></li>
<li>[release/7.0] Update dependencies from dotnet/xharness by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93391">dotnet/runtime#93391</a></li>
<li>[release/7.0] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93408">dotnet/runtime#93408</a></li>
<li>[automated] Merge branch 'release/7.0' =&gt; 'release/7.0-staging' by <a href="https://github.com/dotnet-maestro-bot"><code>@​dotnet-maestro-bot</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92980">dotnet/runtime#92980</a></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/dotnet/runtime/commit/5535e31a712343a63f5d7d796cd874e563e5ac14"><code>5535e31</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/e0bed9410065d5e3554cbfc58e1ea1f1115c13e4"><code>e0bed94</code></a> Update dependencies from <a href="https://github.com/dotnet/emsdk">https://github.com/dotnet/emsdk</a> build 20231030.2 (<a href="https://redirect.github.com/dotnet/runtime/issues/9">#9</a>...</li>
<li><a href="https://github.com/dotnet/runtime/commit/0395649aa16820be8a669203b265b0a578e82843"><code>0395649</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/0a7709af7830b8b6e3e719fcf64f3da56f00e14a"><code>0a7709a</code></a> [release/8.0] Bump net7 downlevel version to 7.0.14 (<a href="https://redirect.github.com/dotnet/runtime/issues/94192">#94192</a>)</li>
<li><a href="https://github.com/dotnet/runtime/commit/a60d358270ad89a0542d9ec0cb95b7702821a512"><code>a60d358</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/7331dcb60e0fd7c74a6f7216d61819c9f57a1ade"><code>7331dcb</code></a> [8.0] Update MsQuic (<a href="https://redirect.github.com/dotnet/runtime/issues/93979">#93979</a>)</li>
<li><a href="https://github.com/dotnet/runtime/commit/17ea9ab3f662320d4ac62d3a2b783b5054ad80bf"><code>17ea9ab</code></a> Merged PR 34793: [internal/release/8.0] Merge from public</li>
<li><a href="https://github.com/dotnet/runtime/commit/2066e8f214a187fb7d039a519808ca67a11b0368"><code>2066e8f</code></a> Apply suggestions from code review</li>
<li><a href="https://github.com/dotnet/runtime/commit/59edaad404d1b8e47080015ae8d0787f94c970df"><code>59edaad</code></a> [release/8.0] Honor JsonSerializerOptions.PropertyNameCaseInsensitive in prop...</li>
<li><a href="https://github.com/dotnet/runtime/commit/488a8a3521610422e8fbe22d5cc66127f3dce3dc"><code>488a8a3</code></a> [release/8.0][wasm] Fix perf pipeline runs (<a href="https://redirect.github.com/dotnet/runtime/issues/93888">#93888</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/dotnet/runtime/compare/v7.0.0...v8.0.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.Extensions.Logging&package-manager=nuget&previous-version=7.0.0&new-version=8.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…8.0.0 in /packages/@jsii/dotnet-runtime-test/test (#4343)

Bumps [Microsoft.Extensions.Logging.Console](https://github.com/dotnet/runtime) from 7.0.0 to 8.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dotnet/runtime/releases">Microsoft.Extensions.Logging.Console's releases</a>.</em></p>
<blockquote>
<h2>.NET 8.0.0</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0">Release</a></p>
<h2>.NET 8.0 RC 2</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-rc.2">Release</a></p>
<h2>.NET 8.0 RC 1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-rc.1">Release</a></p>
<h2>.NET 8.0 Preview 7</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.7">Release</a></p>
<h2>.NET 8.0 Preview 6</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.6">Release</a></p>
<h2>.NET 8.0 Preview 5</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.5">Release</a></p>
<h2>.NET 8.0 Preview 4</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.4">Release</a></p>
<h2>.NET 8.0 Preview 3</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.3">Release</a></p>
<h2>.NET 8.0 Preview 2</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.2">Release</a></p>
<h2>.NET 8.0 Preview 1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v8.0.0-preview.1">Release</a></p>
<h2>.NET 7.0.14</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v7.0.14">Release</a></p>
<h2>What's Changed</h2>
<ul>
<li>[release/7.0-staging] Check for .deps.json when enumerating framework paths by <a href="https://github.com/elinor-fung"><code>@​elinor-fung</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92033">dotnet/runtime#92033</a></li>
<li>[release/7.0] Update Ubuntu 16.04 amd64 queues to 22.04 by <a href="https://github.com/carlossanlop"><code>@​carlossanlop</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92796">dotnet/runtime#92796</a></li>
<li>[release/7.0-staging] Fix JsonDocument thread safety. by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92831">dotnet/runtime#92831</a></li>
<li>[automated] Merge branch 'release/7.0' =&gt; 'release/7.0-staging' by <a href="https://github.com/dotnet-maestro-bot"><code>@​dotnet-maestro-bot</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/91916">dotnet/runtime#91916</a></li>
<li>[release/7.0-staging] CI: runtime-wasm-perf: disable for PRs by <a href="https://github.com/radical"><code>@​radical</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92978">dotnet/runtime#92978</a></li>
<li>[release/7.0-staging] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92991">dotnet/runtime#92991</a></li>
<li>[release/7.0] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92992">dotnet/runtime#92992</a></li>
<li>[release/7.0] [Mono] Race in init_method when using LLVM AOT. by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93006">dotnet/runtime#93006</a></li>
<li>[release/7.0-staging] Fix a memory leak in runtime interop stubs when using an array of structs of types that use old-style managed marshalers by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93148">dotnet/runtime#93148</a></li>
<li>[7.0] Make thread pool thread timeouts configurable by <a href="https://github.com/kouvel"><code>@​kouvel</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92987">dotnet/runtime#92987</a></li>
<li>[release/7.0] Fix max chunk size limiting by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/81607">dotnet/runtime#81607</a></li>
<li>Merging internal commits for release/7.0 by <a href="https://github.com/vseanreesermsft"><code>@​vseanreesermsft</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93307">dotnet/runtime#93307</a></li>
<li>[release/7.0] Update dependencies from dotnet/arcade by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93389">dotnet/runtime#93389</a></li>
<li>[release/7.0] Update dependencies from dotnet/xharness by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93391">dotnet/runtime#93391</a></li>
<li>[release/7.0] Update dependencies from dotnet/emsdk by <a href="https://github.com/dotnet-maestro"><code>@​dotnet-maestro</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/93408">dotnet/runtime#93408</a></li>
<li>[automated] Merge branch 'release/7.0' =&gt; 'release/7.0-staging' by <a href="https://github.com/dotnet-maestro-bot"><code>@​dotnet-maestro-bot</code></a> in <a href="https://redirect.github.com/dotnet/runtime/pull/92980">dotnet/runtime#92980</a></li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/dotnet/runtime/commit/5535e31a712343a63f5d7d796cd874e563e5ac14"><code>5535e31</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/e0bed9410065d5e3554cbfc58e1ea1f1115c13e4"><code>e0bed94</code></a> Update dependencies from <a href="https://github.com/dotnet/emsdk">https://github.com/dotnet/emsdk</a> build 20231030.2 (<a href="https://redirect.github.com/dotnet/runtime/issues/9">#9</a>...</li>
<li><a href="https://github.com/dotnet/runtime/commit/0395649aa16820be8a669203b265b0a578e82843"><code>0395649</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/0a7709af7830b8b6e3e719fcf64f3da56f00e14a"><code>0a7709a</code></a> [release/8.0] Bump net7 downlevel version to 7.0.14 (<a href="https://redirect.github.com/dotnet/runtime/issues/94192">#94192</a>)</li>
<li><a href="https://github.com/dotnet/runtime/commit/a60d358270ad89a0542d9ec0cb95b7702821a512"><code>a60d358</code></a> Merge in 'release/8.0' changes</li>
<li><a href="https://github.com/dotnet/runtime/commit/7331dcb60e0fd7c74a6f7216d61819c9f57a1ade"><code>7331dcb</code></a> [8.0] Update MsQuic (<a href="https://redirect.github.com/dotnet/runtime/issues/93979">#93979</a>)</li>
<li><a href="https://github.com/dotnet/runtime/commit/17ea9ab3f662320d4ac62d3a2b783b5054ad80bf"><code>17ea9ab</code></a> Merged PR 34793: [internal/release/8.0] Merge from public</li>
<li><a href="https://github.com/dotnet/runtime/commit/2066e8f214a187fb7d039a519808ca67a11b0368"><code>2066e8f</code></a> Apply suggestions from code review</li>
<li><a href="https://github.com/dotnet/runtime/commit/59edaad404d1b8e47080015ae8d0787f94c970df"><code>59edaad</code></a> [release/8.0] Honor JsonSerializerOptions.PropertyNameCaseInsensitive in prop...</li>
<li><a href="https://github.com/dotnet/runtime/commit/488a8a3521610422e8fbe22d5cc66127f3dce3dc"><code>488a8a3</code></a> [release/8.0][wasm] Fix perf pipeline runs (<a href="https://redirect.github.com/dotnet/runtime/issues/93888">#93888</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/dotnet/runtime/compare/v7.0.0...v8.0.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.Extensions.Logging.Console&package-manager=nuget&previous-version=7.0.0&new-version=8.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
It's a fairly common practice to compose string values using `fmt.Sprintf`, however in order to use these with `jsii` they need to be stored into a variable so a pointer can be taken from them, or they need passed into the `jsii.String` function.

This new helper removes this constraint and provides a simple way to perform `jsii`-friendly string interpolation.



---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
…ak/test/generated-code (#4347)

Bumps [mypy](https://github.com/python/mypy) from 1.7.0 to 1.7.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/python/mypy/commit/6b3c41838d8e7a39242b6fd035535e2d76eabfc6"><code>6b3c418</code></a> Update version to 1.7.1 (without +dev)</li>
<li><a href="https://github.com/python/mypy/commit/c10e17348f2eacbbeae80eb6c10c661c0137d849"><code>c10e173</code></a> [mypyc] Fix regression with nested functions (<a href="https://redirect.github.com/python/mypy/issues/16484">#16484</a>)</li>
<li><a href="https://github.com/python/mypy/commit/e6399d10b0a1cdb104559482fad1b4dc0e2de6ac"><code>e6399d1</code></a> Fix polymorphic application for callback protocols (<a href="https://redirect.github.com/python/mypy/issues/16514">#16514</a>)</li>
<li><a href="https://github.com/python/mypy/commit/661adb756800ecc40fabbe62e9339efd253aff4e"><code>661adb7</code></a> Fix crash on strict-equality with recursive types (<a href="https://redirect.github.com/python/mypy/issues/16483">#16483</a>)</li>
<li><a href="https://github.com/python/mypy/commit/6c8e0cc47c014894ea41621a10f3d1b465322362"><code>6c8e0cc</code></a> Ignore position if imprecise arguments are matched by name (<a href="https://redirect.github.com/python/mypy/issues/16471">#16471</a>)</li>
<li><a href="https://github.com/python/mypy/commit/5c354c41c0fbb74418afcbd30ba822694be28d11"><code>5c354c4</code></a> Fix missing meet case exposed by len narrowing (<a href="https://redirect.github.com/python/mypy/issues/16470">#16470</a>)</li>
<li><a href="https://github.com/python/mypy/commit/88791cabe0521f77b699405154d90f3bb7c6b31b"><code>88791ca</code></a> Exclude private attributes from override checks (<a href="https://redirect.github.com/python/mypy/issues/16464">#16464</a>)</li>
<li><a href="https://github.com/python/mypy/commit/4b5b316beb570bba4c9b7797deb2e6d7df0552d0"><code>4b5b316</code></a> Special-case unions in polymorphic inference (<a href="https://redirect.github.com/python/mypy/issues/16461">#16461</a>)</li>
<li><a href="https://github.com/python/mypy/commit/f862d3ef540c38e7efd2fffd64fc732d6318dfb4"><code>f862d3e</code></a> Fix crash on Callable self in <strong>call</strong> (<a href="https://redirect.github.com/python/mypy/issues/16453">#16453</a>)</li>
<li><a href="https://github.com/python/mypy/commit/fe79a59e44299a3cc8025aa5084e08773c872a54"><code>fe79a59</code></a> Bump version to 1.7.1+dev</li>
<li>See full diff in <a href="https://github.com/python/mypy/compare/v1.7.0...v1.7.1">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mypy&package-manager=pip&previous-version=1.7.0&new-version=1.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…~=9.4.14 in /gh-pages (#4349)

Updates the requirements on [mkdocs-material](https://github.com/squidfunk/mkdocs-material) to permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's releases</a>.</em></p>
<blockquote>
<h2>mkdocs-material-9.4.14</h2>
<ul>
<li>Added support for linking authors in blog posts</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.4.14+insiders-4.46.0 (2023-11-26)</p>
<ul>
<li>Added support for author profiles in blog plugin</li>
<li>Fixed custom index pages yielding two navigation items (4.45.0 regression)</li>
</ul>
<p>mkdocs-material-9.4.14 (2023-11-26)</p>
<ul>
<li>Added support for linking authors in blog posts</li>
</ul>
<p>mkdocs-material-9.4.13 (2023-11-26)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6365">#6365</a>: Blog plugin pagination links to previous pages broken</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/5758">#5758</a>: Updated Mermaid.js to version 10.6.1 (latest)</li>
</ul>
<p>mkdocs-material-9.4.12+insiders-4.45.0 (2023-11-24)</p>
<ul>
<li>Added support for sorting blog categories by post count or custom function</li>
<li>Improved tags plugin to generate Unicode-aware slugs by default</li>
<li>Fixed non-deterministic order of multiple authors in blog plugin</li>
</ul>
<p>mkdocs-material-9.4.12 (2023-11-24)</p>
<ul>
<li>Improved blog plugin to generate Unicode-aware slugs by default</li>
<li>Fixed non-deterministic order of categories in blog plugin</li>
</ul>
<p>mkdocs-material-9.4.11+insiders-4.44.0 (2023-11-23)</p>
<ul>
<li>Added pagination settings for archive pages in blog plugin</li>
<li>Added pagination settings for category pages in blog plugin</li>
</ul>
<p>mkdocs-material-9.4.11 (2023-11-23)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6364">#6364</a>: Search plugin crashing when enabling theme while serving</li>
<li>Fixed blog plugin crashing when disabling pagination</li>
</ul>
<p>mkdocs-material-9.4.10+insiders-4.43.1 (2023-11-19)</p>
<ul>
<li>Added third-party theme support in projects plugin, improving editing</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6360">#6360</a>: Projects plugin crashes when theme is not Material for MkDocs</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6306">#6306</a>: Projects plugin not reloading nested project configuration</li>
</ul>
<p>mkdocs-material-9.4.10 (2023-11-19)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6356">#6356</a>: Version selector can't be disabled via mike's configuration</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6281">#6281</a>: Navigation not rendering due to Safari bug (9.4.2 regression)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6261">#6261</a>: Navigation expansion animates on first load (9.4.2 regression)</li>
</ul>
<p>mkdocs-material-9.4.9 (2023-11-17)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6344">#6344</a>: Long entries cutoff in table of contents</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/c0aca213603644f80d8137e0932ad684f97d32e1"><code>c0aca21</code></a> Prepare 9.4.14 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/989ee849bb90babd86ef9f10ea350927d8ea8690"><code>989ee84</code></a> Documentation</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/8b68710ea3a5e763cf8f3becdf1f6a16c60d8a9e"><code>8b68710</code></a> Documentation</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/d355b435a751c46b0ea4258a824528c38d543a6a"><code>d355b43</code></a> Documentation</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/c81befb4ece9befb08c7c32cc847a749e139c133"><code>c81befb</code></a> Updated JSON schema</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/6be485c38febbe6076555367b4c174c92c6aad15"><code>6be485c</code></a> Documentation</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/28ebcbfb59f16b21d6d3e5e2b3741b72ebaa9c57"><code>28ebcbf</code></a> Added support for linking authors in blog posts</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/9c01605149e3bfabfb32fcf928cac207fb809cde"><code>9c01605</code></a> Updated dependencies</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/baaac7c291b55eb6788785b806133500a5836934"><code>baaac7c</code></a> Prepare 9.4.13 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/8143abe1e8267cfde9d2233a0ad7517e7771ce63"><code>8143abe</code></a> Documentation</li>
<li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.4.10...9.4.14">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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…in /packages/@jsii/python-runtime (#4353)

Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p>
<blockquote>
<h1>v69.0.2</h1>
<h2>Bugfixes</h2>
<ul>
<li>Added missing estimated date for removing <code>setuptools.dep_util</code> (deprecated in v69.0.0). (<a href="https://redirect.github.com/pypa/setuptools/issues/4131">#4131</a>)</li>
</ul>
<h1>v69.0.1</h1>
<h2>Bugfixes</h2>
<ul>
<li>Fixed imports of <code>setuptools.dep_util.newer_group</code>.
A deprecation warning is issued instead of a hard failure. (<a href="https://redirect.github.com/pypa/setuptools/issues/4126">#4126</a>)</li>
</ul>
<h1>v69.0.0</h1>
<h2>Features</h2>
<ul>
<li>Include type information (<code>py.typed</code>, <code>*.pyi</code>) by default (<a href="https://redirect.github.com/pypa/setuptools/issues/3136">#3136</a>) -- by :user:<code>Danie-1</code>,
<strong>EXPERIMENTAL</strong>. (<a href="https://redirect.github.com/pypa/setuptools/issues/3136">#3136</a>)</li>
<li>Exported <code>distutils.dep_util</code> and <code>setuptools.dep_util</code> through <code>setuptools.modified</code> -- by :user:<code>Avasam</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4069">#4069</a>)</li>
<li>Merged with pypa/distutils@7a04cbda0fc714.</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Replaced hardcoded numeric values with :obj:<code>dis.opmap</code>,
fixing problem with 3.13.0a1. (<a href="https://redirect.github.com/pypa/setuptools/issues/4094">#4094</a>)</li>
</ul>
<h2>Deprecations and Removals</h2>
<ul>
<li>Configuring project <code>version</code> and <code>egg_info.tag_*</code> in such a way that
results in invalid version strings (according to :pep:<code>440</code>) is no longer permitted. (<a href="https://redirect.github.com/pypa/setuptools/issues/4066">#4066</a>)</li>
<li>Removed deprecated <code>egg_base</code> option from <code>dist_info</code>.
Note that the <code>dist_info</code> command is considered internal to the way
<code>setuptools</code> build backend works and not intended for
public usage. (<a href="https://redirect.github.com/pypa/setuptools/issues/4066">#4066</a>)</li>
<li>The parsing of the deprecated <code>metadata.license_file</code> and
<code>metadata.requires</code> fields in <code>setup.cfg</code> is no longer supported.
Users are expected to move to <code>metadata.license_files</code> and</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/pypa/setuptools/commit/4f6449f409322fa63408881860ed9097c2ab0af8"><code>4f6449f</code></a> Bump version: 69.0.1 → 69.0.2</li>
<li><a href="https://github.com/pypa/setuptools/commit/a4298d119a7ed45a752d576dce50e3c4d4db4a72"><code>a4298d1</code></a> Add missing estimated date for removing setuptools.dep_util (<a href="https://redirect.github.com/pypa/setuptools/issues/4132">#4132</a>)</li>
<li><a href="https://github.com/pypa/setuptools/commit/14957384f9e408b2569e5caba85fd2090a8944c9"><code>1495738</code></a> Add news fragment</li>
<li><a href="https://github.com/pypa/setuptools/commit/c836172e42822144ac4823e94fa1b0ed65c7ca54"><code>c836172</code></a> Improve warning visibility with due date and reference url</li>
<li><a href="https://github.com/pypa/setuptools/commit/d148d9e9b530a80c61f15ba64910f51e4fd0e574"><code>d148d9e</code></a> Bump version: 69.0.0 → 69.0.1</li>
<li><a href="https://github.com/pypa/setuptools/commit/28775f31b33a753b5b3b4a32a2097dc7204f03db"><code>28775f3</code></a> Allow imports of setuptools.dep_util.newer_group with deprecation warning (<a href="https://redirect.github.com/pypa/setuptools/issues/4">#4</a>...</li>
<li><a href="https://github.com/pypa/setuptools/commit/7d90e9fa01dbcf05f1ab2f15627effcb70df930c"><code>7d90e9f</code></a> Add newsfragment</li>
<li><a href="https://github.com/pypa/setuptools/commit/e1f8783a6956216a12f98e690e4b10486b093013"><code>e1f8783</code></a> Allow imports of setuptools.dep_util.newer_group with deprecation warning</li>
<li><a href="https://github.com/pypa/setuptools/commit/536d4a82059747873cab87654567a721489e1cd3"><code>536d4a8</code></a> Bump version: 68.2.2 → 69.0.0</li>
<li><a href="https://github.com/pypa/setuptools/commit/b8992ad4737241752b58e6ca1748b0130820c838"><code>b8992ad</code></a> Mark flaky test on  PyPy with <code>xfail</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4124">#4124</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v68.2.2...v69.0.2">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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…ges/@jsii/python-runtime (#4351)

Updates the requirements on [wheel](https://github.com/pypa/wheel) to permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/pypa/wheel/releases">wheel's releases</a>.</em></p>
<blockquote>
<h2>0.42.0</h2>
<ul>
<li>Allowed removing build tag with <code>wheel tags --build &quot;&quot;</code></li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing updated <code>WHEEL</code> fields after a blank line, causing other tools to ignore them</li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing <code>WHEEL</code> with CRLF line endings or a mix of CRLF and LF</li>
<li>Fixed <code>wheel pack --build-number &quot;&quot;</code> not removing build tag from <code>WHEEL</code> (above changes by Benjamin Gilbert)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/pypa/wheel/blob/main/docs/news.rst">wheel's changelog</a>.</em></p>
<blockquote>
<h1>Release Notes</h1>
<p><strong>0.42.0 (2023-11-26)</strong></p>
<ul>
<li>Allowed removing build tag with <code>wheel tags --build &quot;&quot;</code></li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing updated <code>WHEEL</code> fields after a
blank line, causing other tools to ignore them</li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing <code>WHEEL</code> with CRLF line endings or
a mix of CRLF and LF</li>
<li>Fixed <code>wheel pack --build-number &quot;&quot;</code> not removing build tag from <code>WHEEL</code>
(above changes by Benjamin Gilbert)</li>
</ul>
<p><strong>0.41.3 (2023-10-30)</strong></p>
<ul>
<li>Updated vendored <code>packaging</code> to 23.2</li>
<li>Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)</li>
</ul>
<p><strong>0.41.2 (2023-08-22)</strong></p>
<ul>
<li>Fixed platform tag detection for GraalPy and 32-bit python running on an aarch64
kernel (PR by Matthieu Darbois)</li>
<li>Fixed <code>wheel tags</code> to not list directories in <code>RECORD</code> files
(PR by Mike Taves)</li>
<li>Fixed ABI tag generation for GraalPy (PR by Michael Simacek)</li>
</ul>
<p><strong>0.41.1 (2023-08-05)</strong></p>
<ul>
<li>Fixed naming of the <code>data_dir</code> directory in the presence of local version segment
given via <code>egg_info.tag_build</code> (PR by Anderson Bravalheri)</li>
<li>Fixed version specifiers in <code>Requires-Dist</code> being wrapped in parentheses</li>
</ul>
<p><strong>0.41.0 (2023-07-22)</strong></p>
<ul>
<li>Added full support of the build tag syntax to <code>wheel tags</code> (you can now set a build
tag like <code>123mytag</code>)</li>
<li>Fixed warning on Python 3.12 about <code>onerror</code> deprecation. (PR by Henry Schreiner)</li>
<li>Support testing on Python 3.12 betas (PR by Ewout ter Hoeven)</li>
</ul>
<p><strong>0.40.0 (2023-03-14)</strong></p>
<ul>
<li>Added a <code>wheel tags</code> command to modify tags on an existing wheel
(PR by Henry Schreiner)</li>
<li>Updated vendored <code>packaging</code> to 23.0</li>
<li><code>wheel unpack</code> now preserves the executable attribute of extracted files</li>
<li>Fixed spaces in platform names not being converted to underscores (PR by David Tucker)</li>
<li>Fixed <code>RECORD</code> files in generated wheels missing the regular file attribute</li>
<li>Fixed <code>DeprecationWarning</code> about the use of the deprecated <code>pkg_resources</code> API
(PR by Thomas Grainger)</li>
<li>Wheel now uses flit-core as a build backend (PR by Henry Schreiner)</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/pypa/wheel/commit/63a09bb3d92630c1d35f4fcc6f79250256aeeb5c"><code>63a09bb</code></a> Created a new release</li>
<li><a href="https://github.com/pypa/wheel/commit/f4b8e488dfe3da3ced0bc36aa7dcf21631e7489d"><code>f4b8e48</code></a> Several fixes to <code>WHEEL</code> metadata handling (<a href="https://redirect.github.com/pypa/wheel/issues/588">#588</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/11e573283181493f7aec55146ab2862bccd4dc4d"><code>11e5732</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/586">#586</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/fe6bb8268d5f9e98ceec83c67d03b06c1c8862db"><code>fe6bb82</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/584">#584</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/b90a4bc408ce621818b3e92bb55955431a7fa22a"><code>b90a4bc</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/581">#581</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/56de2ebd4bffa706a60ee0f7785a33c62be737f3"><code>56de2eb</code></a> Added a link to the GitHub repository to pyproject.toml (<a href="https://redirect.github.com/pypa/wheel/issues/563">#563</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/a899f1c69ffddf564b904a5de974457c213dc36a"><code>a899f1c</code></a> Fixed parameter for release-notes</li>
<li><a href="https://github.com/pypa/wheel/commit/254ba4658aa0bf1c5be536ccc02ed44e051468fd"><code>254ba46</code></a> Created a new release</li>
<li><a href="https://github.com/pypa/wheel/commit/6f33736b6f252506df8e574deced5d5667d05bf6"><code>6f33736</code></a> Updated actions and added GitHub release automation</li>
<li><a href="https://github.com/pypa/wheel/commit/83b77e591e6f593470f8daddf3bcfd6ca64e81bc"><code>83b77e5</code></a> Replaced <code>black</code> with <code>ruff-format</code></li>
<li>Additional commits viewable in <a href="https://github.com/pypa/wheel/compare/0.41.0...0.42.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
… to 4.8.0 in /packages/@jsii/dotnet-runtime-test/test (#4350)

Bumps [Microsoft.CodeAnalysis.CSharp.Workspaces](https://github.com/dotnet/roslyn) from 4.7.0 to 4.8.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dotnet/roslyn/releases">Microsoft.CodeAnalysis.CSharp.Workspaces's releases</a>.</em></p>
<blockquote>
<h2>.NET 6.0.1</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v6.0.1">Release</a></p>
<h2>.NET 5.0.4</h2>
<p><a href="https://github.com/dotnet/core/releases/tag/v5.0.4">Release</a></p>
<h2>.NET 5.0.2</h2>
<p><a href="https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.2/5.0.2.md">Release Notes</a>
<a href="https://github.com/dotnet/core/blob/master/release-notes/5.0/5.0.2/5.0.2-install-instructions.md">Install Instructions</a></p>
<h1>Repos</h1>
<ul>
<li><a href="https://github.com/dotnet/core/releases/tag/v5.0.2">Core</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/dotnet/roslyn/blob/main/docs/Breaking%20API%20Changes.md">Microsoft.CodeAnalysis.CSharp.Workspaces's changelog</a>.</em></p>
<blockquote>
<h1>Version 4.7.0</h1>
<h3><code>SymbolDisplayFormat</code> includes parameter name when invoked on <code>IParameterSymbol</code></h3>
<p>All <code>SymbolDisplayFormat</code>s (predefined and user-created) now include parameter names by default if used on a standalone <code>IParameterSymbol</code> for consistency with predefined formats (see the breaking change for version 4.5.0 above).</p>
<h3>Changed <code>IncrementalStepRunReason</code> when a modified input produced a new output</h3>
<p><code>IncrementalGeneratorRunStep.Outputs</code> previously contained <code>IncrementalStepRunReason.Modified</code> as <code>Reason</code>
when the input to the step was modified in a way that produced a new output.
Now the reason will be reported more accurately as <code>IncrementalStepRunReason.New</code>.</p>
<h1>Version 4.8.0</h1>
<h3>Changed <code>Assembly.Location</code> behavior in non-Windows</h3>
<p>The value of <code>Assembly.Location</code> previously held the location on disk where an analyzer or source generator was loaded from. This could be either the original location or the shadow copy location. In 4.8 this will be <code>&quot;&quot;</code> in certain cases when running on non Windows platforms. This is due the compiler server loading assemblies using <code>AssemblyLoadContext.LoadFromStream</code> instead of loading from disk.</p>
<p>This could already happen in other load scenarios but this change moves it into mainline build scenarios.</p>
<h3>Deprecation warning for SyntaxNode serialization</h3>
<p>The ability to serialize/deserialize a SyntaxNode to/from a Stream has been deprecated. The code for this still exists in Roslyn, but attempting to call the APIs to perform these functions will result in 'Obsolete' warnings being reported. A future version of Roslyn will remove this functionality entirely. This functionality could only work for a host that wrote out the nodes to a stream, and later read it back in within the same process instance. It could not be used to communicate across processes, or for persisting nodes to disk to be read in at a later time by a new host sessions. This functionality originally existed for the days when Roslyn was hosted in 32bit processes with limited address space. That is no longer a mainline supported scenario. Clients can get similar functionality by persisting the text of the node, and parsing it back out when needed.</p>
<p>PR: <a href="https://redirect.github.com/dotnet/roslyn/pull/70365">dotnet/roslyn#70365</a></p>
<h1>Version 4.9.0</h1>
<h3>Obsoletion and removal of SyntaxNode serialization.</h3>
<p>Continuation of the deprecation that happened in 4.8.0 (see information above).  In 4.9.0 this functionality is now entirely removed, and will issue both an obsoletion error, and will throw at runtime if the APIs are used.</p>
<p>PR: <a href="https://redirect.github.com/dotnet/roslyn/pull/70277">dotnet/roslyn#70277</a></p>
<h3>Changes in <code>Microsoft.CodeAnalysis.Emit.EmitBaseline.CreateInitialBaseline</code> method</h3>
<p>A new required parameter <code>Compilation</code> has been added. Existing overloads without this parameter no longer work and throw <code>NotSupportedException</code>.</p>
<h3>Changes in <code>Microsoft.CodeAnalysis.Emit.SemanticEdit</code> constructors</h3>
<p>The value of <code>preserveLocalVariables</code> passed to the constructors is no longer used.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/dotnet/roslyn/commits">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.CodeAnalysis.CSharp.Workspaces&package-manager=nuget&previous-version=4.7.0&new-version=4.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
Workflow currently fails due to the Node version being incompatible with used packages.


---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
…runtime (#4352)

Bumps [mypy](https://github.com/python/mypy) from 1.7.0 to 1.7.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/python/mypy/commit/6b3c41838d8e7a39242b6fd035535e2d76eabfc6"><code>6b3c418</code></a> Update version to 1.7.1 (without +dev)</li>
<li><a href="https://github.com/python/mypy/commit/c10e17348f2eacbbeae80eb6c10c661c0137d849"><code>c10e173</code></a> [mypyc] Fix regression with nested functions (<a href="https://redirect.github.com/python/mypy/issues/16484">#16484</a>)</li>
<li><a href="https://github.com/python/mypy/commit/e6399d10b0a1cdb104559482fad1b4dc0e2de6ac"><code>e6399d1</code></a> Fix polymorphic application for callback protocols (<a href="https://redirect.github.com/python/mypy/issues/16514">#16514</a>)</li>
<li><a href="https://github.com/python/mypy/commit/661adb756800ecc40fabbe62e9339efd253aff4e"><code>661adb7</code></a> Fix crash on strict-equality with recursive types (<a href="https://redirect.github.com/python/mypy/issues/16483">#16483</a>)</li>
<li><a href="https://github.com/python/mypy/commit/6c8e0cc47c014894ea41621a10f3d1b465322362"><code>6c8e0cc</code></a> Ignore position if imprecise arguments are matched by name (<a href="https://redirect.github.com/python/mypy/issues/16471">#16471</a>)</li>
<li><a href="https://github.com/python/mypy/commit/5c354c41c0fbb74418afcbd30ba822694be28d11"><code>5c354c4</code></a> Fix missing meet case exposed by len narrowing (<a href="https://redirect.github.com/python/mypy/issues/16470">#16470</a>)</li>
<li><a href="https://github.com/python/mypy/commit/88791cabe0521f77b699405154d90f3bb7c6b31b"><code>88791ca</code></a> Exclude private attributes from override checks (<a href="https://redirect.github.com/python/mypy/issues/16464">#16464</a>)</li>
<li><a href="https://github.com/python/mypy/commit/4b5b316beb570bba4c9b7797deb2e6d7df0552d0"><code>4b5b316</code></a> Special-case unions in polymorphic inference (<a href="https://redirect.github.com/python/mypy/issues/16461">#16461</a>)</li>
<li><a href="https://github.com/python/mypy/commit/f862d3ef540c38e7efd2fffd64fc732d6318dfb4"><code>f862d3e</code></a> Fix crash on Callable self in <strong>call</strong> (<a href="https://redirect.github.com/python/mypy/issues/16453">#16453</a>)</li>
<li><a href="https://github.com/python/mypy/commit/fe79a59e44299a3cc8025aa5084e08773c872a54"><code>fe79a59</code></a> Bump version to 1.7.1+dev</li>
<li>See full diff in <a href="https://github.com/python/mypy/compare/v1.7.0...v1.7.1">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mypy&package-manager=pip&previous-version=1.7.0&new-version=1.7.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
Add a GitHub action to update the DockerHub README of the superchain image every day.

Needed to to refactor the steps a little bit to get the credentials out in a way the Action needs them.

(Of course, no way to test this except in production :/ )


---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
…es/@jsii/go-runtime-test/project (#4358)

Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.15.0 to 0.16.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/golang/tools/commit/a9ef4cfeacd705b0e43cc2935571a80b6547d70c"><code>a9ef4cf</code></a> go.mod: update golang.org/x dependencies</li>
<li><a href="https://github.com/golang/tools/commit/d9b9452656b6061e51acbfb411087aaf7ca6d342"><code>d9b9452</code></a> gopls/internal/lsp/cache: move quick-fix bundling logic to the cache pkg</li>
<li><a href="https://github.com/golang/tools/commit/1733061d5fbd81eec28621bcc4d1e41158618669"><code>1733061</code></a> go/analysis/passes/testinggoroutine: report by enclosing regions</li>
<li><a href="https://github.com/golang/tools/commit/b19be0fa71558b3bd27dd4210d9eee35fd52db91"><code>b19be0f</code></a> gopls/internal/cmd/help_test.go: document</li>
<li><a href="https://github.com/golang/tools/commit/daa4aa59ed4efe3c28946c15b249fb8609074354"><code>daa4aa5</code></a> gopls/internal/lsp/source: stubmethods: fix out-of-bounds index</li>
<li><a href="https://github.com/golang/tools/commit/a586d0db8420774bb736981052730e51efca1dac"><code>a586d0d</code></a> go/types/internal/play: show more types.Scope detail</li>
<li><a href="https://github.com/golang/tools/commit/53ad329bd98f6eea2106d46f2c1655cbbdd28242"><code>53ad329</code></a> gopls/internal/lsp/source: move edit logic into the protocol package</li>
<li><a href="https://github.com/golang/tools/commit/3c677e3f7d23999e4a31018a5f6bfade055408b7"><code>3c677e3</code></a> gopls/internal/lsp/cache: move SuggestedFixFromCommand into cache</li>
<li><a href="https://github.com/golang/tools/commit/ab6af7d4bb284d8cae8d82939c658a178fa7ec9f"><code>ab6af7d</code></a> gopls/internal/lsp/source: extract InDir to a new pathutil package</li>
<li><a href="https://github.com/golang/tools/commit/e7d61d9d57a6c8718dbc18fee6d5ac92d2ebd8f8"><code>e7d61d9</code></a> gopls/internal/lsp/cache: simplify named error values</li>
<li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.15.0...v0.16.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.15.0&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
jsii now requires Python 3.8
Debian Buster only ships with Python 3.7 and we recommend users to upgrade to Bullseye based images.
Let's stop building Buster images.

Also clarifies our build permutations in the README.

---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-java/releases">actions/setup-java's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In the scope of this release, the version of the Node.js runtime was updated to 20. The majority of dependencies were updated to the latest versions. From now on, the code for the setup-java will run on Node.js 20 instead of Node.js 16.</p>
<h2>Breaking changes</h2>
<ul>
<li>Update Node.js runtime to version 20 by <a href="https://github.com/aparnajyothi-y"><code>@​aparnajyothi-y</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/558">actions/setup-java#558</a></li>
</ul>
<h2>Non-breaking changes</h2>
<ul>
<li>Adding support for microsoft openjdk 21.0.0 by <a href="https://github.com/ralfstuckert"><code>@​ralfstuckert</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/546">actions/setup-java#546</a></li>
<li>Update <code>@​actions/cache</code> dependency and documentation by <a href="https://github.com/IvanZosimov"><code>@​IvanZosimov</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/549">actions/setup-java#549</a></li>
<li>Implementation of the cache-dependency-path option to control caching dependency by <a href="https://github.com/itchyny"><code>@​itchyny</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/499">actions/setup-java#499</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ralfstuckert"><code>@​ralfstuckert</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/546">actions/setup-java#546</a></li>
<li><a href="https://github.com/itchyny"><code>@​itchyny</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/499">actions/setup-java#499</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v3...v4.0.0">https://github.com/actions/setup-java/compare/v3...v4.0.0</a></p>
<h2>v3.13.0</h2>
<h2>What's changed</h2>
<p>In the scope of this release, support for Dragonwell JDK was added by <a href="https://github.com/Accelerator1996"><code>@​Accelerator1996</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/532">actions/setup-java#532</a></p>
<pre lang="yaml"><code>steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: 'dragonwell'
     java-version: '17'
</code></pre>
<p>Several inaccuracies were also fixed:</p>
<ul>
<li>Fix XML namespaces wrongly using https by <a href="https://github.com/gnodet"><code>@​gnodet</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/503">actions/setup-java#503</a></li>
<li>Fix typo and remove unintentional(?) word by <a href="https://github.com/CyberFlameGO"><code>@​CyberFlameGO</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/518">actions/setup-java#518</a></li>
<li>Fix usage link within the README.md file by <a href="https://github.com/dassiorleando"><code>@​dassiorleando</code></a> in <a href="https://redirect.github.com/actions/setup-java/pull/525">actions/setup-java#525</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/CyberFlameGO"><code>@​CyberFlameGO</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/518">actions/setup-java#518</a></li>
<li><a href="https://github.com/dassiorleando"><code>@​dassiorleando</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/525">actions/setup-java#525</a></li>
<li><a href="https://github.com/gnodet"><code>@​gnodet</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/503">actions/setup-java#503</a></li>
<li><a href="https://github.com/Accelerator1996"><code>@​Accelerator1996</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-java/pull/532">actions/setup-java#532</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-java/compare/v3...v3.13.0">https://github.com/actions/setup-java/compare/v3...v3.13.0</a></p>
<h2>v3.12.0</h2>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/actions/setup-java/commit/387ac29b308b003ca37ba93a6cab5eb57c8f5f93"><code>387ac29</code></a> Upgrade Node to v20 (<a href="https://redirect.github.com/actions/setup-java/issues/558">#558</a>)</li>
<li><a href="https://github.com/actions/setup-java/commit/9eda6b51cc4f6ee99be3dd5537b85e389e47bda9"><code>9eda6b5</code></a> feat: implement cache-dependency-path option to control caching dependency (#...</li>
<li><a href="https://github.com/actions/setup-java/commit/78078da0cd035d0d177cc2cb696e05d96fba7d11"><code>78078da</code></a> Update <code>@​actions/cache</code> dependency and documentation (<a href="https://redirect.github.com/actions/setup-java/issues/549">#549</a>)</li>
<li><a href="https://github.com/actions/setup-java/commit/5caaba646e214abb5c4c808eb8fe13db519ab757"><code>5caaba6</code></a> add support for microsoft openjdk 21.0.0 (<a href="https://redirect.github.com/actions/setup-java/issues/546">#546</a>)</li>
<li>See full diff in <a href="https://github.com/actions/setup-java/compare/v3...v4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-java&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…ackages/jsii-pacmak/lib/targets/python (#4354)

Updates the requirements on [wheel](https://github.com/pypa/wheel) to permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/pypa/wheel/releases">wheel's releases</a>.</em></p>
<blockquote>
<h2>0.42.0</h2>
<ul>
<li>Allowed removing build tag with <code>wheel tags --build &quot;&quot;</code></li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing updated <code>WHEEL</code> fields after a blank line, causing other tools to ignore them</li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing <code>WHEEL</code> with CRLF line endings or a mix of CRLF and LF</li>
<li>Fixed <code>wheel pack --build-number &quot;&quot;</code> not removing build tag from <code>WHEEL</code> (above changes by Benjamin Gilbert)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/pypa/wheel/blob/main/docs/news.rst">wheel's changelog</a>.</em></p>
<blockquote>
<h1>Release Notes</h1>
<p><strong>0.42.0 (2023-11-26)</strong></p>
<ul>
<li>Allowed removing build tag with <code>wheel tags --build &quot;&quot;</code></li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing updated <code>WHEEL</code> fields after a
blank line, causing other tools to ignore them</li>
<li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing <code>WHEEL</code> with CRLF line endings or
a mix of CRLF and LF</li>
<li>Fixed <code>wheel pack --build-number &quot;&quot;</code> not removing build tag from <code>WHEEL</code>
(above changes by Benjamin Gilbert)</li>
</ul>
<p><strong>0.41.3 (2023-10-30)</strong></p>
<ul>
<li>Updated vendored <code>packaging</code> to 23.2</li>
<li>Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)</li>
</ul>
<p><strong>0.41.2 (2023-08-22)</strong></p>
<ul>
<li>Fixed platform tag detection for GraalPy and 32-bit python running on an aarch64
kernel (PR by Matthieu Darbois)</li>
<li>Fixed <code>wheel tags</code> to not list directories in <code>RECORD</code> files
(PR by Mike Taves)</li>
<li>Fixed ABI tag generation for GraalPy (PR by Michael Simacek)</li>
</ul>
<p><strong>0.41.1 (2023-08-05)</strong></p>
<ul>
<li>Fixed naming of the <code>data_dir</code> directory in the presence of local version segment
given via <code>egg_info.tag_build</code> (PR by Anderson Bravalheri)</li>
<li>Fixed version specifiers in <code>Requires-Dist</code> being wrapped in parentheses</li>
</ul>
<p><strong>0.41.0 (2023-07-22)</strong></p>
<ul>
<li>Added full support of the build tag syntax to <code>wheel tags</code> (you can now set a build
tag like <code>123mytag</code>)</li>
<li>Fixed warning on Python 3.12 about <code>onerror</code> deprecation. (PR by Henry Schreiner)</li>
<li>Support testing on Python 3.12 betas (PR by Ewout ter Hoeven)</li>
</ul>
<p><strong>0.40.0 (2023-03-14)</strong></p>
<ul>
<li>Added a <code>wheel tags</code> command to modify tags on an existing wheel
(PR by Henry Schreiner)</li>
<li>Updated vendored <code>packaging</code> to 23.0</li>
<li><code>wheel unpack</code> now preserves the executable attribute of extracted files</li>
<li>Fixed spaces in platform names not being converted to underscores (PR by David Tucker)</li>
<li>Fixed <code>RECORD</code> files in generated wheels missing the regular file attribute</li>
<li>Fixed <code>DeprecationWarning</code> about the use of the deprecated <code>pkg_resources</code> API
(PR by Thomas Grainger)</li>
<li>Wheel now uses flit-core as a build backend (PR by Henry Schreiner)</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/pypa/wheel/commit/63a09bb3d92630c1d35f4fcc6f79250256aeeb5c"><code>63a09bb</code></a> Created a new release</li>
<li><a href="https://github.com/pypa/wheel/commit/f4b8e488dfe3da3ced0bc36aa7dcf21631e7489d"><code>f4b8e48</code></a> Several fixes to <code>WHEEL</code> metadata handling (<a href="https://redirect.github.com/pypa/wheel/issues/588">#588</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/11e573283181493f7aec55146ab2862bccd4dc4d"><code>11e5732</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/586">#586</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/fe6bb8268d5f9e98ceec83c67d03b06c1c8862db"><code>fe6bb82</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/584">#584</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/b90a4bc408ce621818b3e92bb55955431a7fa22a"><code>b90a4bc</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/581">#581</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/56de2ebd4bffa706a60ee0f7785a33c62be737f3"><code>56de2eb</code></a> Added a link to the GitHub repository to pyproject.toml (<a href="https://redirect.github.com/pypa/wheel/issues/563">#563</a>)</li>
<li><a href="https://github.com/pypa/wheel/commit/a899f1c69ffddf564b904a5de974457c213dc36a"><code>a899f1c</code></a> Fixed parameter for release-notes</li>
<li><a href="https://github.com/pypa/wheel/commit/254ba4658aa0bf1c5be536ccc02ed44e051468fd"><code>254ba46</code></a> Created a new release</li>
<li><a href="https://github.com/pypa/wheel/commit/6f33736b6f252506df8e574deced5d5667d05bf6"><code>6f33736</code></a> Updated actions and added GitHub release automation</li>
<li><a href="https://github.com/pypa/wheel/commit/83b77e591e6f593470f8daddf3bcfd6ca64e81bc"><code>83b77e5</code></a> Replaced <code>black</code> with <code>ruff-format</code></li>
<li>Additional commits viewable in <a href="https://github.com/pypa/wheel/compare/0.41.0...0.42.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
…4362)

Any downstream packages that use `NodeRelease.supported` to compute a list of active Node versions currently believe they should test again Node 21, which we don't actually want.

---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
…es/@jsii/go-runtime/jsii-runtime-go (#4357)

Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.15.0 to 0.16.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/golang/tools/commit/a9ef4cfeacd705b0e43cc2935571a80b6547d70c"><code>a9ef4cf</code></a> go.mod: update golang.org/x dependencies</li>
<li><a href="https://github.com/golang/tools/commit/d9b9452656b6061e51acbfb411087aaf7ca6d342"><code>d9b9452</code></a> gopls/internal/lsp/cache: move quick-fix bundling logic to the cache pkg</li>
<li><a href="https://github.com/golang/tools/commit/1733061d5fbd81eec28621bcc4d1e41158618669"><code>1733061</code></a> go/analysis/passes/testinggoroutine: report by enclosing regions</li>
<li><a href="https://github.com/golang/tools/commit/b19be0fa71558b3bd27dd4210d9eee35fd52db91"><code>b19be0f</code></a> gopls/internal/cmd/help_test.go: document</li>
<li><a href="https://github.com/golang/tools/commit/daa4aa59ed4efe3c28946c15b249fb8609074354"><code>daa4aa5</code></a> gopls/internal/lsp/source: stubmethods: fix out-of-bounds index</li>
<li><a href="https://github.com/golang/tools/commit/a586d0db8420774bb736981052730e51efca1dac"><code>a586d0d</code></a> go/types/internal/play: show more types.Scope detail</li>
<li><a href="https://github.com/golang/tools/commit/53ad329bd98f6eea2106d46f2c1655cbbdd28242"><code>53ad329</code></a> gopls/internal/lsp/source: move edit logic into the protocol package</li>
<li><a href="https://github.com/golang/tools/commit/3c677e3f7d23999e4a31018a5f6bfade055408b7"><code>3c677e3</code></a> gopls/internal/lsp/cache: move SuggestedFixFromCommand into cache</li>
<li><a href="https://github.com/golang/tools/commit/ab6af7d4bb284d8cae8d82939c658a178fa7ec9f"><code>ab6af7d</code></a> gopls/internal/lsp/source: extract InDir to a new pathutil package</li>
<li><a href="https://github.com/golang/tools/commit/e7d61d9d57a6c8718dbc18fee6d5ac92d2ebd8f8"><code>e7d61d9</code></a> gopls/internal/lsp/cache: simplify named error values</li>
<li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.15.0...v0.16.0">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/tools&package-manager=go_modules&previous-version=0.15.0&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3 to 4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-dotnet/releases">actions/setup-dotnet's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2>What's Changed</h2>
<p>In the scope of this release, the version of the Node.js runtime was updated to 20. The majority of dependencies were updated to the latest versions. From now on, the code for the setup-dotnet will run on Node.js 20 instead of Node.js 16.</p>
<p><strong>Breaking changes</strong></p>
<p>Update Node.js runtime to version 20 by <a href="https://github.com/harithavattikuti"><code>@​harithavattikuti</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/issues/484">#484</a></p>
<p><strong>Non-breaking changes</strong></p>
<ul>
<li>Refactor installer by <a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/432">actions/setup-dotnet#432</a></li>
<li>Allow json comments by <a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/431">actions/setup-dotnet#431</a></li>
<li>Sequential version install fix by <a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/433">actions/setup-dotnet#433</a></li>
<li>Update fast-xml-parser and dotnet installer scripts by <a href="https://github.com/IvanZosimov"><code>@​IvanZosimov</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/437">actions/setup-dotnet#437</a></li>
<li>Update dependencies by <a href="https://github.com/IvanZosimov"><code>@​IvanZosimov</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/440">actions/setup-dotnet#440</a></li>
<li>Bump word-wrap from 1.2.3 to 1.2.4 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/444">actions/setup-dotnet#444</a></li>
<li>Update installers by <a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/462">actions/setup-dotnet#462</a></li>
<li>Update semver by <a href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a> in <a href="https://redirect.github.com/actions/setup-dotnet/pull/468">actions/setup-dotnet#468</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/HarithaVattikuti"><code>@​HarithaVattikuti</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-dotnet/pull/484">actions/setup-dotnet#484</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-dotnet/compare/v3...v4.0.0">https://github.com/actions/setup-dotnet/compare/v3...v4.0.0</a></p>
<h2>v3.2.0</h2>
<h2>What's Changed</h2>
<p>In scope of this minor release, the ability to cache the NuGet <code>global-packages</code> folder was added in <a href="https://redirect.github.com/actions/setup-dotnet/pull/303">actions/setup-dotnet#303</a> by <a href="https://github.com/nogic1008"><code>@​nogic1008</code></a></p>
<p>For caching, the action uses the <a href="https://github.com/actions/toolkit/tree/main/packages/cache"><code>@​toolkit/cache</code></a> library under the hood, which in turn allows getting rid of configuring the <a href="https://github.com/actions/cache"><code>@​actions/cache</code></a> action separately.</p>
<p>Such input parameters as <code>cache</code> and <code>cache-dependency-path</code> were added. The <code>cache</code> input is optional, and caching is turned off by default, <code>cache-dependency-path</code> is used to specify the path to a dependency file - <code>packages.lock.json</code>.</p>
<p><strong>Example of use-case:</strong></p>
<pre lang="yaml"><code>- uses: actions/setup-dotnet@v3
  with:
    dotnet-version: 6.x
    cache: true
    cache-dependency-path: subdir/packages.lock.json
</code></pre>
<p>More details can be found in the <a href="https://github.com/actions/setup-dotnet#caching-nuget-packages">action's documentation</a>.</p>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-dotnet/compare/v3...v3.2.0">https://github.com/actions/setup-dotnet/compare/v3...v3.2.0</a></p>
<h2>v3.1.0</h2>
<h2>What's Changed</h2>
<p>This minor release includes the following new <strong>features</strong>:</p>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/actions/setup-dotnet/commit/4d6c8fcf3c8f7a60068d26b594648e99df24cee3"><code>4d6c8fc</code></a> Upgrade Node to v20 (<a href="https://redirect.github.com/actions/setup-dotnet/issues/484">#484</a>)</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/2216f56ae1eec353f06abd464e2ec435fa5f5d43"><code>2216f56</code></a> Update semver (<a href="https://redirect.github.com/actions/setup-dotnet/issues/468">#468</a>)</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/736bc6dea68eb71addebd0c89e1200178e145f0e"><code>736bc6d</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-dotnet/issues/462">#462</a> from akv-platform/update-installers</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/f5526c2d1bfe45e0d078b8929dc379a93229ca3b"><code>f5526c2</code></a> Update installers</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/4dba25fa3156706981607e1598b263e056dc3008"><code>4dba25f</code></a> Bump word-wrap from 1.2.3 to 1.2.4 (<a href="https://redirect.github.com/actions/setup-dotnet/issues/444">#444</a>)</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/ada8800330ab5b086010be13121dd25e9297111e"><code>ada8800</code></a> Bump semver from 6.3.0 to 6.3.1 (<a href="https://redirect.github.com/actions/setup-dotnet/issues/443">#443</a>)</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/e1749123a8f5e9db8abf5ec8867696143bf9bf47"><code>e174912</code></a> Update dependencies (<a href="https://redirect.github.com/actions/setup-dotnet/issues/440">#440</a>)</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/a6be55a915808728eafbfb7fcba6275352dcf6e8"><code>a6be55a</code></a> Update fast-xml-parser and dotnet installer scripts (<a href="https://redirect.github.com/actions/setup-dotnet/issues/437">#437</a>)</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/9b407708251d576f3dac6969e4c0c453a00ff5d5"><code>9b40770</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-dotnet/issues/433">#433</a> from akv-platform/sequential-version-install-fix</li>
<li><a href="https://github.com/actions/setup-dotnet/commit/48277343a530e8f1def38c41afa05da090100cf8"><code>4827734</code></a> Reduce number of e2e tests</li>
<li>Additional commits viewable in <a href="https://github.com/actions/setup-dotnet/compare/v3...v4">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-dotnet&package-manager=github_actions&previous-version=3&new-version=4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
Add author paulhcs to contribution/core.

---

By submitting this pull request, I confirm that my contribution is made
under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-python/releases">actions/setup-python's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release, we update node version runtime from node16 to node20 (<a href="https://redirect.github.com/actions/setup-python/pull/772">actions/setup-python#772</a>). Besides, we update dependencies to the latest versions.</p>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-python/compare/v4.8.0...v5.0.0">https://github.com/actions/setup-python/compare/v4.8.0...v5.0.0</a></p>
<h2>v4.8.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release we added support for GraalPy (<a href="https://redirect.github.com/actions/setup-python/pull/694">actions/setup-python#694</a>). You can use this snippet to set up GraalPy:</p>
<pre lang="yaml"><code>steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4 
  with:
    python-version: 'graalpy-22.3' 
- run: python my_script.py
</code></pre>
<p>Besides, the release contains such changes as:</p>
<ul>
<li>Trim python version when reading from file by <a href="https://github.com/FerranPares"><code>@​FerranPares</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/628">actions/setup-python#628</a></li>
<li>Use non-deprecated versions in examples by <a href="https://github.com/jeffwidman"><code>@​jeffwidman</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/724">actions/setup-python#724</a></li>
<li>Change deprecation comment to past tense by <a href="https://github.com/jeffwidman"><code>@​jeffwidman</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/723">actions/setup-python#723</a></li>
<li>Bump <code>@​babel/traverse</code> from 7.9.0 to 7.23.2 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/743">actions/setup-python#743</a></li>
<li>advanced-usage.md: Encourage the use actions/checkout@v4 by <a href="https://github.com/cclauss"><code>@​cclauss</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/729">actions/setup-python#729</a></li>
<li>Examples now use checkout@v4 by <a href="https://github.com/simonw"><code>@​simonw</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/738">actions/setup-python#738</a></li>
<li>Update actions/checkout to v4 by <a href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/761">actions/setup-python#761</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/FerranPares"><code>@​FerranPares</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-python/pull/628">actions/setup-python#628</a></li>
<li><a href="https://github.com/timfel"><code>@​timfel</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-python/pull/694">actions/setup-python#694</a></li>
<li><a href="https://github.com/jeffwidman"><code>@​jeffwidman</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-python/pull/724">actions/setup-python#724</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-python/compare/v4...v4.8.0">https://github.com/actions/setup-python/compare/v4...v4.8.0</a></p>
<h2>v4.7.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Bump word-wrap from 1.2.3 to 1.2.4 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/702">actions/setup-python#702</a></li>
<li>Add range validation for toml files by <a href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a> in <a href="https://redirect.github.com/actions/setup-python/pull/726">actions/setup-python#726</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-python/compare/v4...v4.7.1">https://github.com/actions/setup-python/compare/v4...v4.7.1</a></p>
<h2>v4.7.0</h2>
<p>In scope of this release, the support for reading python version from pyproject.toml was added (<a href="https://redirect.github.com/actions/setup-python/pull/669">actions/setup-python#669</a>).</p>
<pre lang="yaml"><code>      - name: Setup Python
        uses: actions/setup-python@v4
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/actions/setup-python/commit/0a5c61591373683505ea898e09a3ea4f39ef2b9c"><code>0a5c615</code></a> Update action to node20 (<a href="https://redirect.github.com/actions/setup-python/issues/772">#772</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/0ae58361cdfd39e2950bed97a1e26aa20c3d8955"><code>0ae5836</code></a> Add example of GraalPy to docs (<a href="https://redirect.github.com/actions/setup-python/issues/773">#773</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/b64ffcaf5b410884ad320a9cfac8866006a109aa"><code>b64ffca</code></a> update actions/checkout to v4 (<a href="https://redirect.github.com/actions/setup-python/issues/761">#761</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/8d2896179abf658742de432b3f203d2c2d86a587"><code>8d28961</code></a> Examples now use checkout@v4 (<a href="https://redirect.github.com/actions/setup-python/issues/738">#738</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/7bc6abb01e0555719edc2dbca70a2fde309e5e56"><code>7bc6abb</code></a> advanced-usage.md: Encourage the use actions/checkout@v4 (<a href="https://redirect.github.com/actions/setup-python/issues/729">#729</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/e8111cec9d3dc15220d8a3b638f08419f57b906a"><code>e8111ce</code></a> Bump <code>@​babel/traverse</code> from 7.9.0 to 7.23.2 (<a href="https://redirect.github.com/actions/setup-python/issues/743">#743</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/a00ea43da65e7c04d2bdae58b3afecd77057eb9e"><code>a00ea43</code></a> add fix for graalpy ci (<a href="https://redirect.github.com/actions/setup-python/issues/741">#741</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/8635b1ccc5934e73ed3510980fd2e7790b85839b"><code>8635b1c</code></a> Change deprecation comment to past tense (<a href="https://redirect.github.com/actions/setup-python/issues/723">#723</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/f6cc428f535856f9c23558d01765a42a4d6cf758"><code>f6cc428</code></a> Use non-deprecated versions in examples (<a href="https://redirect.github.com/actions/setup-python/issues/724">#724</a>)</li>
<li><a href="https://github.com/actions/setup-python/commit/5f2af211d616f86005883b44826180b21abb4060"><code>5f2af21</code></a> Add GraalPy support (<a href="https://redirect.github.com/actions/setup-python/issues/694">#694</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/actions/setup-python/compare/v4...v5">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-python&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-go/releases">actions/setup-go's releases</a>.</em></p>
<blockquote>
<h2>v5.0.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release, we change Nodejs runtime from node16 to node20 (<a href="https://redirect.github.com/actions/setup-go/pull/421">actions/setup-go#421</a>). Moreover, we update some dependencies to the latest versions (<a href="https://redirect.github.com/actions/setup-go/pull/445">actions/setup-go#445</a>).</p>
<p>Besides, this release contains such changes as:</p>
<ul>
<li>Fix hosted tool cache usage on windows by <a href="https://github.com/galargh"><code>@​galargh</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/411">actions/setup-go#411</a></li>
<li>Improve documentation regarding dependencies caching by <a href="https://github.com/artemgavrilov"><code>@​artemgavrilov</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/417">actions/setup-go#417</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/galargh"><code>@​galargh</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-go/pull/411">actions/setup-go#411</a></li>
<li><a href="https://github.com/artemgavrilov"><code>@​artemgavrilov</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-go/pull/417">actions/setup-go#417</a></li>
<li><a href="https://github.com/chenrui333"><code>@​chenrui333</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-go/pull/421">actions/setup-go#421</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-go/compare/v4...v5.0.0">https://github.com/actions/setup-go/compare/v4...v5.0.0</a></p>
<h2>v4.1.0</h2>
<h2>What's Changed</h2>
<p>In scope of this release, slow installation on Windows was fixed by <a href="https://github.com/dsame"><code>@​dsame</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/393">actions/setup-go#393</a> and OS version was added to <code>primaryKey</code> for Ubuntu runners to avoid conflicts (<a href="https://redirect.github.com/actions/setup-go/pull/383">actions/setup-go#383</a>)</p>
<p>This release also includes the following changes:</p>
<ul>
<li>Remove implicit dependencies by <a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/378">actions/setup-go#378</a></li>
<li>Update action.yml by <a href="https://github.com/mkelly"><code>@​mkelly</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/379">actions/setup-go#379</a></li>
<li>Added a description that go-version should be specified as a string type by <a href="https://github.com/n3xem"><code>@​n3xem</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/367">actions/setup-go#367</a></li>
<li>Add note about YAML parsing versions by <a href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/382">actions/setup-go#382</a></li>
<li>Automatic update of configuration files from 05/23/2023 by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/377">actions/setup-go#377</a></li>
<li>Bump tough-cookie and <code>@​azure/ms-rest-js</code> by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/392">actions/setup-go#392</a></li>
<li>Bump word-wrap from 1.2.3 to 1.2.4 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/397">actions/setup-go#397</a></li>
<li>Bump semver from 6.3.0 to 6.3.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/396">actions/setup-go#396</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/mkelly"><code>@​mkelly</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-go/pull/379">actions/setup-go#379</a></li>
<li><a href="https://github.com/n3xem"><code>@​n3xem</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-go/pull/367">actions/setup-go#367</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-go/compare/v4...v4.1.0">https://github.com/actions/setup-go/compare/v4...v4.1.0</a></p>
<h2>v4.0.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Update documentation for <code>v4</code> by <a href="https://github.com/dsame"><code>@​dsame</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/354">actions/setup-go#354</a></li>
<li>Fix glob bug in the package.json scripts section by <a href="https://github.com/IvanZosimov"><code>@​IvanZosimov</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/359">actions/setup-go#359</a></li>
<li>Bump <code>xml2js</code> dependency by <a href="https://github.com/dmitry-shibanov"><code>@​dmitry-shibanov</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/370">actions/setup-go#370</a></li>
<li>Bump <code>@actions/cache</code> dependency to v3.2.1 by <a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> in <a href="https://redirect.github.com/actions/setup-go/pull/374">actions/setup-go#374</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/nikolai-laevskii"><code>@​nikolai-laevskii</code></a> made their first contribution in <a href="https://redirect.github.com/actions/setup-go/pull/374">actions/setup-go#374</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/actions/setup-go/compare/v4...v4.0.1">https://github.com/actions/setup-go/compare/v4...v4.0.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/actions/setup-go/commit/0c52d547c9bc32b1aa3301fd7a9cb496313a4491"><code>0c52d54</code></a> Update dependencies for node20 (<a href="https://redirect.github.com/actions/setup-go/issues/445">#445</a>)</li>
<li><a href="https://github.com/actions/setup-go/commit/bfd2fb341f32be7281829126376a12a780ca79fc"><code>bfd2fb3</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-go/issues/421">#421</a> from chenrui333/node20-runtime</li>
<li><a href="https://github.com/actions/setup-go/commit/3d65fa57fcbfe4a359b6b71a6c65e6eec12984eb"><code>3d65fa5</code></a> feat: bump to use actions/checkout@v4</li>
<li><a href="https://github.com/actions/setup-go/commit/8a505c9cf2e2726eda7f3268d6992e386a12da52"><code>8a505c9</code></a> feat: bump to use node20 runtime</li>
<li><a href="https://github.com/actions/setup-go/commit/883490dfd06f396ebe0b738bc313a53cf9d851e5"><code>883490d</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-go/issues/417">#417</a> from artemgavrilov/main</li>
<li><a href="https://github.com/actions/setup-go/commit/d45ebba0ce181dc5604aaf69ce5a0bdcbd3b1807"><code>d45ebba</code></a> Rephrase sentence</li>
<li><a href="https://github.com/actions/setup-go/commit/317c6617fa9e4e67f1e5e20ad8bc98bf298a0f8f"><code>317c661</code></a> Replace <code>wildcards</code> term with <code>globs</code>.</li>
<li><a href="https://github.com/actions/setup-go/commit/f90673ad641a19d0689fba58b5c79adc54be5d81"><code>f90673a</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-go/issues/1">#1</a> from artemgavrilov/caching-docs-improvement</li>
<li><a href="https://github.com/actions/setup-go/commit/801823434715e45aa48743a38182d33b33675d02"><code>8018234</code></a> Improve documentation regarding dependencies cachin</li>
<li><a href="https://github.com/actions/setup-go/commit/d085b4fe57b6e17262cbebc67b4d2d341d8938c2"><code>d085b4f</code></a> Merge pull request <a href="https://redirect.github.com/actions/setup-go/issues/411">#411</a> from galargh/fix/windows-hostedtoolcache</li>
<li>Additional commits viewable in <a href="https://github.com/actions/setup-go/compare/v4...v5">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-go&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
@aws-cdk-automation aws-cdk-automation added the pr/no-squash This PR should be merged instead of squash-merging it label Dec 8, 2023
Copy link
Contributor

mergify bot commented Dec 8, 2023

Thank you for contributing! ❤️ I will now look into making sure the PR is up-to-date, then proceed to try and merge it!

@mergify mergify bot added the pr/ready-to-merge This PR is ready to be merged. label Dec 8, 2023
Copy link
Contributor

mergify bot commented Dec 8, 2023

Merging (no-squash)...

@mergify mergify bot merged commit 1706ca5 into release Dec 8, 2023
31 checks passed
@mergify mergify bot deleted the bump/1.93.0 branch December 8, 2023 16:51
@mergify mergify bot removed the pr/ready-to-merge This PR is ready to be merged. label Dec 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pr/no-squash This PR should be merged instead of squash-merging it
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants