You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/06/27 03:02:46 UTC

[PR] Bump okio from 1.16.0 to 3.3.0 (streampipes)

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

   Bumps [okio](https://github.com/square/okio) from 1.16.0 to 3.3.0.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/square/okio/blob/master/CHANGELOG.md">okio's changelog</a>.</em></p>
   <blockquote>
   <h2>Version 3.3.0</h2>
   <p><em>2023-01-07</em></p>
   <ul>
   <li>Fix: Don't leak resources when <code>use {}</code> is used with a non-local return. We introduced this
   performance and stability bug by not considering that non-local returns execute neither the
   <code>return</code> nor <code>catch</code> control flows.</li>
   <li>Fix: Use a sealed interface for <code>BufferedSink</code> and <code>BufferedSource</code>. These were never intended
   for end-users to implement, and we're happy that Kotlin now allows us to express that in our API.</li>
   <li>New: Change internal locks from <code>synchronized</code> to <code>ReentrantLock</code> and <code>Condition</code>. We expect this
   to improve help when using Okio with Java virtual threads ([Project Loom][loom]).</li>
   <li>Upgrade: [Kotlin 1.8.0][kotlin_1_8_0].</li>
   </ul>
   <h2>Version 3.2.0</h2>
   <p><em>2022-06-26</em></p>
   <ul>
   <li>Fix: Configure the multiplatform artifact (<code>com.squareup.okio:okio:3.x.x</code>) to depend on the
   JVM artifact (<code>com.squareup.okio:okio-jvm:3.x.x</code>) for Maven builds. This should work-around an
   issue where Maven doesn't interpret Gradle metadata.</li>
   <li>Fix: Change <code>CipherSource</code> and <code>CipherSink</code> to recover if the cipher doesn't support streaming.
   This should work around a crash with AES/GCM ciphers on Android.</li>
   <li>New: Enable compatibility with non-hierarchical projects.</li>
   </ul>
   <h2>Version 3.1.0</h2>
   <p><em>2022-04-19</em></p>
   <ul>
   <li>Upgrade: [Kotlin 1.6.20][kotlin_1_6_20].</li>
   <li>New: Support [Hierarchical project structure][hierarchical_projects]. If you're using Okio in a
   multiplatform project please upgrade your project to Kotlin 1.6.20 (or newer) to take advantage
   of this. With hierarchical projects it's easier to use properties like <code>FileSystem.SYSTEM</code> that
   are available on most Okio platforms but not all of them.</li>
   <li>New: <code>ForwardingSource</code> is now available on all platforms.</li>
   <li>New: The <code>watchosX64</code> platform is now supported.</li>
   <li>Fix: Don't crash in `NSData.toByteString()' when the input is empty.</li>
   <li>Fix: Support empty ZIP files in <code>FileSystem.openZip()</code>.</li>
   <li>Fix: Throw in <code>canonicalize()</code> of ZIP file systems if the path doesn't exist.</li>
   <li>Fix: Don't require ZIP files start with a local file header.</li>
   <li>New: <code>okio.ProtocolException</code> is a new exception type for multiplatform users. (It is aliased to
   <code>java.net.ProtocolException</code> on JVM platforms).</li>
   </ul>
   <h2>Version 3.0.0</h2>
   <p><em>2021-10-28</em></p>
   <p>This is the first stable release of Okio 3.x. This release is strongly backwards-compatible with</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/square/okio/commit/2e489516383d03052d0ba31d39d1cbd04a43f997"><code>2e48951</code></a> Prepare for release 3.3.0.</li>
   <li><a href="https://github.com/square/okio/commit/bc7e735e413b09a8ec6e8dd56c62f3471b6682a9"><code>bc7e735</code></a> Ensure close is called in all use cases (<a href="https://redirect.github.com/square/okio/issues/1190">#1190</a>)</li>
   <li><a href="https://github.com/square/okio/commit/f8434f575787198928a26334758ddbca9726b11c"><code>f8434f5</code></a> Loom support. (<a href="https://redirect.github.com/square/okio/issues/1176">#1176</a>)</li>
   <li><a href="https://github.com/square/okio/commit/4b4b1fd707d7fa3f18e209fb60f7f16539ddb93b"><code>4b4b1fd</code></a> Merge pull request <a href="https://redirect.github.com/square/okio/issues/1183">#1183</a> from square/renovate/androidx.test</li>
   <li><a href="https://github.com/square/okio/commit/ceb9b3a8fb6facb70d92b574a4300c7e08da34c9"><code>ceb9b3a</code></a> Update dependency androidx.test:runner to v1.5.2</li>
   <li><a href="https://github.com/square/okio/commit/ba7a989f167f649d98c2647e7221393a291e0ca0"><code>ba7a989</code></a> Upgrade to Kotlin 1.8.0 (<a href="https://redirect.github.com/square/okio/issues/1184">#1184</a>)</li>
   <li><a href="https://github.com/square/okio/commit/885ab1d0c65b820ed4d7b29715986e87e428da94"><code>885ab1d</code></a> Merge pull request <a href="https://redirect.github.com/square/okio/issues/1186">#1186</a> from square/JakeWharton-patch-1</li>
   <li><a href="https://github.com/square/okio/commit/dec743b0e320c615cfd6d6ae31a73752e182876e"><code>dec743b</code></a> Turn off semantic commits explicitly in Renovate</li>
   <li><a href="https://github.com/square/okio/commit/ae071302713321a983cd03f5d41041bfb60a27c3"><code>ae07130</code></a> Attempt to make filesystem tests less flaky (<a href="https://redirect.github.com/square/okio/issues/1181">#1181</a>)</li>
   <li><a href="https://github.com/square/okio/commit/8e559fdad84f71a8280b137e3ab41e29be0df136"><code>8e559fd</code></a> Don't do CI builds for obsolete JDKs (<a href="https://redirect.github.com/square/okio/issues/1185">#1185</a>)</li>
   <li>Additional commits viewable in <a href="https://github.com/square/okio/compare/okio-parent-1.16.0...parent-3.3.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.squareup.okio:okio&package-manager=maven&previous-version=1.16.0&new-version=3.3.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 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: commits-unsubscribe@streampipes.apache.org

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


Re: [PR] Bump okio from 1.16.0 to 3.3.0 (streampipes)

Posted by "tenthe (via GitHub)" <gi...@apache.org>.
tenthe merged PR #1715:
URL: https://github.com/apache/streampipes/pull/1715


-- 
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: dev-unsubscribe@streampipes.apache.org

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