rclone:v1.55-stable

Last commit made on 2021-04-26
Get this branch:
git clone -b v1.55-stable https://git.launchpad.net/rclone

Branch merges

Branch information

Name:
v1.55-stable
Repository:
lp:rclone

Recent commits

825dd65... by Nick Craig-Wood

Version v1.55.1

96cdbc5... by OleFrost <email address hidden>

onedrive: Work around for random "Unable to initialize RPS" errors

OneDrive randomly returns the error message: "InvalidAuthenticationToken: Unable to initialize RPS". These unexpected errors typically caused the entire rclone command to fail.

This work around recognizes these errors and marks them for a low level retry, that mostly succeeds. This will make rclone commands complete without being noticeable affected.

Fixes: #5270

baf626c... by buengese <email address hidden>

compress: fix compressed name regexp

e8be37b... by Nick Craig-Wood

build: fix version numbers in android branch builds

e67ac64... by Nick Craig-Wood

dropbox: fix Unable to decrypt returned paths from changeNotify - fixes #5165

This was caused by incorrect use of strings.TrimLeft where
strings.TrimPrefix was required.

c86fc6e... by Nick Craig-Wood

vfs: fix a code path which allows dirty data to be removed causing data loss

Before this change the VFS layer could remove a locally cached file
even if it had data which needed to be written back, thus causing data loss.

See: https://forum.rclone.org/t/rclone-1-55-doesnt-save-file-changes-if-the-file-has-been-reopened-during-upload-google-drive-mount/23646

a6cab5d... by Ansh Mittal <email address hidden>

drive: don't open browser when service account...

credentials specified

Fixes #5104

0d8c69b... by Nick Craig-Wood

dropbox: add missing team_data.member scope for use with --impersonate

See: https://forum.rclone.org/t/dropbox-business-not-accepting-oauth2/23390/32

07f4b98... by Nick Craig-Wood

dropbox: fix About after scopes changes - rclone config reconnect needed

This adds the missing scope for the About call. To use it it will be
necessary to refresh the token with `rclone config reconnect`.

See: https://forum.rclone.org/t/dropbox-too-many-requests-or-write-operations-trying-again-in-15-seconds/23316/33

c764ab2... by Ivan Andreev

backend/ftp: fix implicit TLS after PR #4266 (#5219)

PR #4266 modified ftpConnection to make ftp library into using
a custom dial function which is QoS aware and takes care of TLS.
However the ServerConn.Login function from the ftp library also needs
TLS config passed explicitly as a trigger for sending PSBZ and PROT
options to FTP server. This was not taken care of resulting in
failure to connect via FTP with implicit TLS.
This PR fixes that.

Fixes #5210