Skip to content

Commit bfcbbf2

Browse files
Merge #848
848: Bump com.squareup.okio:okio from 3.10.2 to 3.11.0 r=curquiza a=dependabot[bot] Bumps [com.squareup.okio:okio](https://github.com/square/okio) from 3.10.2 to 3.11.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/square/okio/blob/master/CHANGELOG.md">com.squareup.okio:okio's changelog</a>.</em></p> <blockquote> <h2>Version 3.11.0</h2> <p><em>2025-04-09</em></p> <ul> <li>Fix: Clear the deflater's byte array reference</li> <li>New: Faster implementation of <code>String.decodeHex()</code> on Kotlin/JS.</li> <li>New: Declare <code>EXACTLY_ONCE</code> execution for blocks like <code>Closeable.use {}</code> and <code>FileSystem.read {}</code>.</li> <li>Upgrade: [Kotlin 2.1.20][kotlin_2_1_20].</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/square/okio/commit/a5b94203c22f94e291bc61d71cf8b84b063d4a9e"><code>a5b9420</code></a> Revert publish plugin</li> <li><a href="https://github.com/square/okio/commit/e3c8d933a1685e97c1c46d421aceed572e1acfda"><code>e3c8d93</code></a> Prepare for release 3.11.0.</li> <li><a href="https://github.com/square/okio/commit/a8040d3836448db839bf65f0636b7182aaa55a38"><code>a8040d3</code></a> Merge pull request <a href="https://redirect.github.com/square/okio/issues/1614">#1614</a> from square/jwilson.0409.promote_fast_js_hex</li> <li><a href="https://github.com/square/okio/commit/a571c3101e1fca04a5cbb4b9e734385d8ad03c5a"><code>a571c31</code></a> Fix appleMain dependency</li> <li><a href="https://github.com/square/okio/commit/b43d833b16c724fb9f513b9bb1ba7c6888e537a1"><code>b43d833</code></a> Spotless</li> <li><a href="https://github.com/square/okio/commit/6326888dbe95d5dc36986324edf824bb30f70156"><code>6326888</code></a> Custom JS implementation of decodeHex</li> <li><a href="https://github.com/square/okio/commit/9b42a9783984caba92a0def3924c873ed8239623"><code>9b42a97</code></a> Update dependency com.diffplug.spotless:spotless-plugin-gradle to v7.0.3 (<a href="https://redirect.github.com/square/okio/issues/1613">#1613</a>)</li> <li><a href="https://github.com/square/okio/commit/9ed2595d247cd09cd3a597f82fdf1762bc8bcfa7"><code>9ed2595</code></a> Clear the deflater's byte array reference (<a href="https://redirect.github.com/square/okio/issues/1612">#1612</a>)</li> <li><a href="https://github.com/square/okio/commit/7f14587bc20c6187bec31f521093ca3d6c2a2611"><code>7f14587</code></a> Update dependency com.android.tools.build:gradle to v8.9.1 (<a href="https://redirect.github.com/square/okio/issues/1610">#1610</a>)</li> <li><a href="https://github.com/square/okio/commit/992d1893ecabaa849082999c81dfb9365c6fc955"><code>992d189</code></a> Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v2.1.20 (<a href="https://redirect.github.com/square/okio/issues/1605">#1605</a>)</li> <li>Additional commits viewable in <a href="https://github.com/square/okio/compare/3.10.2...parent-3.11.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=gradle&previous-version=3.10.2&new-version=3.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR 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` 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 parents d44c8ed + faa6861 commit bfcbbf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies {
6161
// https://mvnrepository.com/artifact/org.mockito/mockito-core
6262
testImplementation 'org.mockito:mockito-core:4.9.0'
6363
testImplementation 'org.hamcrest:hamcrest:3.0'
64-
testImplementation 'com.squareup.okio:okio:3.10.2'
64+
testImplementation 'com.squareup.okio:okio:3.11.0'
6565
testImplementation 'com.squareup.okhttp3:okhttp:4.12.0'
6666
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.19.0'
6767

0 commit comments

Comments
 (0)