You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pr@jena.apache.org by GitBox <gi...@apache.org> on 2020/11/11 19:06:43 UTC

[GitHub] [jena] dependabot[bot] opened a new pull request #839: Bump airline.version from 2.1.1 to 2.8.0

dependabot[bot] opened a new pull request #839:
URL: https://github.com/apache/jena/pull/839


   Bumps `airline.version` from 2.1.1 to 2.8.0.
   Updates `airline` from 2.1.1 to 2.8.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/rvesse/airline/blob/master/CHANGELOG.md">airline's changelog</a>.</em></p>
   <blockquote>
   <h2>2.8.0</h2>
   <ul>
   <li>Core Improvements
   <ul>
   <li><code>@Option</code> annotation now allows an array of values for the <code>title</code> field allowing options with arity &gt; 1 to have distinct titles shown for each value the option accepts</li>
   </ul>
   </li>
   </ul>
   <h2>2.7.2</h2>
   <ul>
   <li>Bug Fixes
   <ul>
   <li><code>@AllowedEnumValues</code> incorrectly provides help hint that values are case insensitive when they are actually case sensitive (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/100">#100</a>)</li>
   <li><code>@AllowedRawValues</code> does not handle case insensitive mode correctly (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/100">#100</a>)</li>
   <li><code>@Option</code> with <code>type = OptionType.GLOBAL</code> and <code>type = OptionType.GROUP</code> are not correctly parsed at the command level (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/101">#101</a>)</li>
   </ul>
   </li>
   </ul>
   <h2>2.7.1</h2>
   <ul>
   <li>Bug Fixes
   <ul>
   <li><code>CollectAll</code> handler collected multiple duplicates of the same error when certain restrictions were used.  Now instead duplicates are combined into a single exception (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/94">#94</a>)</li>
   <li>CLIs could allow command classes with the same declared command name in their <code>@Command</code> annotation to silently override each other.  Now instead an error will be thrown reporting the problem (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/95">#95</a>)</li>
   <li>When using group default commands and command abbreviation we can incorrectly ignore a value (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/99">#99</a>)</li>
   </ul>
   </li>
   </ul>
   <h2>2.7.0</h2>
   <ul>
   <li>Bug Fixes
   <ul>
   <li><code>EnvVarLocator</code> and <code>JvmSystemPropertyLocator</code> could resolve locations incorrectly if some placeholders were undefined</li>
   <li>Fixes some corner cases with <code>@FloatRange</code> and <code>@DoubleRange</code> underlying implementation</li>
   <li>Fix possible NPE in maven plugin (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/45">#45</a>)</li>
   </ul>
   </li>
   <li>Restriction Improvements
   <ul>
   <li>Added <code>@File</code> and <code>@Directory</code> as more explicit variants of <code>@Path</code> (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@Negative</code> and <code>@Positive</code> for numerics (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@LengthRange</code> and <code>@ExactLength</code> for strings (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@AllowedEnumValues</code> as a simpler way of specifying <code>@AllowedRawValues</code> on enum typed fields (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@StartsWith</code> and <code>@EndsWith</code> for enforcing prefixes/suffixes on strings (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   </ul>
   </li>
   <li>Build Improvements
   <ul>
   <li>Provide <code>module-info.java</code> available so modules can be used on Module Path (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/92">#92</a>) - Thanks to <a href="https://github.com/jfallows">jfallows</a></li>
   </ul>
   </li>
   </ul>
   <h2>2.6.0</h2>
   <ul>
   <li>Core Improvements
   <ul>
   <li>Allow creating a <code>Cli</code> instance with an explicit <code>ParserMetadata</code> for situations where parser configuration cannot be specified via annotation e.g. using dynamically determined paths for user aliases</li>
   <li>Abstract direct usage of <code>System.out</code> via <code>Channels</code> factory interface to allow the library to be used in environments that are not consoles (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/78">#78</a>) - Thanks to <a href="http://github.com/sdorra/">sdorra</a></li>
   </ul>
   </li>
   <li>Parser Improvements
   <ul>
   <li>Allow <code>./</code> as a user alias search location resolved as the current working directory</li>
   <li>Allow extending how user alias search locations are resolved to support custom behaviours via new <code>ResourceLocator</code> interface</li>
   <li>Add ability to specify a force prefix for aliases which allows alias definitions to override built-ins while still being able to invoke those built-ins (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/72">#72</a>)</li>
   <li>Add ability to specify default values for positional parameters in alias definitions (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/69">#69</a>)</li>
   </ul>
   </li>
   <li>Help Improvements
   <ul>
   <li>Remove deprecated methods from <code>CommandUsageGenerator</code> interface and add new <code>usage()</code> overload for more easily generating usage for single commands</li>
   </ul>
   </li>
   <li>Annotation Improvements
   <ul>
   <li>Allow specifying global restriction annotations directly on classes used with <code>SingleCommand</code></li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/rvesse/airline/commit/b734b1b0d4b7def4f6455f4644bbdd3b58809840"><code>b734b1b</code></a> [maven-release-plugin] prepare release 2.8.0</li>
   <li><a href="https://github.com/rvesse/airline/commit/13aac683babbe619da7d7cc675e1e1be7fd83e76"><code>13aac68</code></a> Fix docs include bug</li>
   <li><a href="https://github.com/rvesse/airline/commit/412cca9941308550a97645de7eb3f431f3a39181"><code>412cca9</code></a> Note option title changes (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/39">#39</a>)</li>
   <li><a href="https://github.com/rvesse/airline/commit/179747ebb4dd06c98d463a95c6b374032cc5a6c8"><code>179747e</code></a> Make OptionMetadata.getTitle() deprecated (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/39">#39</a>)</li>
   <li><a href="https://github.com/rvesse/airline/commit/228e28a4774881f52137e0d9322115da3621cc81"><code>228e28a</code></a> Allow specifying multiple titles for options (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/39">#39</a>)</li>
   <li><a href="https://github.com/rvesse/airline/commit/f6e88842002e22709d3749cf5a861c92623daf48"><code>f6e8884</code></a> Note 2.7.2 is now released</li>
   <li><a href="https://github.com/rvesse/airline/commit/f7b528c5e2d7dc822250e74717f5e7a02c5d946f"><code>f7b528c</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rvesse/airline/commit/f35c14d79d19ab7cd93ef310e1d7961d49ad2600"><code>f35c14d</code></a> [maven-release-plugin] prepare release 2.7.2</li>
   <li><a href="https://github.com/rvesse/airline/commit/9512520a7f4d365a577367dd19a42ea473f0e3d8"><code>9512520</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rvesse/airline/commit/38df792ec91039480e71afd0faf08916bb7dd60a"><code>38df792</code></a> [maven-release-plugin] prepare release 2.7.2</li>
   <li>Additional commits viewable in <a href="https://github.com/rvesse/airline/compare/2.1.1...2.8.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `airline-io` from 2.1.1 to 2.8.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/rvesse/airline/blob/master/CHANGELOG.md">airline-io's changelog</a>.</em></p>
   <blockquote>
   <h2>2.8.0</h2>
   <ul>
   <li>Core Improvements
   <ul>
   <li><code>@Option</code> annotation now allows an array of values for the <code>title</code> field allowing options with arity &gt; 1 to have distinct titles shown for each value the option accepts</li>
   </ul>
   </li>
   </ul>
   <h2>2.7.2</h2>
   <ul>
   <li>Bug Fixes
   <ul>
   <li><code>@AllowedEnumValues</code> incorrectly provides help hint that values are case insensitive when they are actually case sensitive (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/100">#100</a>)</li>
   <li><code>@AllowedRawValues</code> does not handle case insensitive mode correctly (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/100">#100</a>)</li>
   <li><code>@Option</code> with <code>type = OptionType.GLOBAL</code> and <code>type = OptionType.GROUP</code> are not correctly parsed at the command level (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/101">#101</a>)</li>
   </ul>
   </li>
   </ul>
   <h2>2.7.1</h2>
   <ul>
   <li>Bug Fixes
   <ul>
   <li><code>CollectAll</code> handler collected multiple duplicates of the same error when certain restrictions were used.  Now instead duplicates are combined into a single exception (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/94">#94</a>)</li>
   <li>CLIs could allow command classes with the same declared command name in their <code>@Command</code> annotation to silently override each other.  Now instead an error will be thrown reporting the problem (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/95">#95</a>)</li>
   <li>When using group default commands and command abbreviation we can incorrectly ignore a value (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/99">#99</a>)</li>
   </ul>
   </li>
   </ul>
   <h2>2.7.0</h2>
   <ul>
   <li>Bug Fixes
   <ul>
   <li><code>EnvVarLocator</code> and <code>JvmSystemPropertyLocator</code> could resolve locations incorrectly if some placeholders were undefined</li>
   <li>Fixes some corner cases with <code>@FloatRange</code> and <code>@DoubleRange</code> underlying implementation</li>
   <li>Fix possible NPE in maven plugin (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/45">#45</a>)</li>
   </ul>
   </li>
   <li>Restriction Improvements
   <ul>
   <li>Added <code>@File</code> and <code>@Directory</code> as more explicit variants of <code>@Path</code> (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@Negative</code> and <code>@Positive</code> for numerics (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@LengthRange</code> and <code>@ExactLength</code> for strings (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@AllowedEnumValues</code> as a simpler way of specifying <code>@AllowedRawValues</code> on enum typed fields (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   <li>Added <code>@StartsWith</code> and <code>@EndsWith</code> for enforcing prefixes/suffixes on strings (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/73">#73</a>)</li>
   </ul>
   </li>
   <li>Build Improvements
   <ul>
   <li>Provide <code>module-info.java</code> available so modules can be used on Module Path (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/92">#92</a>) - Thanks to <a href="https://github.com/jfallows">jfallows</a></li>
   </ul>
   </li>
   </ul>
   <h2>2.6.0</h2>
   <ul>
   <li>Core Improvements
   <ul>
   <li>Allow creating a <code>Cli</code> instance with an explicit <code>ParserMetadata</code> for situations where parser configuration cannot be specified via annotation e.g. using dynamically determined paths for user aliases</li>
   <li>Abstract direct usage of <code>System.out</code> via <code>Channels</code> factory interface to allow the library to be used in environments that are not consoles (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/78">#78</a>) - Thanks to <a href="http://github.com/sdorra/">sdorra</a></li>
   </ul>
   </li>
   <li>Parser Improvements
   <ul>
   <li>Allow <code>./</code> as a user alias search location resolved as the current working directory</li>
   <li>Allow extending how user alias search locations are resolved to support custom behaviours via new <code>ResourceLocator</code> interface</li>
   <li>Add ability to specify a force prefix for aliases which allows alias definitions to override built-ins while still being able to invoke those built-ins (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/72">#72</a>)</li>
   <li>Add ability to specify default values for positional parameters in alias definitions (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/69">#69</a>)</li>
   </ul>
   </li>
   <li>Help Improvements
   <ul>
   <li>Remove deprecated methods from <code>CommandUsageGenerator</code> interface and add new <code>usage()</code> overload for more easily generating usage for single commands</li>
   </ul>
   </li>
   <li>Annotation Improvements
   <ul>
   <li>Allow specifying global restriction annotations directly on classes used with <code>SingleCommand</code></li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/rvesse/airline/commit/b734b1b0d4b7def4f6455f4644bbdd3b58809840"><code>b734b1b</code></a> [maven-release-plugin] prepare release 2.8.0</li>
   <li><a href="https://github.com/rvesse/airline/commit/13aac683babbe619da7d7cc675e1e1be7fd83e76"><code>13aac68</code></a> Fix docs include bug</li>
   <li><a href="https://github.com/rvesse/airline/commit/412cca9941308550a97645de7eb3f431f3a39181"><code>412cca9</code></a> Note option title changes (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/39">#39</a>)</li>
   <li><a href="https://github.com/rvesse/airline/commit/179747ebb4dd06c98d463a95c6b374032cc5a6c8"><code>179747e</code></a> Make OptionMetadata.getTitle() deprecated (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/39">#39</a>)</li>
   <li><a href="https://github.com/rvesse/airline/commit/228e28a4774881f52137e0d9322115da3621cc81"><code>228e28a</code></a> Allow specifying multiple titles for options (<a href="https://github-redirect.dependabot.com/rvesse/airline/issues/39">#39</a>)</li>
   <li><a href="https://github.com/rvesse/airline/commit/f6e88842002e22709d3749cf5a861c92623daf48"><code>f6e8884</code></a> Note 2.7.2 is now released</li>
   <li><a href="https://github.com/rvesse/airline/commit/f7b528c5e2d7dc822250e74717f5e7a02c5d946f"><code>f7b528c</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rvesse/airline/commit/f35c14d79d19ab7cd93ef310e1d7961d49ad2600"><code>f35c14d</code></a> [maven-release-plugin] prepare release 2.7.2</li>
   <li><a href="https://github.com/rvesse/airline/commit/9512520a7f4d365a577367dd19a42ea473f0e3d8"><code>9512520</code></a> [maven-release-plugin] prepare for next development iteration</li>
   <li><a href="https://github.com/rvesse/airline/commit/38df792ec91039480e71afd0faf08916bb7dd60a"><code>38df792</code></a> [maven-release-plugin] prepare release 2.7.2</li>
   <li>Additional commits viewable in <a href="https://github.com/rvesse/airline/compare/2.1.1...2.8.0">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)
   
   
   </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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org
For additional commands, e-mail: pr-help@jena.apache.org


[GitHub] [jena] afs merged pull request #839: Bump airline.version from 2.1.1 to 2.8.0

Posted by GitBox <gi...@apache.org>.
afs merged pull request #839:
URL: https://github.com/apache/jena/pull/839


   


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

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@jena.apache.org
For additional commands, e-mail: pr-help@jena.apache.org