dependabot[bot] opened a new pull request, #51: URL: https://github.com/apache/incubator-mxnet-ci/pull/51
Bumps [pydantic](https://github.com/samuelcolvin/pydantic) from 0.13 to 1.6.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/samuelcolvin/pydantic/releases">pydantic's releases</a>.</em></p> <blockquote> <h2>v1.6.2 (2021-05-11)</h2> <p><strong>Security fix:</strong> Fix <code>date</code> and <code>datetime</code> parsing so passing either <code>'infinity'</code> or <code>float('inf')</code> (or their negative values) does not cause an infinite loop, see security advisory <a href="https://github.com/samuelcolvin/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh">CVE-2021-29510</a>.</p> <h2>v1.6.1 (2020-07-15)</h2> <p>See <a href="https://pydantic-docs.helpmanual.io/changelog/">Changelog</a>.</p> <p>Thank you to pydantic's sponsors: <a href="https://github.com/matin"><code>@matin</code></a>, <a href="https://github.com/tiangolo"><code>@tiangolo</code></a>, <a href="https://github.com/chdsbd"><code>@chdsbd</code></a>, <a href="https://github.com/jorgecarleitao"><code>@jorgecarleitao</code></a>, and 1 anonymous sponsor for their kind support.</p> <p>changes:</p> <ul> <li>fix validation and parsing of nested models with <code>default_factory</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1710">#1710</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> </ul> <h2>v1.6 (2020-07-11)</h2> <p>See <a href="https://pydantic-docs.helpmanual.io/changelog/">Changelog</a>.</p> <p>Thank you to pydantic's sponsors: <a href="https://github.com/matin"><code>@matin</code></a>, <a href="https://github.com/tiangolo"><code>@tiangolo</code></a>, <a href="https://github.com/chdsbd"><code>@chdsbd</code></a>, <a href="https://github.com/jorgecarleitao"><code>@jorgecarleitao</code></a>, and 1 anonymous sponsor for their kind support.</p> <p>changes:</p> <ul> <li>Modify validators for <code>conlist</code> and <code>conset</code> to not have <code>always=True</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1682">#1682</a> by <a href="https://github.com/samuelcolvin"><code>@samuelcolvin</code></a></li> <li>add port check to <code>AnyUrl</code> (can't exceed 65536) ports are 16 insigned bits: <code>0 <= port <= 2**16-1</code> src: <a href="https://tools.ietf.org/html/rfc793#section-3.1">rfc793 header format</a>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1654">#1654</a> by <a href="https://github.com/flapili"><code>@flapili</code></a></li> <li>Document default <code>regex</code> anchoring semantics, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1648">#1648</a> by <a href="https://github.com/yurikhan"><code>@yurikhan</code></a></li> <li>Use <code>chain.from_iterable</code> in class_validators.py. This is a faster and more idiomatic way of using <code>itertools.chain</code>. Instead of computing all the items in the iterable and storing them in memory, they are computed one-by-one and never stored as a huge list. This can save on both runtime and memory space, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1642">#1642</a> by <a href="https://github.com/cool-RR"><code>@cool-RR</code></a></li> <li>Add <code>conset()</code>, analogous to <code>conlist()</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1623">#1623</a> by <a href="https://github.com/patrickkwang"><code>@patrickkwang</code></a></li> <li>make <em>pydantic</em> errors (un)pickable, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1616">#1616</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Allow custom encoding for <code>dotenv</code> files, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1615">#1615</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Ensure <code>SchemaExtraCallable</code> is always defined to get type hints on BaseConfig, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1614">#1614</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Update datetime parser to support negative timestamps, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1600">#1600</a> by <a href="https://github.com/mlbiche"><code>@mlbiche</code></a></li> <li>Update mypy, remove <code>AnyType</code> alias for <code>Type[Any]</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1598">#1598</a> by <a href="https://github.com/samuelcolvin"><code>@samuelcolvin</code></a></li> <li>Adjust handling of root validators so that errors are aggregated from <em>all</em> failing root validators, instead of reporting on only the first root validator to fail, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1586">#1586</a> by <a href="https://github.com/beezee"><code>@beezee</code></a></li> <li>Make <code>__modify_schema__</code> on Enums apply to the enum schema rather than fields that use the enum, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1581">#1581</a> by <a href="https://github.com/therefromhere"><code>@therefromhere</code></a></li> <li>Fix behavior of <code>__all__</code> key when used in conjunction with index keys in advanced include/exclude of fields that are sequences, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1579">#1579</a> by <a href="https://github.com/xspirus"><code>@xspirus</code></a></li> <li>Subclass validators do not run when referencing a <code>List</code> field defined in a parent class when <code>each_item=True</code>. Added an example to the docs illustrating this, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1566">#1566</a> by <a href="https://github.com/samueldeklund"><code>@samueldeklund</code></a></li> <li>change <code>schema.field_class_to_schema</code> to support <code>frozenset</code> in schema, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1557">#1557</a> by <a href="https://github.com/wangpeibao"><code>@wangpeibao</code></a></li> <li>Call <code>__modify_schema__</code> only for the field schema, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1552">#1552</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Move the assignment of <code>field.validate_always</code> in <code>fields.py</code> so the <code>always</code> parameter of validators work on inheritance, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1545">#1545</a> by <a href="https://github.com/dcHHH"><code>@dcHHH</code></a></li> <li>Added support for UUID instantiation through 16 byte strings such as <code>b'\x12\x34\x56\x78' * 4</code>. This was done to support <code>BINARY(16)</code> columns in sqlalchemy, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1541">#1541</a> by <a href="https://github.com/shawnwall"><code>@shawnwall</code></a></li> <li>Add a test assertion that <code>default_factory</code> can return a singleton, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1523">#1523</a> by <a href="https://github.com/therefromhere"><code>@therefromhere</code></a></li> <li>Add <code>NameEmail.__eq__</code> so duplicate <code>NameEmail</code> instances are evaluated as equal, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1514">#1514</a> by <a href="https://github.com/stephen-bunn"><code>@stephen-bunn</code></a></li> <li>Add datamodel-code-generator link in pydantic document site, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1500">#1500</a> by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a></li> <li>Added a "Discussion of Pydantic" section to the documentation, with a link to "Pydantic Introduction" video by Alexander Hultnér, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1499">#1499</a> by <a href="https://github.com/hultner"><code>@hultner</code></a></li> <li>Avoid some side effects of <code>default_factory</code> by calling it only once if possible and by not setting a default value in the schema, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1491">#1491</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Added docs about dumping dataclasses to JSON, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1487">#1487</a> by <a href="https://github.com/mikegrima"><code>@mikegrima</code></a></li> <li>Make <code>BaseModel.__signature__</code> class-only, so getting <code>__signature__</code> from model instance will raise <code>AttributeError</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1466">#1466</a> by <a href="https://github.com/MrMrRobat"><code>@MrMrRobat</code></a></li> <li>include <code>'format': 'password'</code> in the schema for secret types, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1424">#1424</a> by <a href="https://github.com/atheuz"><code>@atheuz</code></a></li> <li>Modify schema constraints on <code>ConstrainedFloat</code> so that <code>exclusiveMinimum</code> and minimum are not included in the schema if they are equal to <code>-math.inf</code> and <code>exclusiveMaximum</code> and <code>maximum</code> are not included if they are equal to <code>math.inf</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1417">#1417</a> by <a href="https://github.com/vdwees"><code>@vdwees</code></a></li> <li>Squash internal <code>__root__</code> dicts in <code>.dict()</code> (and, by extension, in <code>.json()</code>), <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1414">#1414</a> by <a href="https://github.com/patrickkwang"><code>@patrickkwang</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/samuelcolvin/pydantic/blob/master/HISTORY.md">pydantic's changelog</a>.</em></p> <blockquote> <h2>v1.6.2 (2021-05-11)</h2> <ul> <li><strong>Security fix:</strong> Fix <code>date</code> and <code>datetime</code> parsing so passing either <code>'infinity'</code> or <code>float('inf')</code> (or their negative values) does not cause an infinite loop, See security advisory <a href="https://github.com/samuelcolvin/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh">CVE-2021-29510</a></li> </ul> <h2>v1.6.1 (2020-07-15)</h2> <ul> <li>fix validation and parsing of nested models with <code>default_factory</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1710">#1710</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> </ul> <h2>v1.6 (2020-07-11)</h2> <p>Thank you to pydantic's sponsors: <a href="https://github.com/matin"><code>@matin</code></a>, <a href="https://github.com/tiangolo"><code>@tiangolo</code></a>, <a href="https://github.com/chdsbd"><code>@chdsbd</code></a>, <a href="https://github.com/jorgecarleitao"><code>@jorgecarleitao</code></a>, and 1 anonymous sponsor for their kind support.</p> <ul> <li>Modify validators for <code>conlist</code> and <code>conset</code> to not have <code>always=True</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1682">#1682</a> by <a href="https://github.com/samuelcolvin"><code>@samuelcolvin</code></a></li> <li>add port check to <code>AnyUrl</code> (can't exceed 65536) ports are 16 insigned bits: <code>0 <= port <= 2**16-1</code> src: <a href="https://tools.ietf.org/html/rfc793#section-3.1">rfc793 header format</a>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1654">#1654</a> by <a href="https://github.com/flapili"><code>@flapili</code></a></li> <li>Document default <code>regex</code> anchoring semantics, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1648">#1648</a> by <a href="https://github.com/yurikhan"><code>@yurikhan</code></a></li> <li>Use <code>chain.from_iterable</code> in class_validators.py. This is a faster and more idiomatic way of using <code>itertools.chain</code>. Instead of computing all the items in the iterable and storing them in memory, they are computed one-by-one and never stored as a huge list. This can save on both runtime and memory space, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1642">#1642</a> by <a href="https://github.com/cool-RR"><code>@cool-RR</code></a></li> <li>Add <code>conset()</code>, analogous to <code>conlist()</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1623">#1623</a> by <a href="https://github.com/patrickkwang"><code>@patrickkwang</code></a></li> <li>make <em>pydantic</em> errors (un)pickable, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1616">#1616</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Allow custom encoding for <code>dotenv</code> files, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1615">#1615</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Ensure <code>SchemaExtraCallable</code> is always defined to get type hints on BaseConfig, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1614">#1614</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Update datetime parser to support negative timestamps, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1600">#1600</a> by <a href="https://github.com/mlbiche"><code>@mlbiche</code></a></li> <li>Update mypy, remove <code>AnyType</code> alias for <code>Type[Any]</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1598">#1598</a> by <a href="https://github.com/samuelcolvin"><code>@samuelcolvin</code></a></li> <li>Adjust handling of root validators so that errors are aggregated from <em>all</em> failing root validators, instead of reporting on only the first root validator to fail, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1586">#1586</a> by <a href="https://github.com/beezee"><code>@beezee</code></a></li> <li>Make <code>__modify_schema__</code> on Enums apply to the enum schema rather than fields that use the enum, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1581">#1581</a> by <a href="https://github.com/therefromhere"><code>@therefromhere</code></a></li> <li>Fix behavior of <code>__all__</code> key when used in conjunction with index keys in advanced include/exclude of fields that are sequences, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1579">#1579</a> by <a href="https://github.com/xspirus"><code>@xspirus</code></a></li> <li>Subclass validators do not run when referencing a <code>List</code> field defined in a parent class when <code>each_item=True</code>. Added an example to the docs illustrating this, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1566">#1566</a> by <a href="https://github.com/samueldeklund"><code>@samueldeklund</code></a></li> <li>change <code>schema.field_class_to_schema</code> to support <code>frozenset</code> in schema, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1557">#1557</a> by <a href="https://github.com/wangpeibao"><code>@wangpeibao</code></a></li> <li>Call <code>__modify_schema__</code> only for the field schema, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1552">#1552</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Move the assignment of <code>field.validate_always</code> in <code>fields.py</code> so the <code>always</code> parameter of validators work on inheritance, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1545">#1545</a> by <a href="https://github.com/dcHHH"><code>@dcHHH</code></a></li> <li>Added support for UUID instantiation through 16 byte strings such as <code>b'\x12\x34\x56\x78' * 4</code>. This was done to support <code>BINARY(16)</code> columns in sqlalchemy, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1541">#1541</a> by <a href="https://github.com/shawnwall"><code>@shawnwall</code></a></li> <li>Add a test assertion that <code>default_factory</code> can return a singleton, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1523">#1523</a> by <a href="https://github.com/therefromhere"><code>@therefromhere</code></a></li> <li>Add <code>NameEmail.__eq__</code> so duplicate <code>NameEmail</code> instances are evaluated as equal, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1514">#1514</a> by <a href="https://github.com/stephen-bunn"><code>@stephen-bunn</code></a></li> <li>Add datamodel-code-generator link in pydantic document site, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1500">#1500</a> by <a href="https://github.com/koxudaxi"><code>@koxudaxi</code></a></li> <li>Added a "Discussion of Pydantic" section to the documentation, with a link to "Pydantic Introduction" video by Alexander Hultnér, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1499">#1499</a> by <a href="https://github.com/hultner"><code>@hultner</code></a></li> <li>Avoid some side effects of <code>default_factory</code> by calling it only once if possible and by not setting a default value in the schema, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1491">#1491</a> by <a href="https://github.com/PrettyWood"><code>@PrettyWood</code></a></li> <li>Added docs about dumping dataclasses to JSON, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1487">#1487</a> by <a href="https://github.com/mikegrima"><code>@mikegrima</code></a></li> <li>Make <code>BaseModel.__signature__</code> class-only, so getting <code>__signature__</code> from model instance will raise <code>AttributeError</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1466">#1466</a> by <a href="https://github.com/Bobronium"><code>@Bobronium</code></a></li> <li>include <code>'format': 'password'</code> in the schema for secret types, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1424">#1424</a> by <a href="https://github.com/atheuz"><code>@atheuz</code></a></li> <li>Modify schema constraints on <code>ConstrainedFloat</code> so that <code>exclusiveMinimum</code> and minimum are not included in the schema if they are equal to <code>-math.inf</code> and <code>exclusiveMaximum</code> and <code>maximum</code> are not included if they are equal to <code>math.inf</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1417">#1417</a> by <a href="https://github.com/vdwees"><code>@vdwees</code></a></li> <li>Squash internal <code>__root__</code> dicts in <code>.dict()</code> (and, by extension, in <code>.json()</code>), <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1414">#1414</a> by <a href="https://github.com/patrickkwang"><code>@patrickkwang</code></a></li> <li>Move <code>const</code> validator to post-validators so it validates the parsed value, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1410">#1410</a> by <a href="https://github.com/selimb"><code>@selimb</code></a></li> <li>Fix model validation to handle nested literals, e.g. <code>Literal['foo', Literal['bar']]</code>, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1364">#1364</a> by <a href="https://github.com/DBCerigo"><code>@DBCerigo</code></a></li> <li>Remove <code>user_required = True</code> from <code>RedisDsn</code>, neither user nor password are required, <a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1275">#1275</a> by <a href="https://github.com/samuelcolvin"><code>@samuelcolvin</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/samuelcolvin/pydantic/commit/acf778345d516a78d93c08459ab4cd4c6709a6be"><code>acf7783</code></a> tweak history</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/829528c70ae1b3add5c53c8204e87bf960f601d6"><code>829528c</code></a> comment out broken tests</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/cf9a417d735cdae541704bff0376dfef0d5f06cb"><code>cf9a417</code></a> hack tests into passing</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/b37a92258b693f78c20dfc3bf4b18ff6b68cb81a"><code>b37a922</code></a> fix formatting</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/ac360c5d6bde201f56a656f0e2cdf32145636ef7"><code>ac360c5</code></a> prepare for release</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/bdde15b7b947c94ca00fd6eb92da8db390a13520"><code>bdde15b</code></a> Merge pull request from GHSA-5jqp-qgf6-3pvh</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/d2b050176eec04c187d0835be4039ef9509d56be"><code>d2b0501</code></a> uprev</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/e2fcab52b9075826c4a22cc5e8b1502b95d043b8"><code>e2fcab5</code></a> fix: validate and parse nested models properly with <code>default_factory</code> (<a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1712">#1712</a>)</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/ba56a6746bbaeb6ba1201f53d9a126a166973499"><code>ba56a67</code></a> Bump pytest-mock from 3.1.1 to 3.2.0 (<a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1719">#1719</a>)</li> <li><a href="https://github.com/samuelcolvin/pydantic/commit/f1f944fbc1609450cc7638cdfc323e37298c01c5"><code>f1f944f</code></a> Update datamode_code_generator:typo in pip install (<a href="https://github-redirect.dependabot.com/samuelcolvin/pydantic/issues/1713">#1713</a>)</li> <li>Additional commits viewable in <a href="https://github.com/samuelcolvin/pydantic/compare/v0.13...v1.6.2">compare view</a></li> </ul> </details> <br /> [](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 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/apache/incubator-mxnet-ci/network/alerts). </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
