Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: square/okio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: parent-3.11.0
Choose a base ref
...
head repository: square/okio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: parent-3.12.0
Choose a head ref
  • 13 commits
  • 28 files changed
  • 4 contributors

Commits on Apr 9, 2025

  1. Configuration menu
    Copy the full SHA
    76fe20f View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2025

  1. Update dependency com.android.tools.build:gradle to v8.9.2 (#1616)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 22, 2025
    Configuration menu
    Copy the full SHA
    d5f07ec View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2025

  1. Update dependency gradle to v8.14 (#1617)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 25, 2025
    Configuration menu
    Copy the full SHA
    d1d3f54 View commit details
    Browse the repository at this point in the history
  2. Update dependency java to v24 (#1606)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Apr 25, 2025
    Configuration menu
    Copy the full SHA
    33d4f8c View commit details
    Browse the repository at this point in the history

Commits on May 6, 2025

  1. Update dependency com.android.tools.build:gradle to v8.10.0 (#1619)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored May 6, 2025
    Configuration menu
    Copy the full SHA
    f09a3a1 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2025

  1. Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v2.1.21 (

    #1620)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored May 13, 2025
    Configuration menu
    Copy the full SHA
    ff6f748 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2025

  1. Update dependency com.vanniktech:gradle-maven-publish-plugin to v0.32…

    ….0 (#1622)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored May 14, 2025
    Configuration menu
    Copy the full SHA
    84ad5b1 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2025

  1. Configuration menu
    Copy the full SHA
    37c0ca3 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2025

  1. Configuration menu
    Copy the full SHA
    4f27de9 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2025

  1. Update dependency gradle to v8.14.1 (#1625)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored May 22, 2025
    Configuration menu
    Copy the full SHA
    5ce2d92 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2025

  1. New API, BufferedSource.indexOf(ByteString, fromIndex, toIndex) (#1626)

    * New API, BufferedSource.indexOf(ByteString, fromIndex, toIndex)
    
    This is surprisingly interesting. To minimize unnecessary reads for
    toIndex it is necessary to check whether a prefix of the query matches
    a suffix of the currently-loaded data.
    
    This read-avoidance is useful in practice. When doing HTTP multipart
    decoding the caller may scan for a boundary separator with a bounded
    range, and we don't want to block reading when doing so won't impact
    the result of the call.
    
    * apiDump
    
    * Check both maximum and minimum prefix sizes
    
    ---------
    
    Co-authored-by: Jesse Wilson <jwilson@squareup.com>
    swankjesse and squarejesse authored May 26, 2025
    Configuration menu
    Copy the full SHA
    b4b5fd2 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2025

  1. Re-implement Buffer.rangeEquals on Buffer.indexOf (#1628)

    The old rangeEquals function was embarassingly inefficient,
    using a full scan of the segments linked-list for each element.
    That optimization is already done in indexOf(), which has
    almost all of what we need for rangeEquals().
    
    This adds an offset and count slice to the input ByteString
    in indexOf(), and then leverages that to simplify rangeEquals().
    
    Co-authored-by: Jesse Wilson <jwilson@squareup.com>
    swankjesse and squarejesse authored May 27, 2025
    Configuration menu
    Copy the full SHA
    eca2120 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eca0e40 View commit details
    Browse the repository at this point in the history
Loading