You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2021/10/12 02:14:47 UTC

[GitHub] [iotdb] dependabot[bot] opened a new pull request #4124: Bump jjwt-api from 0.10.7 to 0.11.2

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


   Bumps [jjwt-api](https://github.com/jwtk/jjwt) from 0.10.7 to 0.11.2.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/jwtk/jjwt/blob/master/CHANGELOG.md">jjwt-api's changelog</a>.</em></p>
   <blockquote>
   <h3>0.11.2</h3>
   <p>This patch release:</p>
   <ul>
   <li>Allows empty JWS bodies to support <a href="https://tools.ietf.org/html/rfc8555">RFC 8555</a> and similar initiatives. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/pull/540">Pull Request 540</a></li>
   <li>Ensures OSGi environments can access JJWT implementation bundles (<code>jjwt-jackson</code>, <code>jjwt-gson</code>, etc) as fragments to <code>jjwt-api</code> bundle. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/pull/580">Pull Request 580</a></li>
   <li>Rejects <code>allowedClockSkewSeconds</code> values that would cause numeric overflow. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/583">Issue 583</a></li>
   <li>Upgrades Jackson dependency to version <code>2.9.10.4</code> to address all known Jackson CVE vulnerabilities. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/585">Issue 585</a></li>
   <li>Updates <code>SecretKey</code> algorithm name validation to allow PKCS12 KeyStore OIDs in addition to JCA Names. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/588">Issue 588</a></li>
   <li>Enabled CI builds on JDK 14. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/pull/590">Pull Request 590</a></li>
   <li>Adds missing parameters type to <code>Maps.add()</code>, which removes an unchecked type warning. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/591">Issue 591</a></li>
   <li>Ensures <code>GsonDeserializer</code> always uses <code>UTF-8</code> for encoding bytes to Strings. <a href="https://github-redirect.dependabot.com/jwtk/jjwt/pull/592">Pull Request 592</a></li>
   </ul>
   <p>All issues and PRs are listed in the Github <a href="https://github.com/jwtk/jjwt/milestone/23?closed=1">JJWT 0.11.2 milestone</a>.</p>
   <h3>0.11.1</h3>
   <p>This patch release:</p>
   <ul>
   <li>Upgrades the <code>jjwt-jackson</code> module's Jackson dependency to <code>2.9.10.3</code>.</li>
   <li>Fixes an issue when using Java 9+ <code>Map.of</code> with <code>JacksonDeserializer</code> that resulted in an <code>NullPointerException</code>.</li>
   <li>Fixes an issue that prevented the <code>jjwt-gson</code> .jar's seralizer/deserializer implementation from being detected automatically.</li>
   <li>Ensures service implementations are now loaded from the context class loader, Services.class.classLoader, and the system classloader, the first classloader with a service wins, and the others are ignored. This mimics how <code>Classes.forName()</code> works, and how JJWT attempted to auto-discover various implementations in previous versions.</li>
   <li>Fixes a minor error in the <code>Claims#getIssuedAt</code> JavaDoc.</li>
   </ul>
   <h3>0.11.0</h3>
   <p>This minor release:</p>
   <ul>
   <li>
   <p>Adds <a href="https://github.com/google/gson">Google's Gson</a> as a natively supported JSON parser. Installation instructions
   have been updated and new <a href="https://github.com/jwtk/jjwt#json-gson">JJWT Gson usage guidelines</a> have been added.</p>
   </li>
   <li>
   <p>Updates the Jackson dependency version to <a href="https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.9#patches">2.9.10</a>
   to address three security vulnerabilities in Jackson.</p>
   </li>
   <li>
   <p>A new <code>JwtParserBuilder</code> interface has been added and is the recommended way of creating an immutable and thread-safe JwtParser instance.  Mutable methods in <code>JwtParser</code> will be removed before v1.0.
   Migration to the new signatures is straightforward, for example:</p>
   <p>Previous Version:</p>
   <pre lang="java"><code> Jwts.parser()
        .requireAudience(&quot;string&quot;)
        .parse(jwtString)
   </code></pre>
   <p>Current Version:</p>
   <pre lang="java"><code>Jwts.parserBuilder()
       .requireAudience(&quot;string&quot;)
       .build()
       .parse(jwtString)
   </code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/jwtk/jjwt/commit/274749373f29108e777790351df4a0d45f63e64d"><code>2747493</code></a> [maven-release-plugin] prepare release 0.11.2</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/0596bea16a3861cbc22793a431378b066a3ccb7c"><code>0596bea</code></a> Updating readme dependency references to reflect the 0.11.2 release</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/5c8064bbd17116b7ded4322b1965c4b3da328fb8"><code>5c8064b</code></a> Updated changelog to link to the 0.11.2 milestone</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/26527bd43c1f09d5da58d730aa46575b45110606"><code>26527bd</code></a> Updated the pom snapshot versions to prepare for the upcoming 0.11.2 release</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/2f897cbb4d16301bc88549c10232df1347313204"><code>2f897cb</code></a> Updated the changelog for the upcoming 0.11.2 release</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/72973f9b9ba72438d97834db2bd56e36d3c48592"><code>72973f9</code></a> Argument validation for allowedClockSkewSeconds (<a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/601">#601</a>)</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/2b00ed1819ef92da8a02dec9090404d624c8fbfc"><code>2b00ed1</code></a> Add DefaultJwtParser functionality to parse JWSs with empty body. (<a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/540">#540</a>)</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/82b870e283799be75a957bafaec91b61fbc64205"><code>82b870e</code></a> Add support for jdk14 (<a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/590">#590</a>)</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/d8c313cfa641af351008a4ff80ee6f3fa431ec17"><code>d8c313c</code></a> Fix GsonDeserializer to support unicode characters independently of &quot;file.enc...</li>
   <li><a href="https://github.com/jwtk/jjwt/commit/43de9a34e341796c5023ba53624296a529b4d59d"><code>43de9a3</code></a> Add parameterized return type to Maps.and() (<a href="https://github-redirect.dependabot.com/jwtk/jjwt/issues/597">#597</a>)</li>
   <li>Additional commits viewable in <a href="https://github.com/jwtk/jjwt/compare/0.10.7...0.11.2">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.jsonwebtoken:jjwt-api&package-manager=maven&previous-version=0.10.7&new-version=0.11.2)](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: reviews-unsubscribe@iotdb.apache.org

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



[GitHub] [iotdb] HTHou merged pull request #4124: Bump jjwt-api from 0.10.7 to 0.11.2

Posted by GitBox <gi...@apache.org>.
HTHou merged pull request #4124:
URL: https://github.com/apache/iotdb/pull/4124


   


-- 
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: reviews-unsubscribe@iotdb.apache.org

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