dependabot[bot] opened a new pull request, #22231:
URL: https://github.com/apache/beam/pull/22231

   Bumps [mypy-protobuf](https://github.com/dropbox/mypy-protobuf) from 1.18 to 
2.10.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/nipunn1313/mypy-protobuf/blob/main/CHANGELOG.md";>mypy-protobuf's
 changelog</a>.</em></p>
   <blockquote>
   <h2>2.10</h2>
   <ul>
   <li>Switch from setup.py to pyproject.toml and setup.cfg per <a 
href="https://packaging.python.org/tutorials/packaging-projects/";>https://packaging.python.org/tutorials/packaging-projects/</a></li>
   <li>Remove dependency on grpcio-tools. mypy-protobuf doesn't need it to run. 
It's only needed to run mypy afterward.</li>
   <li>Avoid relative imports in <code>_grpc_pb2.pyi</code> stubs. grpc stubs 
themselves don't use relative imports, nor <code>__init__.py</code> files</li>
   <li>Use <code>&quot;&quot;&quot;</code> docstring style comments in 
generated code rather than <code>#</code> style so it shows up in IDEs.</li>
   <li>Disambiguate messages from reserved python keywords (eg 
<code>None</code>) with prefix <code>_r_</code> rather than <code>__</code> - 
since <code>__</code> is considered private.</li>
   <li>Bump tests to use pyright 1.1.169, types-protobuf 3.17.4, pytest 6.2.5, 
grpc-stubs 1.24.7, grpcio-tools 1.40.0</li>
   <li>Since upstream protobuf has dropped support with 3.18.0, 2.10 will be 
the last mypy-protobuf that supports targeting python 2.7. Updated docs for 
this.</li>
   </ul>
   <h2>2.9</h2>
   <ul>
   <li><a href="https://github.com/github/renaming";>Rename master branch to 
main</a></li>
   <li>Make <code>install_requires</code> requirements for grpcio-tools and 
types-protobuf use &gt;=</li>
   </ul>
   <h2>2.8</h2>
   <ul>
   <li>Propagate comments from .proto files to .pyi files</li>
   <li>Add protobuf type stubs to the setup requirements</li>
   <li>Fix <a 
href="https://github-redirect.dependabot.com/nipunn1313/mypy-protobuf/issues/239";>#239</a>
 Remove type: ignore used in enum by pulling <code>V</code> into a separate 
class.</li>
   <li>Use pytest 6.2.4 for internal test suites on python3</li>
   <li>Remove <code>protoc_gen_mypy.bat</code> as the entry-points method 
creates protoc-gen-mypy.exe. Add test confirming.</li>
   </ul>
   <h2>2.7</h2>
   <ul>
   <li>Fix <a 
href="https://github-redirect.dependabot.com/nipunn1313/mypy-protobuf/issues/244";>#244</a>
 - support extensions defined at module scope with proper types, matching 
extensions defined within Messages. See <a 
href="https://github.com/python/typeshed/blob/4765978f6ceeb24e10bdf93c0d4b72dfb35836d4/stubs/protobuf/google/protobuf/internal/extension_dict.pyi#L9";><code>_ExtensionDict</code></a></li>
   </ul>
   <pre lang="proto"><code>extend google.protobuf.MessageOptions {
      string test_message_option = 51234;
   }
   </code></pre>
   <pre lang="python"><code># Used to generate
   test_message_option: google.protobuf.descriptor.FieldDescriptor = ...
   <h1>Now generates</h1>
   <p>test_message_option: 
google.protobuf.internal.extension_dict._ExtensionFieldDescriptor[google.protobuf.descriptor_pb2.MessageOptions,
 typing.Text] = ...
   </code></pre></p>
   <p>Fix repeated extensions as well - to generate 
RepeatedScalarFieldContainer and RepeatedCompositeFieldContainer</p>
   <ul>
   <li>Now requires <a 
href="https://pypi.org/project/types-protobuf/";>types-protobuf</a> 3.17.3</li>
   <li>Fix <a 
href="https://github-redirect.dependabot.com/nipunn1313/mypy-protobuf/issues/238";>#238</a>
 - handling enum variants that name conflict with EnumTypeWrapper methods</li>
   <li>Improve mypy-protobuf testsuite expected-errors file to make 
insertions/deletions easier to code review</li>
   <li>Fix <a 
href="https://github-redirect.dependabot.com/nipunn1313/mypy-protobuf/issues/227";>#227</a>
 - improve support for messages/enums with python reserved keyword names</li>
   <li>Order fields within a message in original .proto file order Previously, 
they were grouped by scalar/nonscalar. Remove
   that grouping to make it a bit easier to correlate .proto files to .pyi 
files.</li>
   </ul>
   <h2>2.6</h2>
   <ul>
   <li>Bump protoc support to 3.17.3</li>
   <li>Use latest python versions in tests (3.6.14 3.7.11 3.8.11 3.9.6)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/4aee8be58e47c58405025e160ddec010c945db45";><code>4aee8be</code></a>
 Bump release to mypy_protobuf 2.10 (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/288";>#288</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/0be5aa22a5200e6c2d7db406ace406abaf62b6e1";><code>0be5aa2</code></a>
 Bump pyright, types-protobuf, pytest, grpc-stubs, grpcio-tools (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/286";>#286</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/255c60a405b6ef7a171036fab3ffbfb364d37c92";><code>255c60a</code></a>
 Disambiguate reserved keywords with &quot;<em>r</em>&quot; rather than 
&quot;__&quot; (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/287";>#287</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/9a5cb794f8033801397c44373a1fa4cf829a122a";><code>9a5cb79</code></a>
 Set test requirements to &lt;3.18.0 for final 2.7 release mypy_protobuf==2.10 
(#...</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/864bbf4accd128605895e1464477f4dc58291884";><code>864bbf4</code></a>
 Add Comment propagation as a feature in the README</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/2a5b81ace9dbc90d9924e2cdd3b9e61418c76605";><code>2a5b81a</code></a>
 Use docstring style comments instead of # comments (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/281";>#281</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/13f2ca3cb43ee7205f30943049d717841154f9f7";><code>13f2ca3</code></a>
 Avoid relative imports in grpc code (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/278";>#278</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/bd793afd459d0b907fe71de1e36025606e29881a";><code>bd793af</code></a>
 Use pyproject.toml instead of mypy.ini (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/274";>#274</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/6a34fb0ec04a13fe22a5074e995d565f5f049ac4";><code>6a34fb0</code></a>
 Validate that _pb2.py files have been generated (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/273";>#273</a>)</li>
   <li><a 
href="https://github.com/nipunn1313/mypy-protobuf/commit/ed129dccfc71679d8dfbf743b14d6283672b8b63";><code>ed129dc</code></a>
 Commit the generated .pyi files (<a 
href="https://github-redirect.dependabot.com/dropbox/mypy-protobuf/issues/272";>#272</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/dropbox/mypy-protobuf/compare/v1.18...v2.10";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mypy-protobuf&package-manager=pip&previous-version=1.18&new-version=2.10)](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)
   
   
   </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]

Reply via email to