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: pkg/sftp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.13.8
Choose a base ref
...
head repository: pkg/sftp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.13.9
Choose a head ref
  • 8 commits
  • 2 files changed
  • 3 contributors

Commits on Feb 27, 2025

  1. Configuration menu
    Copy the full SHA
    a2172dc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4660877 View commit details
    Browse the repository at this point in the history
  3. go mod tidy

    puellanivis committed Feb 27, 2025
    Configuration menu
    Copy the full SHA
    27c9969 View commit details
    Browse the repository at this point in the history
  4. oops, duh

    puellanivis committed Feb 27, 2025
    Configuration menu
    Copy the full SHA
    584399d View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2025

  1. if errF and errD are pointers to os.PathError, then they won't compar…

    …e equal, even when they are
    puellanivis committed Mar 4, 2025
    Configuration menu
    Copy the full SHA
    eea14d0 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2025

  1. Merge pull request #618 from pkg/v1-backport-client-remove-and-fsync

    Backport v2/Client.Remove and File.Sync
    puellanivis authored Mar 12, 2025
    Configuration menu
    Copy the full SHA
    19bfb49 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2025

  1. perf: ensure full write buffer for *File.ReadFrom

    In `*File.ReadFrom`, ensure that the buffer is filled to capacity (`maxPacket`
    length) before performing the write.
    
    Prior to this change, the amount of data read into the buffer was dictated by
    the `io.Reader`'s `Read` implementation, and write performance would suffer
    when the Read would return less than maxPacket bytes of data. An example
    source would be a `net/http` response `Body` from a TLS server, which
    seems to cap each read to 16384 bytes -- half the default max packet size of
    32768 bytes.
    justfalter committed Mar 24, 2025
    Configuration menu
    Copy the full SHA
    28eb389 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2025

  1. Merge pull request #623 from justfalter/read-full

    perf: ensure full write buffer for *File.ReadFrom
    puellanivis authored Mar 25, 2025
    Configuration menu
    Copy the full SHA
    320d62f View commit details
    Browse the repository at this point in the history
Loading