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: ncw/swift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.2
Choose a base ref
...
head repository: ncw/swift
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.3
Choose a head ref
  • 9 commits
  • 10 files changed
  • 2 contributors

Commits on Aug 28, 2024

  1. Added quota info (total bytes and objects count) support for containers.

    Swift protocol allows to retrieve quota info for a container (https://docs.openstack.org/api-ref/object-store/#show-container-metadata). This commit allows to get those data (if available).
    This is useful to enhance 'rclone about' command when used with some swift implementations such as Blomp storage.
    fsantagostinobietti authored and ncw committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    a27f2e5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4007076 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Configuration menu
    Copy the full SHA
    b9d9daa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f996a02 View commit details
    Browse the repository at this point in the history
  3. On Auth failures, rewind the body if possible

    This fixes integration test failures for go1.23 and go1.22 which
    weren't present in go1.21 and previous.
    
    Something changed in the go runtime to cause this but the exact cause
    is unknown.
    ncw committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    d2de41c View commit details
    Browse the repository at this point in the history
  4. Ignore lint errors for strings.Title in test code

    strings.Title is broken for certain types of unicode string, however
    in this test code we are only ever using on single word ASCII strings
    where it works fine. We don't want to take another dependency to fix
    (x/text) which is the recommended fix, so we will just ignore the lint
    errors since they are false positives here.
    ncw committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    883590e View commit details
    Browse the repository at this point in the history
  5. Replace deprecated ioutil.ReadAll with io.ReadAll

    This bumps the minimum go version from go1.15 to go1.16 as io.ReadAll
    was only added in go1.16
    ncw committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    16e3ce8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d4aaacb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    36c646c View commit details
    Browse the repository at this point in the history
Loading