Version v1.52.2

This commit is contained in:
Nick Craig-Wood 2020-06-24 13:49:00 +01:00
parent 21f5b1076f
commit d8144a7e84
10 changed files with 222 additions and 12 deletions

45
MANUAL.html generated
View File

@ -17,7 +17,7 @@
<header id="title-block-header">
<h1 class="title">rclone(1) User Manual</h1>
<p class="author">Nick Craig-Wood</p>
<p class="date">Jun 10, 2020</p>
<p class="date">Jun 24, 2020</p>
</header>
<h1 id="rclone-syncs-your-files-to-cloud-storage">Rclone syncs your files to cloud storage</h1>
<p><img width="50%" src="https://rclone.org/img/logo_on_light__horizontal_color.svg" alt="rclone logo" style="float:right; padding: 5px;" ></p>
@ -5866,7 +5866,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default &quot;rclone/v1.52.1&quot;)
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default &quot;rclone/v1.52.2&quot;)
-v, --verbose count Print lots more stuff (repeat for more)</code></pre>
<h2 id="backend-flags">Backend Flags</h2>
<p>These flags are available for every command. They control the backends and may be set in the config file.</p>
@ -11815,6 +11815,7 @@ trashed=false and &#39;c&#39; in parents</code></pre>
</ul>
<h4 id="drive-impersonate">drive-impersonate</h4>
<p>Impersonate this user when using a service account.</p>
<p>Note that if this is used then “root_folder_id” will be ignored.</p>
<ul>
<li>Config: impersonate</li>
<li>Env Var: RCLONE_DRIVE_IMPERSONATE</li>
@ -17059,6 +17060,46 @@ $ tree /tmp/b
<li>“error”: return an error based on option value</li>
</ul>
<h1 id="changelog">Changelog</h1>
<h2 id="v1.52.2---2020-06-24">v1.52.2 - 2020-06-24</h2>
<p><a href="https://github.com/rclone/rclone/compare/v1.52.1...v1.52.2">See commits</a></p>
<ul>
<li>Bug Fixes
<ul>
<li>build
<ul>
<li>Fix docker release build action (Nick Craig-Wood)</li>
<li>Fix custom timezone in Docker image (NoLooseEnds)</li>
</ul></li>
<li>check: Fix misleading message which printed errors instead of differences (Nick Craig-Wood)</li>
<li>errors: Add WSAECONNREFUSED and more to the list of retriable Windows errors (Nick Craig-Wood)</li>
<li>rcd: Fix incorrect prometheus metrics (Gary Kim)</li>
<li>serve restic: Fix flags so they use environment variables (Nick Craig-Wood)</li>
<li>serve webdav: Fix flags so they use environment variables (Nick Craig-Wood)</li>
<li>sync: Fix track-renames-strategy modtime (Nick Craig-Wood)</li>
</ul></li>
<li>Drive
<ul>
<li>Fix not being able to delete a directory with a trashed shortcut (Nick Craig-Wood)</li>
<li>Fix creating a directory inside a shortcut (Nick Craig-Wood)</li>
<li>Fix drive-impersonate with cached root_folder_id (Nick Craig-Wood)</li>
</ul></li>
<li>SFTP
<ul>
<li>Fix SSH key PEM loading (Zac Rubin)</li>
</ul></li>
<li>Swift
<ul>
<li>Speed up deletes by not retrying segment container deletes (Nick Craig-Wood)</li>
</ul></li>
<li>Tardigrade
<ul>
<li>Upgrade to uplink v1.1.1 (Caleb Case)</li>
</ul></li>
<li>WebDAV
<ul>
<li>Fix free/used display for rclone about/df for certain backends (Nick Craig-Wood)</li>
</ul></li>
</ul>
<h2 id="v1.52.1---2020-06-10">v1.52.1 - 2020-06-10</h2>
<p><a href="https://github.com/rclone/rclone/compare/v1.52.0...v1.52.1">See commits</a></p>
<ul>

34
MANUAL.md generated
View File

@ -1,6 +1,6 @@
% rclone(1) User Manual
% Nick Craig-Wood
% Jun 10, 2020
% Jun 24, 2020
# Rclone syncs your files to cloud storage
@ -9683,7 +9683,7 @@ These flags are available for every command.
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.52.1")
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.52.2")
-v, --verbose count Print lots more stuff (repeat for more)
```
@ -16833,6 +16833,9 @@ Size of listing chunk 100-1000. 0 to disable.
Impersonate this user when using a service account.
Note that if this is used then "root_folder_id" will be ignored.
- Config: impersonate
- Env Var: RCLONE_DRIVE_IMPERSONATE
- Type: string
@ -23635,6 +23638,33 @@ Options:
# Changelog
## v1.52.2 - 2020-06-24
[See commits](https://github.com/rclone/rclone/compare/v1.52.1...v1.52.2)
* Bug Fixes
* build
* Fix docker release build action (Nick Craig-Wood)
* Fix custom timezone in Docker image (NoLooseEnds)
* check: Fix misleading message which printed errors instead of differences (Nick Craig-Wood)
* errors: Add WSAECONNREFUSED and more to the list of retriable Windows errors (Nick Craig-Wood)
* rcd: Fix incorrect prometheus metrics (Gary Kim)
* serve restic: Fix flags so they use environment variables (Nick Craig-Wood)
* serve webdav: Fix flags so they use environment variables (Nick Craig-Wood)
* sync: Fix --track-renames-strategy modtime (Nick Craig-Wood)
* Drive
* Fix not being able to delete a directory with a trashed shortcut (Nick Craig-Wood)
* Fix creating a directory inside a shortcut (Nick Craig-Wood)
* Fix --drive-impersonate with cached root_folder_id (Nick Craig-Wood)
* SFTP
* Fix SSH key PEM loading (Zac Rubin)
* Swift
* Speed up deletes by not retrying segment container deletes (Nick Craig-Wood)
* Tardigrade
* Upgrade to uplink v1.1.1 (Caleb Case)
* WebDAV
* Fix free/used display for rclone about/df for certain backends (Nick Craig-Wood)
## v1.52.1 - 2020-06-10
[See commits](https://github.com/rclone/rclone/compare/v1.52.0...v1.52.1)

42
MANUAL.txt generated
View File

@ -1,6 +1,6 @@
rclone(1) User Manual
Nick Craig-Wood
Jun 10, 2020
Jun 24, 2020
@ -9752,7 +9752,7 @@ These flags are available for every command.
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.52.1")
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.52.2")
-v, --verbose count Print lots more stuff (repeat for more)
@ -16845,6 +16845,8 @@ Size of listing chunk 100-1000. 0 to disable.
Impersonate this user when using a service account.
Note that if this is used then “root_folder_id” will be ignored.
- Config: impersonate
- Env Var: RCLONE_DRIVE_IMPERSONATE
- Type: string
@ -23634,6 +23636,42 @@ Options:
CHANGELOG
v1.52.2 - 2020-06-24
See commits
- Bug Fixes
- build
- Fix docker release build action (Nick Craig-Wood)
- Fix custom timezone in Docker image (NoLooseEnds)
- check: Fix misleading message which printed errors instead of
differences (Nick Craig-Wood)
- errors: Add WSAECONNREFUSED and more to the list of retriable
Windows errors (Nick Craig-Wood)
- rcd: Fix incorrect prometheus metrics (Gary Kim)
- serve restic: Fix flags so they use environment variables (Nick
Craig-Wood)
- serve webdav: Fix flags so they use environment variables (Nick
Craig-Wood)
- sync: Fix track-renames-strategy modtime (Nick Craig-Wood)
- Drive
- Fix not being able to delete a directory with a trashed shortcut
(Nick Craig-Wood)
- Fix creating a directory inside a shortcut (Nick Craig-Wood)
- Fix drive-impersonate with cached root_folder_id (Nick
Craig-Wood)
- SFTP
- Fix SSH key PEM loading (Zac Rubin)
- Swift
- Speed up deletes by not retrying segment container deletes (Nick
Craig-Wood)
- Tardigrade
- Upgrade to uplink v1.1.1 (Caleb Case)
- WebDAV
- Fix free/used display for rclone about/df for certain backends
(Nick Craig-Wood)
v1.52.1 - 2020-06-10
See commits

View File

@ -1 +1 @@
v1.52.1
v1.52.2

View File

@ -5,6 +5,33 @@ description: "Rclone Changelog"
# Changelog
## v1.52.2 - 2020-06-24
[See commits](https://github.com/rclone/rclone/compare/v1.52.1...v1.52.2)
* Bug Fixes
* build
* Fix docker release build action (Nick Craig-Wood)
* Fix custom timezone in Docker image (NoLooseEnds)
* check: Fix misleading message which printed errors instead of differences (Nick Craig-Wood)
* errors: Add WSAECONNREFUSED and more to the list of retriable Windows errors (Nick Craig-Wood)
* rcd: Fix incorrect prometheus metrics (Gary Kim)
* serve restic: Fix flags so they use environment variables (Nick Craig-Wood)
* serve webdav: Fix flags so they use environment variables (Nick Craig-Wood)
* sync: Fix --track-renames-strategy modtime (Nick Craig-Wood)
* Drive
* Fix not being able to delete a directory with a trashed shortcut (Nick Craig-Wood)
* Fix creating a directory inside a shortcut (Nick Craig-Wood)
* Fix --drive-impersonate with cached root_folder_id (Nick Craig-Wood)
* SFTP
* Fix SSH key PEM loading (Zac Rubin)
* Swift
* Speed up deletes by not retrying segment container deletes (Nick Craig-Wood)
* Tardigrade
* Upgrade to uplink v1.1.1 (Caleb Case)
* WebDAV
* Fix free/used display for rclone about/df for certain backends (Nick Craig-Wood)
## v1.52.1 - 2020-06-10
[See commits](https://github.com/rclone/rclone/compare/v1.52.0...v1.52.1)

View File

@ -802,6 +802,9 @@ Size of listing chunk 100-1000. 0 to disable.
Impersonate this user when using a service account.
Note that if this is used then "root_folder_id" will be ignored.
- Config: impersonate
- Env Var: RCLONE_DRIVE_IMPERSONATE
- Type: string

View File

@ -144,7 +144,7 @@ These flags are available for every command.
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.52.1")
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.52.2")
-v, --verbose count Print lots more stuff (repeat for more)
```

View File

@ -1 +1 @@
v1.52.1
v1.52.2

View File

@ -1,4 +1,4 @@
package fs
// Version of rclone
var Version = "v1.52.1"
var Version = "v1.52.2"

75
rclone.1 generated
View File

@ -1,7 +1,7 @@
.\"t
.\" Automatically generated by Pandoc 2.5
.\"
.TH "rclone" "1" "Jun 10, 2020" "User Manual" ""
.TH "rclone" "1" "Jun 24, 2020" "User Manual" ""
.hy
.SH Rclone syncs your files to cloud storage
.PP
@ -13041,7 +13041,7 @@ These flags are available for every command.
\-\-use\-json\-log Use json log format.
\-\-use\-mmap Use mmap allocator (see docs).
\-\-use\-server\-modtime Use server modified time instead of object metadata
\-\-user\-agent string Set the user\-agent to a specified string. The default is rclone/ version (default \[dq]rclone/v1.52.1\[dq])
\-\-user\-agent string Set the user\-agent to a specified string. The default is rclone/ version (default \[dq]rclone/v1.52.2\[dq])
\-v, \-\-verbose count Print lots more stuff (repeat for more)
\f[R]
.fi
@ -22940,6 +22940,8 @@ Default: 1000
.SS \[en]drive\-impersonate
.PP
Impersonate this user when using a service account.
.PP
Note that if this is used then \[lq]root_folder_id\[rq] will be ignored.
.IP \[bu] 2
Config: impersonate
.IP \[bu] 2
@ -32223,6 +32225,75 @@ Options:
.IP \[bu] 2
\[lq]error\[rq]: return an error based on option value
.SH Changelog
.SS v1.52.2 \- 2020\-06\-24
.PP
See commits (https://github.com/rclone/rclone/compare/v1.52.1...v1.52.2)
.IP \[bu] 2
Bug Fixes
.RS 2
.IP \[bu] 2
build
.RS 2
.IP \[bu] 2
Fix docker release build action (Nick Craig\-Wood)
.IP \[bu] 2
Fix custom timezone in Docker image (NoLooseEnds)
.RE
.IP \[bu] 2
check: Fix misleading message which printed errors instead of
differences (Nick Craig\-Wood)
.IP \[bu] 2
errors: Add WSAECONNREFUSED and more to the list of retriable Windows
errors (Nick Craig\-Wood)
.IP \[bu] 2
rcd: Fix incorrect prometheus metrics (Gary Kim)
.IP \[bu] 2
serve restic: Fix flags so they use environment variables (Nick
Craig\-Wood)
.IP \[bu] 2
serve webdav: Fix flags so they use environment variables (Nick
Craig\-Wood)
.IP \[bu] 2
sync: Fix \[en]track\-renames\-strategy modtime (Nick Craig\-Wood)
.RE
.IP \[bu] 2
Drive
.RS 2
.IP \[bu] 2
Fix not being able to delete a directory with a trashed shortcut (Nick
Craig\-Wood)
.IP \[bu] 2
Fix creating a directory inside a shortcut (Nick Craig\-Wood)
.IP \[bu] 2
Fix \[en]drive\-impersonate with cached root_folder_id (Nick
Craig\-Wood)
.RE
.IP \[bu] 2
SFTP
.RS 2
.IP \[bu] 2
Fix SSH key PEM loading (Zac Rubin)
.RE
.IP \[bu] 2
Swift
.RS 2
.IP \[bu] 2
Speed up deletes by not retrying segment container deletes (Nick
Craig\-Wood)
.RE
.IP \[bu] 2
Tardigrade
.RS 2
.IP \[bu] 2
Upgrade to uplink v1.1.1 (Caleb Case)
.RE
.IP \[bu] 2
WebDAV
.RS 2
.IP \[bu] 2
Fix free/used display for rclone about/df for certain backends (Nick
Craig\-Wood)
.RE
.SS v1.52.1 \- 2020\-06\-10
.PP
See commits (https://github.com/rclone/rclone/compare/v1.52.0...v1.52.1)