-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Bump node-forge and webpack-dev-server in /cirq-web/cirq_ts #5854
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
Merged
CirqBot
merged 1 commit into
master
from
dependabot/npm_and_yarn/cirq-web/cirq_ts/node-forge-and-webpack-dev-server-1.3.1
Sep 21, 2022
Merged
Bump node-forge and webpack-dev-server in /cirq-web/cirq_ts #5854
CirqBot
merged 1 commit into
master
from
dependabot/npm_and_yarn/cirq-web/cirq_ts/node-forge-and-webpack-dev-server-1.3.1
Sep 21, 2022
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
360f60a
to
3ce7ada
Compare
3ce7ada
to
62ed9b3
Compare
vtomole
approved these changes
Sep 20, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Automerge cancelled: There are merge conflicts. |
62ed9b3
to
f55984a
Compare
Automerge cancelled: A status check is failing. |
f55984a
to
e2ed566
Compare
Bumps [node-forge](https://github.com/digitalbazaar/forge) and [webpack-dev-server](https://github.com/webpack/webpack-dev-server). These dependencies needed to be updated together. Updates `node-forge` from 0.10.0 to 1.3.1 - [Release notes](https://github.com/digitalbazaar/forge/releases) - [Changelog](https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md) - [Commits](digitalbazaar/forge@0.10.0...v1.3.1) Updates `webpack-dev-server` from 4.0.0-beta.3 to 4.10.1 - [Release notes](https://github.com/webpack/webpack-dev-server/releases) - [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md) - [Commits](webpack/webpack-dev-server@v4.0.0-beta.3...v4.10.1) --- updated-dependencies: - dependency-name: node-forge dependency-type: indirect - dependency-name: webpack-dev-server dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]>
e2ed566
to
0c1d88b
Compare
rht
pushed a commit
to rht/Cirq
that referenced
this pull request
May 1, 2023
…ib#5854) Bumps [node-forge](https://github.com/digitalbazaar/forge) and [webpack-dev-server](https://github.com/webpack/webpack-dev-server). These dependencies needed to be updated together. Updates `node-forge` from 0.10.0 to 1.3.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md">node-forge's changelog</a>.</em></p> <blockquote> <h2>1.3.1 - 2022-03-29</h2> <h3>Fixes</h3> <ul> <li>RFC 3447 and RFC 8017 allow for optional <code>DigestAlgorithm</code> <code>NULL</code> parameters for <code>sha*</code> algorithms and require <code>NULL</code> paramters for <code>md2</code> and <code>md5</code> algorithms.</li> </ul> <h2>1.3.0 - 2022-03-17</h2> <h3>Security</h3> <ul> <li>Three RSA PKCS#1 v1.5 signature verification issues were reported by Moosa Yahyazadeh (<a href="mailto:[email protected]">[email protected]</a>).</li> <li><strong>HIGH</strong>: Leniency in checking <code>digestAlgorithm</code> structure can lead to signature forgery. <ul> <li>The code is lenient in checking the digest algorithm structure. This can allow a crafted structure that steals padding bytes and uses unchecked portion of the PKCS#1 encoded message to forge a signature when a low public exponent is being used. For more information, please see <a href="https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE/">"Bleichenbacher's RSA signature forgery based on implementation error"</a> by Hal Finney.</li> <li>CVE ID: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24771">CVE-2022-24771</a></li> <li>GHSA ID: <a href="https://github.com/digitalbazaar/forge/security/advisories/GHSA-cfm4-qjh2-4765">GHSA-cfm4-qjh2-4765</a></li> </ul> </li> <li><strong>HIGH</strong>: Failing to check tailing garbage bytes can lead to signature forgery. <ul> <li>The code does not check for tailing garbage bytes after decoding a <code>DigestInfo</code> ASN.1 structure. This can allow padding bytes to be removed and garbage data added to forge a signature when a low public exponent is being used. For more information, please see <a href="https://mailarchive.ietf.org/arch/msg/openpgp/5rnE9ZRN1AokBVj3VqblGlP63QE/">"Bleichenbacher's RSA signature forgery based on implementation error"</a> by Hal Finney.</li> <li>CVE ID: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24772">CVE-2022-24772</a></li> <li>GHSA ID: <a href="https://github.com/digitalbazaar/forge/security/advisories/GHSA-x4jg-mjrx-434g">GHSA-x4jg-mjrx-434g</a></li> </ul> </li> <li><strong>MEDIUM</strong>: Leniency in checking type octet. <ul> <li><code>DigestInfo</code> is not properly checked for proper ASN.1 structure. This can lead to successful verification with signatures that contain invalid structures but a valid digest.</li> <li>CVE ID: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24773">CVE-2022-24773</a></li> <li>GHSA ID: <a href="https://github.com/digitalbazaar/forge/security/advisories/GHSA-2r2c-g63r-vccr">GHSA-2r2c-g63r-vccr</a></li> </ul> </li> </ul> <h3>Fixed</h3> <ul> <li>[asn1] Add fallback to pretty print invalid UTF8 data.</li> <li>[asn1] <code>fromDer</code> is now more strict and will default to ensuring all input bytes are parsed or throw an error. A new option <code>parseAllBytes</code> can disable this behavior. <ul> <li><strong>NOTE</strong>: The previous behavior is being changed since it can lead to security issues with crafted inputs. It is possible that code doing custom DER parsing may need to adapt to this new behavior and optional flag.</li> </ul> </li> <li>[rsa] Add and use a validator to check for proper structure of parsed ASN.1</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/digitalbazaar/forge/commit/a0a4a4264bedb3296974b9675349c9c190144aeb"><code>a0a4a42</code></a> Release 1.3.1.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/a33830f61c351e8e3a34309767e8dd0de148376b"><code>a33830f</code></a> Update changelog.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/740954d747ac56b76a6e1ae12a057c9548843436"><code>740954d</code></a> Allow optional DigestAlgorithm parameters.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/56f4316b4cc6592e678f8c416209c45984b6547b"><code>56f4316</code></a> Allow DigestInfo.DigestAlgorith.parameters to be optional</li> <li><a href="https://github.com/digitalbazaar/forge/commit/cbf0bd590d47fe3120a57e7c36f2f4e64381ad81"><code>cbf0bd5</code></a> Start 1.3.1-0.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/6c5b90133d46af63d139b98bf65371732c8c7dad"><code>6c5b901</code></a> Release 1.3.0.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/0f3972ad5883a9869703c6f54a0627bc454bca47"><code>0f3972a</code></a> Update changelog.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/dc77b39dd347e7f8b60a0f25a311fe5f06130579"><code>dc77b39</code></a> Fix error checking.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/bb822c02df0b61211836472e29b9790cc541cdb2"><code>bb822c0</code></a> Add advisory links.</li> <li><a href="https://github.com/digitalbazaar/forge/commit/d4395fec831622837ecfec9e428d4620e208f9a8"><code>d4395fe</code></a> Update changelog.</li> <li>Additional commits viewable in <a href="https://github.com/digitalbazaar/forge/compare/0.10.0...v1.3.1">compare view</a></li> </ul> </details> <br /> Updates `webpack-dev-server` from 4.0.0-beta.3 to 4.10.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/webpack-dev-server/releases">webpack-dev-server's releases</a>.</em></p> <blockquote> <h2>v4.10.1</h2> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.10.0...v4.10.1">4.10.1</a> (2022-08-29)</h3> <h3>Bug Fixes</h3> <ul> <li>compatibility with old browsers (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4544">#4544</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/6a430d495e3e616304000e21e72deba27eb5303f">6a430d4</a>)</li> </ul> <h2>v4.10.0</h2> <h2><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.3...v4.10.0">4.10.0</a> (2022-08-10)</h2> <h3>Features</h3> <ul> <li>allow to configure more <code>client</code> options via resource URL (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4274">#4274</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/216e3cbe62dc90b9345995cb4f33ca9dd7b6aaba">216e3cb</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>response correctly when receive an OPTIONS request (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4185">#4185</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/2b3b7e000f688e086c68ba821ed2edc3cd56a219">2b3b7e0</a>)</li> </ul> <h2>v4.9.3</h2> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.2...v4.9.3">4.9.3</a> (2022-06-29)</h3> <h3>Bug Fixes</h3> <ul> <li>avoid creation unnecessary stream for static sockjs file (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4482">#4482</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/049b153b87ab908ae53b71356e0716bb3fc5bf07">049b153</a>)</li> <li>history-api-fallback now supports HEAD requests and handles them the same as GET (<a href="https://github.com/webpack/webpack-dev-server/commit/8936082809a9575f231afbcad6a32bb8e14d6dce">8936082</a>)</li> </ul> <h2>v4.9.2</h2> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.1...v4.9.2">4.9.2</a> (2022-06-06)</h3> <h3>Bug Fixes</h3> <ul> <li>add <code>@types/serve-static</code> to dependencies (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4468">#4468</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/af83deb199dc1d8cae4365ec2c5acf07e29358df">af83deb</a>)</li> </ul> <h2>v4.9.1</h2> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.0...v4.9.1">4.9.1</a> (2022-05-31)</h3> <h3>Bug Fixes</h3> <ul> <li>security problem with sockjs (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4465">#4465</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/e765182e426cbca9c3c09294b02ac2d9737c1d74">e765182</a>)</li> </ul> <h2>v4.9.0</h2> <h2><a href="https://github.com/webpack/webpack-dev-server/compare/v4.8.1...v4.9.0">4.9.0</a> (2022-05-04)</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md">webpack-dev-server's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.10.0...v4.10.1">4.10.1</a> (2022-08-29)</h3> <h3>Bug Fixes</h3> <ul> <li>compatibility with old browsers (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4544">#4544</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/6a430d495e3e616304000e21e72deba27eb5303f">6a430d4</a>)</li> </ul> <h2><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.3...v4.10.0">4.10.0</a> (2022-08-10)</h2> <h3>Features</h3> <ul> <li>allow to configure more <code>client</code> options via resource URL (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4274">#4274</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/216e3cbe62dc90b9345995cb4f33ca9dd7b6aaba">216e3cb</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>response correctly when receive an OPTIONS request (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4185">#4185</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/2b3b7e000f688e086c68ba821ed2edc3cd56a219">2b3b7e0</a>)</li> </ul> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.2...v4.9.3">4.9.3</a> (2022-06-29)</h3> <h3>Bug Fixes</h3> <ul> <li>avoid creation unnecessary stream for static sockjs file (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4482">#4482</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/049b153b87ab908ae53b71356e0716bb3fc5bf07">049b153</a>)</li> <li>history-api-fallback now supports HEAD requests and handles them the same as GET (<a href="https://github.com/webpack/webpack-dev-server/commit/8936082809a9575f231afbcad6a32bb8e14d6dce">8936082</a>)</li> </ul> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.1...v4.9.2">4.9.2</a> (2022-06-06)</h3> <h3>Bug Fixes</h3> <ul> <li>add <code>@types/serve-static</code> to dependencies (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4468">#4468</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/af83deb199dc1d8cae4365ec2c5acf07e29358df">af83deb</a>)</li> </ul> <h3><a href="https://github.com/webpack/webpack-dev-server/compare/v4.9.0...v4.9.1">4.9.1</a> (2022-05-31)</h3> <h3>Bug Fixes</h3> <ul> <li>security problem with sockjs (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4465">#4465</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/e765182e426cbca9c3c09294b02ac2d9737c1d74">e765182</a>)</li> </ul> <h2><a href="https://github.com/webpack/webpack-dev-server/compare/v4.8.1...v4.9.0">4.9.0</a> (2022-05-04)</h2> <h3>Features</h3> <ul> <li>support Trusted Types for client overlay (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4404">#4404</a>) (<a href="https://github.com/webpack/webpack-dev-server/commit/8132e1d029badab7b1e836f8f240844c2d843ecc">8132e1d</a>)</li> </ul> <h3>Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/webpack-dev-server/commit/eb997bba98765d78e9193b010eb845f8ace30637"><code>eb997bb</code></a> chore(release): 4.10.1</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/4eed30e606cb31869dd8c00b00afdd15218eba56"><code>4eed30e</code></a> ci: enable jest <code>--shard</code> option in github-actions (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4545">#4545</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/97dba79fecd4c289f15b04974e49abb936363783"><code>97dba79</code></a> chore(deps-dev): bump eslint from 8.22.0 to 8.23.0 (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4550">#4550</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/a2eb40cfd0bf2e059b70637bfbd9477c9c83c7fc"><code>a2eb40c</code></a> chore(deps-dev): bump core-js from 3.24.1 to 3.25.0 (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4548">#4548</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/6a430d495e3e616304000e21e72deba27eb5303f"><code>6a430d4</code></a> fix: compatibility with old browsers (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4544">#4544</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/735864c305e159e4a89de8e388bec069788e09ae"><code>735864c</code></a> chore(deps-dev): bump marked from 4.0.18 to 4.0.19 (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4546">#4546</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/22443c2a4295e14be797446f211fe8f4cc6a2386"><code>22443c2</code></a> chore(deps-dev): bump typescript from 4.7.4 to 4.8.2 (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4549">#4549</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/02e11e133dda80f49a78f6b7289acf4ad27e094a"><code>02e11e1</code></a> chore(deps-dev): bump <code>@babel/core</code> from 7.18.10 to 7.18.13 (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4547">#4547</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/751214a294ec9ae6f1b2206446c734510f386b33"><code>751214a</code></a> chore(deps-dev): bump eslint from 8.21.0 to 8.22.0 (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4541">#4541</a>)</li> <li><a href="https://github.com/webpack/webpack-dev-server/commit/544543a0b3a34e33c54511178f1fe244f7ec3ecb"><code>544543a</code></a> ci: add workflow to cancel previous runs (<a href="https://github-redirect.dependabot.com/webpack/webpack-dev-server/issues/4542">#4542</a>)</li> <li>Additional commits viewable in <a href="https://github.com/webpack/webpack-dev-server/compare/v4.0.0-beta.3...v4.10.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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/quantumlib/Cirq/network/alerts). </details>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/dependencies
area/javascript
Pull requests that update Javascript code
size: XL
lines changed >1000
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps node-forge and webpack-dev-server. These dependencies needed to be updated together.
Updates
node-forge
from 0.10.0 to 1.3.1Changelog
Sourced from node-forge's changelog.
... (truncated)
Commits
a0a4a42
Release 1.3.1.a33830f
Update changelog.740954d
Allow optional DigestAlgorithm parameters.56f4316
Allow DigestInfo.DigestAlgorith.parameters to be optionalcbf0bd5
Start 1.3.1-0.6c5b901
Release 1.3.0.0f3972a
Update changelog.dc77b39
Fix error checking.bb822c0
Add advisory links.d4395fe
Update changelog.Updates
webpack-dev-server
from 4.0.0-beta.3 to 4.10.1Release notes
Sourced from webpack-dev-server's releases.
... (truncated)
Changelog
Sourced from webpack-dev-server's changelog.
... (truncated)
Commits
eb997bb
chore(release): 4.10.14eed30e
ci: enable jest--shard
option in github-actions (#4545)97dba79
chore(deps-dev): bump eslint from 8.22.0 to 8.23.0 (#4550)a2eb40c
chore(deps-dev): bump core-js from 3.24.1 to 3.25.0 (#4548)6a430d4
fix: compatibility with old browsers (#4544)735864c
chore(deps-dev): bump marked from 4.0.18 to 4.0.19 (#4546)22443c2
chore(deps-dev): bump typescript from 4.7.4 to 4.8.2 (#4549)02e11e1
chore(deps-dev): bump@babel/core
from 7.18.10 to 7.18.13 (#4547)751214a
chore(deps-dev): bump eslint from 8.21.0 to 8.22.0 (#4541)544543a
ci: add workflow to cancel previous runs (#4542)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 commands and options
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 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)@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and languageYou can disable automated security fix PRs for this repo from the Security Alerts page.