Skip to content

Commit

Permalink
Version v1.65.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ncw committed Jan 8, 2024
1 parent 576ecf5 commit 863b412
Show file tree
Hide file tree
Showing 17 changed files with 4,849 additions and 331 deletions.
956 changes: 688 additions & 268 deletions MANUAL.html

Large diffs are not rendered by default.

982 changes: 964 additions & 18 deletions MANUAL.md

Large diffs are not rendered by default.

976 changes: 963 additions & 13 deletions MANUAL.txt

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions docs/content/changelog.md
Expand Up @@ -5,6 +5,56 @@ description: "Rclone Changelog"

# Changelog

## v1.65.1 - 2024-01-08

[See commits](https://github.com/rclone/rclone/compare/v1.65.0...v1.65.1)

* Bug Fixes
* build
* Bump golang.org/x/crypto to fix ssh terrapin CVE-2023-48795 (dependabot)
* Update to go1.21.5 to fix Windows path problems (Nick Craig-Wood)
* Fix docker build on arm/v6 (Nick Craig-Wood)
* install.sh: fix harmless error message on install (Nick Craig-Wood)
* accounting: fix stats to show server side transfers (Nick Craig-Wood)
* doc fixes (albertony, ben-ba, Eli Orzitzer, emyarod, keongalvin, rarspace01)
* nfsmount: Compile for all unix oses, add `--sudo` and fix error/option handling (Nick Craig-Wood)
* operations: Fix files moved by rclone move not being counted as transfers (Nick Craig-Wood)
* oauthutil: Avoid panic when `*token` and `*ts.token` are the same (rkonfj)
* serve s3: Fix listing oddities (Nick Craig-Wood)
* VFS
* Note that `--vfs-refresh` runs in the background (Nick Craig-Wood)
* Azurefiles
* Fix storage base url (Oksana)
* Crypt
* Fix rclone move a file over itself deleting the file (Nick Craig-Wood)
* Chunker
* Fix rclone move a file over itself deleting the file (Nick Craig-Wood)
* Compress
* Fix rclone move a file over itself deleting the file (Nick Craig-Wood)
* Dropbox
* Fix used space on dropbox team accounts (Nick Craig-Wood)
* FTP
* Fix multi-thread copy (WeidiDeng)
* Googlephotos
* Fix nil pointer exception when batch failed (Nick Craig-Wood)
* Hasher
* Fix rclone move a file over itself deleting the file (Nick Craig-Wood)
* Fix invalid memory address error when MaxAge == 0 (nielash)
* Onedrive
* Fix error listing: unknown object type `<nil>` (Nick Craig-Wood)
* Fix "unauthenticated: Unauthenticated" errors when uploading (Nick Craig-Wood)
* Oracleobjectstorage
* Fix object storage endpoint for custom endpoints (Manoj Ghosh)
* Multipart copy create bucket if it doesn't exist. (Manoj Ghosh)
* Protondrive
* Fix CVE-2023-45286 / GHSA-xwh9-gc39-5298 (Nick Craig-Wood)
* S3
* Fix crash if no UploadId in multipart upload (Nick Craig-Wood)
* Smb
* Fix shares not listed by updating go-smb2 (halms)
* Union
* Fix rclone move a file over itself deleting the file (Nick Craig-Wood)

## v1.65.0 - 2023-11-26

[See commits](https://github.com/rclone/rclone/compare/v1.64.0...v1.65.0)
Expand Down
3 changes: 2 additions & 1 deletion docs/content/commands/rclone.md
Expand Up @@ -831,7 +831,7 @@ rclone [flags]
--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 (default "rclone/v1.65.0")
--user-agent string Set the user-agent to a specified string (default "rclone/v1.65.1")
-v, --verbose count Print lots more stuff (repeat for more)
-V, --version Print the version number
--webdav-bearer-token string Bearer token instead of user/pass (e.g. a Macaroon)
Expand Down Expand Up @@ -895,6 +895,7 @@ rclone [flags]
* [rclone move](/commands/rclone_move/) - Move files from source to dest.
* [rclone moveto](/commands/rclone_moveto/) - Move file or directory from source to dest.
* [rclone ncdu](/commands/rclone_ncdu/) - Explore a remote with a text based user interface.
* [rclone nfsmount](/commands/rclone_nfsmount/) - Mount the remote as file system on a mountpoint.
* [rclone obscure](/commands/rclone_obscure/) - Obscure password for use in the rclone config file.
* [rclone purge](/commands/rclone_purge/) - Remove the path and all of its contents.
* [rclone rc](/commands/rclone_rc/) - Run a command against a running rclone.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/commands/rclone_mount.md
Expand Up @@ -856,7 +856,7 @@ rclone mount remote:path /path/to/mountpoint [flags]
--vfs-read-chunk-size SizeSuffix Read the source objects in chunks (default 128Mi)
--vfs-read-chunk-size-limit SizeSuffix If greater than --vfs-read-chunk-size, double the chunk size after each chunk read, until the limit is reached ('off' is unlimited) (default off)
--vfs-read-wait Duration Time to wait for in-sequence read before seeking (default 20ms)
--vfs-refresh Refreshes the directory cache recursively on start
--vfs-refresh Refreshes the directory cache recursively in the background on start
--vfs-used-is-size rclone size Use the rclone size algorithm for Used size
--vfs-write-back Duration Time to writeback files after last use when using cache (default 5s)
--vfs-write-wait Duration Time to wait for in-sequence write before giving error (default 1s)
Expand Down

0 comments on commit 863b412

Please sign in to comment.