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.97.0 #4475

Merged
merged 10 commits into from
Apr 8, 2024
Merged

chore(release): 1.97.0 #4475

merged 10 commits into from
Apr 8, 2024

Conversation

aws-cdk-automation
Copy link
Collaborator

@aws-cdk-automation aws-cdk-automation commented Apr 8, 2024

See CHANGELOG

mergify bot and others added 10 commits March 22, 2024 19:15
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.4 to 1.15.6.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/follow-redirects/follow-redirects/commit/35a517c5861d79dc8bff7db8626013d20b711b06"><code>35a517c</code></a> Release version 1.15.6 of the npm package.</li>
<li><a href="https://github.com/follow-redirects/follow-redirects/commit/c4f847f85176991f95ab9c88af63b1294de8649b"><code>c4f847f</code></a> Drop Proxy-Authorization across hosts.</li>
<li><a href="https://github.com/follow-redirects/follow-redirects/commit/8526b4a1b2ab3a2e4044299377df623a661caa76"><code>8526b4a</code></a> Use GitHub for disclosure.</li>
<li><a href="https://github.com/follow-redirects/follow-redirects/commit/b1677ce00110ee50dc5da576751d39b281fc4944"><code>b1677ce</code></a> Release version 1.15.5 of the npm package.</li>
<li><a href="https://github.com/follow-redirects/follow-redirects/commit/d8914f7982403ea096b39bd594a00ee9d3b7e224"><code>d8914f7</code></a> Preserve fragment in responseUrl.</li>
<li>See full diff in <a href="https://github.com/follow-redirects/follow-redirects/compare/v1.15.4...v1.15.6">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=follow-redirects&package-manager=npm_and_yarn&previous-version=1.15.4&new-version=1.15.6)](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)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/aws/jsii/network/alerts).

</details>
…=2.9 in /packages/@jsii/python-runtime (#4459)

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>
…t of PEP440 (#4462)

`jsii-pacmak`'s current version logic does not fully implement/adhere to PEP440 in two respects:
* There is no support for "[local version identifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/#local-version-identifiers)", which are basically the same as SemVer's build metadata (e.g. `1.2.3+foobar`), when used in conjunction with a pre-release label.
* The current pre-release logic doesn't reflect the ability for python pre-releases to include [post-release](https://packaging.python.org/en/latest/specifications/version-specifiers/#post-releases) and [developmental release](https://packaging.python.org/en/latest/specifications/version-specifiers/#developmental-releases) labels in conjunction with the pre-release itself (e.g. `1.2.3.rc1.post2.dev3`)

This PR addresses these gaps so that the python release supports these features. I've kept support for the `pre` label as a synonym for `dev`,

E.g. now `1.2.3-rc.1.dev.2.post.3+foobar` will now yield `1.2.3.rc1.post3.dev2+foobar` for python 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
…~=9.5.15 in /gh-pages (#4467)

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.5.15</h2>
<ul>
<li>Reverted fix for transparent iframes (9.5.14)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6929">#6929</a>: Interference of social plugin and auto dark mode</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6938">#6938</a>: Giscus shows dark background in light mode (9.5.14 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.5.15+insiders-4.53.3 (2024-03-23)</p>
<ul>
<li>Added support for font variants in social plugin</li>
<li>Improved resilience of font resolution in social plugin</li>
<li>Fixed tag listing sometimes not being auto-populated</li>
<li>Fixed tag listing scope not being correctly resolved</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6941">#6941</a>: Meta plugin adding duplicate entries</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6928">#6928</a>: Social plugin crashes for some fonts</li>
</ul>
<p>mkdocs-material-9.5.15 (2024-03-23)</p>
<ul>
<li>Reverted fix for transparent iframes (9.5.14)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6929">#6929</a>: Interference of social plugin and auto dark mode</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6938">#6938</a>: Giscus shows dark background in light mode (9.5.14 regression)</li>
</ul>
<p>mkdocs-material-9.5.14+insiders-4.53.2 (2024-03-18)</p>
<ul>
<li>Fixed abort on first non-matching configuration in preview extension</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6914">#6914</a>: Meta files take precedence over front matter</li>
</ul>
<p>mkdocs-material-9.5.14 (2024-03-18)</p>
<ul>
<li>Added support for hiding versions from selector when using mike</li>
<li>Added init system to improve signal handling in Docker image</li>
<li>Fixed edge cases in exclusion logic of info plugin</li>
<li>Fixed inability to reset pipeline in search plugin</li>
<li>Fixed syntax error in Finnish translations</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6917">#6917</a>: UTF-8 encoding problems in blog plugin on Windows</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6889">#6889</a>: Transparent iframes get background color</li>
</ul>
<p>mkdocs-material-9.5.13+insiders-4.53.1 (2024-03-06)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6877">#6877</a>: Projects plugin computes incorrect path to assets</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6869">#6869</a>: Blog plugin should emit warning on invalid related link</li>
</ul>
<p>mkdocs-material-9.5.13 (2024-03-06)</p>
<ul>
<li>Updated Slovak translations</li>
<li>Improved info plugin interop with projects plugin</li>
<li>Improved info plugin inclusion/exclusion logic</li>
<li>Fixed info plugin not gathering files recursively</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6750">#6750</a>: Ensure info plugin packs up all necessary files</li>
</ul>
<p>mkdocs-material-9.5.12 (2024-02-29)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6846">#6846</a>: Some meta tags removed on instant navigation (9.4.2 regression)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6823">#6823</a>: KaTex not rendering on instant navigation (9.5.5 regression)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6821">#6821</a>: Privacy plugin doesn't handle URLs with encoded characters</li>
</ul>
<p>mkdocs-material-9.5.11+insiders-4.53.0 (2024-02-24)</p>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/99d15d158f52e1503a90848eeb9fcb1a28a68def"><code>99d15d1</code></a> Prepare 9.5.15 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/92b3e1bbcd475868ec8b97fbd30409149571a711"><code>92b3e1b</code></a> Reverted fix for borders on iframes</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/1b2d48455d26ea51c4f0648cc67c37814f84d55a"><code>1b2d484</code></a> Documentation (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6951">#6951</a>)</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/495c64e7193cceed338c00421efe781ab7fed668"><code>495c64e</code></a> Restructured funding goals</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/8addc95d9dfd68b61557a61e17f691544ee6d139"><code>8addc95</code></a> Added support for font variants in social plugin</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/3f09228249a360454e9dc4a7c10bdae5f62062eb"><code>3f09228</code></a> Documentation (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6933">#6933</a>)</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/66d450009db8255b3d485654c1436a2845a3ae78"><code>66d4500</code></a> Fixed interference of social plugin and auto dark mode</li>
<li>See full diff in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.14...9.5.15">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.5.16 in /gh-pages (#4471)

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.5.16</h2>
<ul>
<li>Updated Russian translations</li>
<li>Improved error handling and reporting in social plugin</li>
<li>Improved error handling and reporting in privacy plugin</li>
<li>Fixed blog plugin not allowing to use time in format strings</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6983">#6983</a>: Social plugin crashes because of Google Fonts API change</li>
</ul>
<p>Thanks to <a href="https://github.com/kamilkrzyskow"><code>@​kamilkrzyskow</code></a>, <a href="https://github.com/Guts"><code>@​Guts</code></a>, <a href="https://github.com/szg-alex-payne"><code>@​szg-alex-payne</code></a> and <a href="https://github.com/natakazakova"><code>@​natakazakova</code></a> for their contributions</p>
</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.5.16+insiders-4.53.4 (2024-03-31)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6973">#6973</a>: Escaping issue in tags extra files deprecation helper</li>
</ul>
<p>mkdocs-material-9.5.16 (2024-03-31)</p>
<ul>
<li>Updated Russian translations</li>
<li>Improved error handling and reporting in social plugin</li>
<li>Improved error handling and reporting in privacy plugin</li>
<li>Fixed blog plugin not allowing to use time in format strings</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6983">#6983</a>: Social plugin crashes because of Google Fonts API change</li>
</ul>
<p>mkdocs-material-9.5.15+insiders-4.53.3 (2024-03-23)</p>
<ul>
<li>Added support for font variants in social plugin</li>
<li>Improved resilience of font resolution in social plugin</li>
<li>Fixed tag listing sometimes not being auto-populated</li>
<li>Fixed tag listing scope not being correctly resolved</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6941">#6941</a>: Meta plugin adding duplicate entries</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6928">#6928</a>: Social plugin crashes for some fonts</li>
</ul>
<p>mkdocs-material-9.5.15 (2024-03-23)</p>
<ul>
<li>Reverted fix for transparent iframes (9.5.14)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6929">#6929</a>: Interference of social plugin and auto dark mode</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6938">#6938</a>: Giscus shows dark background in light mode (9.5.14 regression)</li>
</ul>
<p>mkdocs-material-9.5.14+insiders-4.53.2 (2024-03-18)</p>
<ul>
<li>Fixed abort on first non-matching configuration in preview extension</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6914">#6914</a>: Meta files take precedence over front matter</li>
</ul>
<p>mkdocs-material-9.5.14 (2024-03-18)</p>
<ul>
<li>Added support for hiding versions from selector when using mike</li>
<li>Added init system to improve signal handling in Docker image</li>
<li>Fixed edge cases in exclusion logic of info plugin</li>
<li>Fixed inability to reset pipeline in search plugin</li>
<li>Fixed syntax error in Finnish translations</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6917">#6917</a>: UTF-8 encoding problems in blog plugin on Windows</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6889">#6889</a>: Transparent iframes get background color</li>
</ul>
<p>mkdocs-material-9.5.13+insiders-4.53.1 (2024-03-06)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6877">#6877</a>: Projects plugin computes incorrect path to assets</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6869">#6869</a>: Blog plugin should emit warning on invalid related link</li>
</ul>
<p>mkdocs-material-9.5.13 (2024-03-06)</p>
<ul>
<li>Updated Slovak translations</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/895652409795662dc809c6e020e082b2238fe0a3"><code>8956524</code></a> Updated Insiders changelog</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/0db4e667da098cede42f78fb3325b3f95c50bbfa"><code>0db4e66</code></a> Updated changelog</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/29cf44b71ca0e579c693c79d8e74c820a42b5910"><code>29cf44b</code></a> Improved resilience of privacy plugin</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/6c9ba875bfd5d93007b48debd3b4041773dd5eef"><code>6c9ba87</code></a> Prepare 9.5.16 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/f2bfab91fee62419d4719387c8b9924166f96d5e"><code>f2bfab9</code></a> Updated dependencies</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/9e40207bb6e1218948721de87591b38ce6c497cd"><code>9e40207</code></a> Updated dependencies</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/a2cb35d4c5da25a90cb746e6b06a0c5ee7096b4b"><code>a2cb35d</code></a> Improved error handling on social plugin (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6818">#6818</a>)</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/abfac1a93e4cfc13924c48837cfc45dc724551f6"><code>abfac1a</code></a> Switched to Babel's <code>format_datetime</code> to allow for time in formatted dates (#...</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/01b2dd17e3e8d86b70ef8b9ae94096c47034ecc8"><code>01b2dd1</code></a> Updated Russian translations</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/ad7233640f2c679b7f149def57c96e1ec12b9ad9"><code>ad72336</code></a> Fixed social plugin Google Fonts integration</li>
<li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.15...9.5.16">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>
…es/@jsii/go-runtime-test/project (#4473)

Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.19.0 to 0.20.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/golang/tools/commit/11c692eb24abb64933c12b8f1b1ef7f4768a806e"><code>11c692e</code></a> gopls/internal/test/marker/testdata: skip hover size tests on 32-bit arm</li>
<li><a href="https://github.com/golang/tools/commit/fc660e510f18e54f2e17de0437f7ceeac4f30f59"><code>fc660e5</code></a> go.mod: update golang.org/x dependencies</li>
<li><a href="https://github.com/golang/tools/commit/6590f47255ceb98350d730b0da28133fc442111e"><code>6590f47</code></a> internal/gcimporter: renable tests of issue50259.go</li>
<li><a href="https://github.com/golang/tools/commit/f1d5252456df50ecbf20a3fc80c154067911e925"><code>f1d5252</code></a> gopls/internal/golang: Hover: show wasted % of struct space</li>
<li><a href="https://github.com/golang/tools/commit/951bb4069c36d7f65ff0353b4ca6c10ff0231b05"><code>951bb40</code></a> gopls/internal/test/integration/misc: fix flaky test</li>
<li><a href="https://github.com/golang/tools/commit/c9b0c65fdb3cbd3441bc1354d1daea50536bd08a"><code>c9b0c65</code></a> gopls/internal/analysis/fillreturns: skip test if gotypesalias=1</li>
<li><a href="https://github.com/golang/tools/commit/c623a2817b4c985e38252e1ce89b85a91814bcea"><code>c623a28</code></a> gopls/internal/cache: fix crash in snapshot.Analyze with patch versions</li>
<li><a href="https://github.com/golang/tools/commit/f345449c09b356db134114ed7e407b4c1eedc55c"><code>f345449</code></a> gopls/internal/server: filter diagnostics to &quot;best&quot; views</li>
<li><a href="https://github.com/golang/tools/commit/42d590c9cf8d4c10cb82c05081a3b6a8f55b9bf0"><code>42d590c</code></a> gopls/internal/test/integration: add a WriteGoSum run option</li>
<li><a href="https://github.com/golang/tools/commit/53d35a51d390a079bb6b6f2ba5e076f8a553d841"><code>53d35a5</code></a> gopls/internal/golang: RenderPackageDoc: fix doc links</li>
<li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.19.0...v0.20.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.19.0&new-version=0.20.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>
…~=9.5.17 in /gh-pages (#4474)

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.5.17</h2>
<ul>
<li>Updated Serbian translations</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7003">#7003</a>: Confusing keyboard interaction for palette toggle</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7001">#7001</a>: Blog posts now show time by default (9.5.16 regression)</li>
<li>Fixed edge case in backport of social plugin font loading logic</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.5.17+insiders-4.53.6 (2024-04-05)</p>
<ul>
<li>Ensure working directory is set for projects when using projects plugin</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6970">#6970</a>: Incorrect relative paths in git submodules with projects plugin</li>
</ul>
<p>mkdocs-material-9.5.17+insiders-4.53.5 (2024-04-02)</p>
<ul>
<li>Fixed social plugin crashing when no colors are specified in palettes</li>
</ul>
<p>mkdocs-material-9.5.17 (2024-04-02)</p>
<ul>
<li>Updated Serbian translations</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7003">#7003</a>: Confusing keyboard interaction for palette toggle</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7001">#7001</a>: Blog posts now show time by default (9.5.16 regression)</li>
<li>Fixed edge case in backport of social plugin font loading logic</li>
</ul>
<p>mkdocs-material-9.5.16+insiders-4.53.4 (2024-03-31)</p>
<ul>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6973">#6973</a>: Escaping issue in tags extra files deprecation helper</li>
</ul>
<p>mkdocs-material-9.5.16 (2024-03-31)</p>
<ul>
<li>Updated Russian translations</li>
<li>Improved error handling and reporting in social plugin</li>
<li>Improved error handling and reporting in privacy plugin</li>
<li>Fixed blog plugin not allowing to use time in format strings</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6983">#6983</a>: Social plugin crashes because of Google Fonts API change</li>
</ul>
<p>mkdocs-material-9.5.15+insiders-4.53.3 (2024-03-23)</p>
<ul>
<li>Added support for font variants in social plugin</li>
<li>Improved resilience of font resolution in social plugin</li>
<li>Fixed tag listing sometimes not being auto-populated</li>
<li>Fixed tag listing scope not being correctly resolved</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6941">#6941</a>: Meta plugin adding duplicate entries</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6928">#6928</a>: Social plugin crashes for some fonts</li>
</ul>
<p>mkdocs-material-9.5.15 (2024-03-23)</p>
<ul>
<li>Reverted fix for transparent iframes (9.5.14)</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6929">#6929</a>: Interference of social plugin and auto dark mode</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6938">#6938</a>: Giscus shows dark background in light mode (9.5.14 regression)</li>
</ul>
<p>mkdocs-material-9.5.14+insiders-4.53.2 (2024-03-18)</p>
<ul>
<li>Fixed abort on first non-matching configuration in preview extension</li>
<li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6914">#6914</a>: Meta files take precedence over front matter</li>
</ul>
<p>mkdocs-material-9.5.14 (2024-03-18)</p>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/570161ab3f0f7928c6d528e9a9bfcce2bef71fa5"><code>570161a</code></a> Prepare 9.5.17 release</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/78e93ac0af382bbbbb11d70ba91ed9b491455ffb"><code>78e93ac</code></a> Improved keyboard interactions for palette toggle</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/a3655e8307a12afc83a89432e3b4355fb805db4e"><code>a3655e8</code></a> Updated Serbian translations</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/1041766d81ccdd53200f206860d17e6a64d4e65b"><code>1041766</code></a> Fixed time sneaking into default post format string</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/e741f80fbea58155b63048931b0fdb0ce65c5732"><code>e741f80</code></a> Documentation</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/7e13ae602f76635e9374ee645b146f41e85cb1d5"><code>7e13ae6</code></a> Fix typos</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/7d6d8d7a7c006642b3d6ccc8359e3ab291992b55"><code>7d6d8d7</code></a> Updated slugify documentation</li>
<li><a href="https://github.com/squidfunk/mkdocs-material/commit/e71f00b4c9bc483d5ce60e91e5fd461305e389eb"><code>e71f00b</code></a> Fixed backporting of social plugin font loading logic</li>
<li>See full diff in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.16...9.5.17">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>
…es/@jsii/go-runtime/jsii-runtime-go (#4472)

Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.19.0 to 0.20.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/golang/tools/commit/11c692eb24abb64933c12b8f1b1ef7f4768a806e"><code>11c692e</code></a> gopls/internal/test/marker/testdata: skip hover size tests on 32-bit arm</li>
<li><a href="https://github.com/golang/tools/commit/fc660e510f18e54f2e17de0437f7ceeac4f30f59"><code>fc660e5</code></a> go.mod: update golang.org/x dependencies</li>
<li><a href="https://github.com/golang/tools/commit/6590f47255ceb98350d730b0da28133fc442111e"><code>6590f47</code></a> internal/gcimporter: renable tests of issue50259.go</li>
<li><a href="https://github.com/golang/tools/commit/f1d5252456df50ecbf20a3fc80c154067911e925"><code>f1d5252</code></a> gopls/internal/golang: Hover: show wasted % of struct space</li>
<li><a href="https://github.com/golang/tools/commit/951bb4069c36d7f65ff0353b4ca6c10ff0231b05"><code>951bb40</code></a> gopls/internal/test/integration/misc: fix flaky test</li>
<li><a href="https://github.com/golang/tools/commit/c9b0c65fdb3cbd3441bc1354d1daea50536bd08a"><code>c9b0c65</code></a> gopls/internal/analysis/fillreturns: skip test if gotypesalias=1</li>
<li><a href="https://github.com/golang/tools/commit/c623a2817b4c985e38252e1ce89b85a91814bcea"><code>c623a28</code></a> gopls/internal/cache: fix crash in snapshot.Analyze with patch versions</li>
<li><a href="https://github.com/golang/tools/commit/f345449c09b356db134114ed7e407b4c1eedc55c"><code>f345449</code></a> gopls/internal/server: filter diagnostics to &quot;best&quot; views</li>
<li><a href="https://github.com/golang/tools/commit/42d590c9cf8d4c10cb82c05081a3b6a8f55b9bf0"><code>42d590c</code></a> gopls/internal/test/integration: add a WriteGoSum run option</li>
<li><a href="https://github.com/golang/tools/commit/53d35a51d390a079bb6b6f2ba5e076f8a553d841"><code>53d35a5</code></a> gopls/internal/golang: RenderPackageDoc: fix doc links</li>
<li>Additional commits viewable in <a href="https://github.com/golang/tools/compare/v0.19.0...v0.20.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.19.0&new-version=0.20.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>
@aws-cdk-automation aws-cdk-automation added the pr/no-squash This PR should be merged instead of squash-merging it label Apr 8, 2024
Copy link
Contributor

mergify bot commented Apr 8, 2024

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 Apr 8, 2024
Copy link
Contributor

mergify bot commented Apr 8, 2024

Merging (no-squash)...

@mergify mergify bot merged commit 729de35 into release Apr 8, 2024
31 checks passed
@mergify mergify bot deleted the bump/1.97.0 branch April 8, 2024 19:51
@mergify mergify bot removed the pr/ready-to-merge This PR is ready to be merged. label Apr 8, 2024
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.

4 participants