mirror of
https://github.com/rclone/rclone.git
synced 2026-01-16 07:23:21 +00:00
Version v1.53.4
This commit is contained in:
@@ -5,6 +5,50 @@ description: "Rclone Changelog"
|
||||
|
||||
# Changelog
|
||||
|
||||
## v1.53.4 - 2021-01-20
|
||||
|
||||
[See commits](https://github.com/rclone/rclone/compare/v1.53.3...v1.53.4)
|
||||
|
||||
* Bug Fixes
|
||||
* accounting: Fix data race in Transferred() (Maciej Zimnoch)
|
||||
* build
|
||||
* Stop tagged releases making a current beta (Nick Craig-Wood)
|
||||
* Upgrade docker buildx action (Matteo Pietro Dazzi)
|
||||
* Add -buildmode to cross-compile.go (Nick Craig-Wood)
|
||||
* Fix docker build by upgrading ilteoood/docker_buildx (Nick Craig-Wood)
|
||||
* Revert GitHub actions brew fix since this is now fixed (Nick Craig-Wood)
|
||||
* Fix brew install --cask syntax for macOS build (Nick Craig-Wood)
|
||||
* Update nfpm syntax to fix build of .deb/.rpm packages (Nick Craig-Wood)
|
||||
* Fix for Windows build errors (Ivan Andreev)
|
||||
* fs: Parseduration: fixed tests to use UTC time (Ankur Gupta)
|
||||
* fshttp: Prevent overlap of HTTP headers in logs (Nathan Collins)
|
||||
* rc
|
||||
* Fix core/command giving 500 internal error (Nick Craig-Wood)
|
||||
* Add Copy method to rc.Params (Nick Craig-Wood)
|
||||
* Fix 500 error when marshalling errors from core/command (Nick Craig-Wood)
|
||||
* plugins: Create plugins files only if webui is enabled. (negative0)
|
||||
* serve http: Fix serving files of unknown length (Nick Craig-Wood)
|
||||
* serve sftp: Fix authentication on one connection blocking others (Nick Craig-Wood)
|
||||
* Mount
|
||||
* Add optional `brew` tag to throw an error when using mount in the binaries installed via Homebrew (Anagh Kumar Baranwal)
|
||||
* Add "." and ".." to directories to match cmount and expectations (Nick Craig-Wood)
|
||||
* VFS
|
||||
* Make cache dir absolute before using it to fix path too long errors (Nick Craig-Wood)
|
||||
* Chunker
|
||||
* Improve detection of incompatible metadata (Ivan Andreev)
|
||||
* Google Cloud Storage
|
||||
* Fix server side copy of large objects (Nick Craig-Wood)
|
||||
* Jottacloud
|
||||
* Fix token renewer to fix long uploads (Nick Craig-Wood)
|
||||
* Fix token refresh failed: is not a regular file error (Nick Craig-Wood)
|
||||
* Pcloud
|
||||
* Only use SHA1 hashes in EU region (Nick Craig-Wood)
|
||||
* Sharefile
|
||||
* Undo Fix backend due to API swapping integers for strings (Nick Craig-Wood)
|
||||
* WebDAV
|
||||
* Fix Open Range requests to fix 4shared mount (Nick Craig-Wood)
|
||||
* Add "Depth: 0" to GET requests to fix bitrix (Nick Craig-Wood)
|
||||
|
||||
## v1.53.3 - 2020-11-19
|
||||
|
||||
[See commits](https://github.com/rclone/rclone/compare/v1.53.2...v1.53.3)
|
||||
|
||||
@@ -147,7 +147,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.53.3")
|
||||
--user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.53.4")
|
||||
-v, --verbose count Print lots more stuff (repeat for more)
|
||||
```
|
||||
|
||||
|
||||
@@ -511,17 +511,22 @@ This takes the following parameters
|
||||
- command - a string with the command name
|
||||
- arg - a list of arguments for the backend command
|
||||
- opt - a map of string to string of options
|
||||
- returnType - one of ("COMBINED_OUTPUT", "STREAM", "STREAM_ONLY_STDOUT", "STREAM_ONLY_STDERR")
|
||||
- defaults to "COMBINED_OUTPUT" if not set
|
||||
- the STREAM returnTypes will write the output to the body of the HTTP message
|
||||
- the COMBINED_OUTPUT will write the output to the "result" parameter
|
||||
|
||||
Returns
|
||||
|
||||
- result - result from the backend command
|
||||
- only set when using returnType "COMBINED_OUTPUT"
|
||||
- error - set if rclone exits with an error code
|
||||
- returnType - one of ("COMBINED_OUTPUT", "STREAM", "STREAM_ONLY_STDOUT". "STREAM_ONLY_STDERR")
|
||||
- returnType - one of ("COMBINED_OUTPUT", "STREAM", "STREAM_ONLY_STDOUT", "STREAM_ONLY_STDERR")
|
||||
|
||||
For example
|
||||
|
||||
rclone rc core/command command=ls -a mydrive:/ -o max-depth=1
|
||||
rclone rc core/command -a ls -a mydrive:/ -o max-depth=1
|
||||
rclone rc core/command -a ls -a mydrive:/ -o max-depth=1
|
||||
|
||||
Returns
|
||||
|
||||
|
||||
Reference in New Issue
Block a user