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: minio/minio-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.64
Choose a base ref
...
head repository: minio/minio-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.0.65
Choose a head ref
  • 4 commits
  • 6 files changed
  • 3 contributors

Commits on Nov 20, 2023

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

Commits on Nov 22, 2023

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

Commits on Nov 30, 2023

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

Commits on Dec 1, 2023

  1. Avoid unnecessary reopening of HTTP streams in GetObject() (#1908)

    Sometimes consumers of Seek() might use it for purposes other than
    chaging the current read/write offset. For example, using whence =
    io.SeekCurrent to get the current seek position. However, minio-go
    invalidates the underlying HTTP stream unconditionally when Seek() is
    called, resulting in massive performance degradation in these scenarios.
    
    This commit avoids these issues by only reopening the stream if the seek
    position is actually changed.
    PeterCxy authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    7c8e5d6 View commit details
    Browse the repository at this point in the history
Loading