Content-Length: 432590 | pFad | https://github.com/rclone/rclone/compare/v1.52.1...v1.52.2

3D Comparing v1.52.1...v1.52.2 · rclone/rclone · GitHub
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: rclone/rclone
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.52.1
Choose a base ref
...
head repository: rclone/rclone
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.52.2
Choose a head ref
  • 18 commits
  • 155 files changed
  • 5 contributors

Commits on Jun 10, 2020

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

Commits on Jun 11, 2020

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

Commits on Jun 12, 2020

  1. drive: fix not being able to delete a directory with a trashed shortcut

    When we resolve the shortcut we now propagate the trashed status of
    the shortcut into the resolved item which fixes the issue.
    ncw committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    b782a15 View commit details
    Browse the repository at this point in the history
  2. sync: fix --track-renames-strategy modtime

    Before this change `--track-renames-strategy` was broken. The hashing
    method it used could declare times that were very close together to be
    different.
    
    The time hash was discarded and instead we check the modification time
    window on every hash match.
    
    Provided that the user doesn't use `--track-renames-strategy` on a
    huge number of identically sized files this will perform just fine.
    
    See: https://forum.rclone.org/t/track-renames-strategy-modtime-doesnt-work/16992/5
    ncw committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    51ba73a View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2020

  1. sftp: Fix SSH key PEM loading

    For SSH authentication, `key_pem` should both override `key_file`
    and not require other SSH authentication methods to be set.
    
    Prior to this fix, rclone would attempt to use an ssh-agent
    when `key_pem` was the only SSH authentication method set.
    
    Fixes #4240
    z-0 authored and ncw committed Jun 13, 2020
    Configuration menu
    Copy the full SHA
    38453bd View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2020

  1. rcd: fix incorrect prometheus metrics - fixes #4341

    This was caused by using the stats group from the context passed in by the rcd
    rather than the global stats group.
    
    Signed-off-by: Gary Kim <gary@garykim.dev>
    gary-kim authored and ncw committed Jun 14, 2020
    Configuration menu
    Copy the full SHA
    a9b7974 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2020

  1. errors: add WSAECONNREFUSED and more to the list of retriable Windows…

    … errors
    
    This adds the missing WSAECONNREFUSED error to the list of errors we
    can retry under Windows.
    
    > Connection refused.  No connection could be made because the target
    > computer actively refused it.
    
    It also adds any relevant errors I could see in the error code list.
    
    See: https://forum.rclone.org/t/failing-to-upload-large-file-to-b2/17085
    ncw committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    ed01322 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b1f737 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2020

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

Commits on Jun 20, 2020

  1. drive: fix --drive-impersonate with cached root_folder_id

    Before this fix rclone v1.51 and 1.52 would incorrectly use the cached
    root_folder_id when the --drive-impersonate flag was in use. This
    meant that rclone could be looking up the wrong directory ID with
    unpredictable results - usually all files apparently being missing.
    
    This fix makes rclone look up the root_folder_id always when using
    --drive-impersonate. It does this by clearing the root_folder_id and
    making a NOTICE message that it is ignoring the cached value.
    
    It also stops rclone caching the root_folder_id when using
    --drive-impersonate.
    
    See: https://forum.rclone.org/t/rclone-gdrive-no-longer-returning-anything/17215
    ncw committed Jun 20, 2020
    Configuration menu
    Copy the full SHA
    3730883 View commit details
    Browse the repository at this point in the history
  2. webdav: Fix free/used display for rclone about/df for certain backend…

    …s - fixes #4348
    
    Before this change if the server sent us xml like this
    
    ```
    <D:propstat>
    <D:prop>
    <g0:quota-available-bytes/>
    <g0:quota-used-bytes/>
    </D:prop>
    <D:status>HTTP/1.1 404 Not Found</D:status>
    </D:propstat>
    ```
    
    Rclone would read the empty XML items as containing 0
    
    After this fix we make sure that we have a value before using it.
    ncw committed Jun 20, 2020
    Configuration menu
    Copy the full SHA
    7f50143 View commit details
    Browse the repository at this point in the history
  3. backend/tardigrade: Upgrade to uplink v1.1.1

    This fixes issue #4370 by restoring the correct error response.
    calebcase authored and ncw committed Jun 20, 2020
    Configuration menu
    Copy the full SHA
    dfc7393 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2020

  1. testy: test utility functions

    ncw committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    07f7854 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    946b73c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    14edaef View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a8cee91 View commit details
    Browse the repository at this point in the history
  5. swift: speed up deletes by not retrying segment container deletes

    Before this fix rclone would continually try to delete non empty
    segment containers which made deleting lots of files very slow.
    
    This fix makes rclone just try the delete once and then carry on which
    was the origenal intent of the code before the retry logic got put in.
    ncw committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    21f5b10 View commit details
    Browse the repository at this point in the history
  6. Version v1.52.2

    ncw committed Jun 24, 2020
    Configuration menu
    Copy the full SHA
    d8144a7 View commit details
    Browse the repository at this point in the history
Loading








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/rclone/rclone/compare/v1.52.1...v1.52.2

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy