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

   Bumps 
[io.github.ascopes:protobuf-maven-plugin](https://github.com/ascopes/protobuf-maven-plugin)
 from 4.1.3 to 5.0.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/ascopes/protobuf-maven-plugin/releases";>io.github.ascopes:protobuf-maven-plugin's
 releases</a>.</em></p>
   <blockquote>
   <h2>v5.0.0</h2>
   <p>New major version that removes some old tech debt introduced for 
backwards API compatibility with minor versions on v4.x and older. This allows 
extending this plugin with new features moving forwards by removing some 
limitations around the old way of configuring a couple of aspects.</p>
   <p>The changes are fairly minor, but migration details have been added 
below.</p>
   <blockquote>
   <p>[!TIP]
   Users with concerns about making changes across many projects due to being 
pinned to an older version of this plugin can first upgrade their parent 
projects to point at v4.1.3 of this plugin while they perform migration steps 
incrementally.</p>
   <p>If there are any concerns or queries, please add a comment to
   <a 
href="https://github.com/ascopes/protobuf-maven-plugin/discussions/937";>the 
discussion</a>.</p>
   </blockquote>
   <h2>Protoc plugin declarations</h2>
   <p>We have removed deprecated legacy protoc plugin parameters from <a 
href="https://redirect.github.com/ascopes/protobuf-maven-plugin/issues/877";>GH-877</a>
 -- users must use the <code>plugins</code> parameter instead now.
   - <code>binaryMavenPlugins</code> is removed, use <code>plugins</code> with 
<code>kind=&quot;binary-maven&quot;</code> instead.
   - <code>binaryPathPlugins</code> is removed, use <code>plugins</code> with 
<code>kind=&quot;path&quot;</code> instead.
   - <code>binaryUrlPlugins</code> is removed, use <code>plugins</code> with 
<code>kind=&quot;url&quot;</code> instead.
   - <code>jvmMavenPlugins</code> is removed, use <code>plugins</code> with 
kind <code>jvm-maven</code> instead.</p>
   <p>See <a 
href="https://ascopes.github.io/protobuf-maven-plugin/using-protoc-plugins.html";>https://ascopes.github.io/protobuf-maven-plugin/using-protoc-plugins.html</a>
 for full usage details and examples, but effectively the change that users 
will want to make is the following:</p>
   <p>Old usage:</p>
   <pre lang="xml"><code>&lt;configuration&gt;
     &lt;binaryMavenPlugins&gt;
       &lt;binaryMavenPlugin&gt;...&lt;/binaryMavenPlugin&gt;
       &lt;binaryMavenPlugin&gt;...&lt;/binaryMavenPlugin&gt;
     &lt;/binaryMavenPlugins&gt;
   <p>&lt;jvmMavenPlugins&gt;
   &lt;jvmMavenPlugin&gt;...&lt;/jvmMavenPlugin&gt;
   &lt;/jvmMavenPlugins&gt;
   &lt;/configuration&gt;
   </code></pre></p>
   <p>New usage:</p>
   <pre lang="xml"><code>&lt;configuration&gt;
     &lt;plugins&gt;
       &lt;plugin kind=&quot;binary-maven&quot;&gt;...&lt;/plugin&gt;
       &lt;plugin kind=&quot;binary-maven&quot;&gt;...&lt;/plugin&gt;
       &lt;plugin kind=&quot;jvm-maven&quot;&gt;...&lt;/plugin&gt;
       &lt;plugin kind=&quot;path&quot;&gt;...&lt;/plugin&gt;
       &lt;plugin kind=&quot;url&quot;&gt;...&lt;/plugin&gt;
       ...
     &lt;/plugins&gt;
   &lt;/configuration&gt;
   </code></pre>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/28ce929f8d0e1485ee69ab38bec56d22d89a261d";><code>28ce929</code></a>
 [maven-release-plugin] prepare release v5.0.0</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/f05d73a5fc96f1e8a54e94fea98ab8e32a6e3b1f";><code>f05d73a</code></a>
 Remove note relevant to v4 from README.</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/62277d20efe825c790ba1598dd88330a3077f101";><code>62277d2</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ascopes/protobuf-maven-plugin/issues/908";>#908</a>
 for v5.0 of the plugin</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/f56218a95bd01d7e9306b652facb4b39a76090b7";><code>f56218a</code></a>
 Update project versions to v5.0.0</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/36b165de4984621aab23512b6de03ec9f48eab1b";><code>36b165d</code></a>
 Remove deprecation message added from d497214</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/33c7d4acea6e75dc312f6e407dd3fae6a8d43785";><code>33c7d4a</code></a>
 Remove aliases used for backwards-compatibility</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/5137abf7560cdbd925bd68318580116dbdd1b6b9";><code>5137abf</code></a>
 Remove 'sourcePaths' alias for 'sourceDirectories' parameter</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/9ca690e6b711378b22651de1d78f3ce8c7a962d4";><code>9ca690e</code></a>
 Remove deprecated legacy protoc plugin parameters from <a 
href="https://redirect.github.com/ascopes/protobuf-maven-plugin/issues/877";>GH-877</a></li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/6daa7911c941c7200d402af2e94ad3151bd0f7f5";><code>6daa791</code></a>
 Merge pull request <a 
href="https://redirect.github.com/ascopes/protobuf-maven-plugin/issues/936";>#936</a>
 from ascopes/dependabot/maven/protobuf-maven-plugin/s...</li>
   <li><a 
href="https://github.com/ascopes/protobuf-maven-plugin/commit/8f9a15c4801851a3985e8bc1b5eeac8255db0ceb";><code>8f9a15c</code></a>
 Bump io.projectreactor:reactor-core</li>
   <li>Additional commits viewable in <a 
href="https://github.com/ascopes/protobuf-maven-plugin/compare/v4.1.3...v5.0.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.github.ascopes:protobuf-maven-plugin&package-manager=maven&previous-version=4.1.3&new-version=5.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot 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>


-- 
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