Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 49f6919

Browse files
committed
Version v1.68.0
1 parent 3f76512 commit 49f6919

File tree

105 files changed

+13836
-5043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+13836
-5043
lines changed

MANUAL.html

Lines changed: 2779 additions & 1361 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANUAL.md

Lines changed: 2810 additions & 1120 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANUAL.txt

Lines changed: 2892 additions & 932 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/make_backend_docs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ def alter_doc(backend):
3232
"""Alter the documentation for backend"""
3333
rclone_bin_dir = Path(sys.path[0]).parent.absolute()
3434
doc_file = "docs/content/"+backend+".md"
35+
doc_file2 = "docs/content/"+backend+"/_index.md"
36+
if not os.path.exists(doc_file) and os.path.exists(doc_file2):
37+
doc_file = doc_file2
3538
if not os.path.exists(doc_file):
3639
raise ValueError("Didn't find doc file %s" % (doc_file,))
3740
new_file = doc_file+"~new~"

bin/make_manual.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"azurefiles.md",
6565
"onedrive.md",
6666
"opendrive.md",
67-
"oracleobjectstorage.md",
67+
"oracleobjectstorage/_index.md",
6868
"qingstor.md",
6969
"quatrix.md",
7070
"sia.md",
@@ -81,7 +81,6 @@
8181
"smb.md",
8282
"storj.md",
8383
"sugarsync.md",
84-
"tardigrade.md", # stub only to redirect to storj.md
8584
"ulozto.md",
8685
"uptobox.md",
8786
"union.md",
@@ -159,6 +158,7 @@ def read_doc(doc):
159158
def check_docs(docpath):
160159
"""Check all the docs are in docpath"""
161160
files = set(f for f in os.listdir(docpath) if f.endswith(".md"))
161+
files.update(f for f in docs if os.path.exists(os.path.join(docpath,f)))
162162
files -= set(ignore_docs)
163163
docs_set = set(docs)
164164
if files == docs_set:

docs/content/changelog.md

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,127 @@ description: "Rclone Changelog"
55

66
# Changelog
77

8+
## v1.68.0 - 2024-09-08
9+
10+
[See commits](https://github.com/rclone/rclone/compare/v1.67.0...v1.68.0)
11+
12+
* New backends
13+
* [Files.com](/filescom) (Sam Harrison)
14+
* [Gofile](/gofile/) (Nick Craig-Wood)
15+
* [Pixeldrain](/pixeldrain/) (Fornax)
16+
* Changed backends
17+
* [S3](/s3/) backend updated to use [AWS SDKv2](https://github.com/aws/aws-sdk-go-v2) as v1 is now unsupported.
18+
* The matrix of providers and auth methods is huge and there could be problems with obscure combinations.
19+
* Please report problems in a [new issue](https://github.com/rclone/rclone/issues/new/choose) on Github.
20+
* New commands
21+
* [config encryption](/commands/rclone_config_encryption/): set, remove and check to manage config file encryption (Nick Craig-Wood)
22+
* New Features
23+
* build
24+
* Update to go1.23 and make go1.21 the minimum required version (Nick Craig-Wood)
25+
* Update all dependencies (Nick Craig-Wood)
26+
* Disable wasm/js build due to [go bug #64856](https://github.com/golang/go/issues/64856) (Nick Craig-Wood)
27+
* Enable custom linting rules with ruleguard via gocritic (albertony)
28+
* Update logging statements to make `--use-json-log` work always (albertony)
29+
* Adding new code quality tests and fixing the fallout (albertony)
30+
* config
31+
* Internal config re-organised to be more consistent and make it available from the rc (Nick Craig-Wood)
32+
* Avoid remotes with empty names from the environment (albertony)
33+
* Make listing of remotes more consistent (albertony)
34+
* Make getting config values more consistent (albertony)
35+
* Use `--password-command` to set config file password if supplied (Nick Craig-Wood)
36+
* doc fixes (albertony, crystalstall, David Seifert, Eng Zer Jun, Ernie Hershey, Florian Klink, John Oxley, kapitainsky, Mathieu Moreau, Nick Craig-Wood, nipil, Pétr Bozsó, Russ Bubley, Sam Harrison, Thearas, URenko, Will Miles, yuval-cloudinary)
37+
* fs: Allow semicolons as well as spaces in `--bwlimit` timetable parsing (Kyle Reynolds)
38+
* help
39+
* Global flags help command now takes glob filter (albertony)
40+
* Make help command output less distracting (albertony)
41+
* lib/encoder: Add Raw encoding for use where no encoding at all is required, eg `--local-encoding Raw` (URenko)
42+
* listremotes: Added options for filtering, ordering and json output (albertony)
43+
* nfsmount
44+
* Make the `--sudo` flag work for umount as well as mount (Nick Craig-Wood)
45+
* Add `-o tcp` option to NFS mount options to fix mounting under Linux (Nick Craig-Wood)
46+
* operations: copy: generate stable partial suffix (Georg Welzel)
47+
* rc
48+
* Add [options/info](/rc/#options-info) call to enumerate options (Nick Craig-Wood)
49+
* Add option blocks parameter to [options/get](/rc/#options-get) and [options/info](/rc/#options-info) (Nick Craig-Wood)
50+
* Add [vfs/queue](/rc/#vfs-queue) to show the status of the upload queue (Nick Craig-Wood)
51+
* Add [vfs/queue-set-expiry](/rc/#vfs-queue-set-expiry) to adjust expiry of items in the VFS queue (Nick Craig-Wood)
52+
* Add `--unix-socket` option to `rc` command (Florian Klink)
53+
* Prevent unmount rc command from sending a `STOPPING=1` sd-notify message (AThePeanut4)
54+
* rcserver: Implement [prometheus metrics](/docs/#metrics) on a dedicated port (Oleg Kunitsyn)
55+
* serve dlna
56+
* Also look at "Subs" subdirectory (Florian Klink)
57+
* Don't swallow `video.{idx,sub}` (Florian Klink)
58+
* Set more correct mime type (Florian Klink)
59+
* serve nfs
60+
* Implement on disk cache for file handles selected with `--nfs-cache-type` (Nick Craig-Wood)
61+
* Add tracing to filesystem calls (Nick Craig-Wood)
62+
* Mask unimplemented error from chmod (Nick Craig-Wood)
63+
* Unify the nfs library logging with rclone's logging better (Nick Craig-Wood)
64+
* Fix incorrect user id and group id exported to NFS (Nick Craig-Wood)
65+
* serve s3
66+
* Implement `--auth-proxy` (Sawjan Gurung)
67+
* Update to AWS SDKv2 by updating `github.com/rclone/gofakes3` (Nick Craig-Wood)
68+
* Bug Fixes
69+
* bisync: Fix sync time problems with backends that round time (eg Dropbox) (nielash)
70+
* serve dlna: Fix panic: invalid argument to Int63n (Nick Craig-Wood)
71+
* VFS
72+
* Add [--vfs-read-chunk-streams](/commands/rclone_mount/#vfs-read-chunk-streams-0-1) to parallel read chunks from files (Nick Craig-Wood)
73+
* This can increase mount performance on high bandwidth or large latency links
74+
* Fix cache encoding with special characters (URenko)
75+
* Local
76+
* Fix encoding of root path fix (URenko)
77+
* Add server-side copy (using clone) with xattrs on macOS (nielash)
78+
* `--local-no-clone` flag to disable cloning for server-side copies (nielash)
79+
* Support setting custom `--metadata` during server-side Copy (nielash)
80+
* Azure Blob
81+
* Allow anonymous access for public resources (Nick Craig-Wood)
82+
* B2
83+
* Include custom upload headers in large file info (Pat Patterson)
84+
* Drive
85+
* Fix copying Google Docs to a backend which only supports SHA1 (Nick Craig-Wood)
86+
* Fichier
87+
* Fix detection of Flood Detected error (Nick Craig-Wood)
88+
* Fix server side move (Nick Craig-Wood)
89+
* HTTP
90+
* Reload client certificates on expiry (Saleh Dindar)
91+
* Support listening on passed FDs (Florian Klink)
92+
* Jottacloud
93+
* Fix setting of metadata on server side move (albertony)
94+
* Onedrive
95+
* Fix nil pointer error when uploading small files (Nick Craig-Wood)
96+
* Pcloud
97+
* Implement `SetModTime` (Georg Welzel)
98+
* Implement `OpenWriterAt` feature to enable multipart uploads (Georg Welzel)
99+
* Pikpak
100+
* Improve data consistency by ensuring async tasks complete (wiserain)
101+
* Implement custom hash to replace wrong sha1 (wiserain)
102+
* Fix error with `copyto` command (wiserain)
103+
* Optimize file move by removing unnecessary `readMetaData()` call (wiserain)
104+
* Non-buffered hash calculation for local source files (wiserain)
105+
* Optimize upload by pre-fetching gcid from API (wiserain)
106+
* Correct file transfer progress for uploads by hash (wiserain)
107+
* Update to using AWS SDK v2 (wiserain)
108+
* S3
109+
* Update to using AWS SDK v2 (Nick Craig-Wood)
110+
* Add `--s3-sdk-log-mode` to control SDKv2 debugging (Nick Craig-Wood)
111+
* Fix incorrect region for Magalu provider (Filipe Herculano)
112+
* Allow restoring from intelligent-tiering storage class (Pawel Palucha)
113+
* SFTP
114+
* Use `uint32` for mtime to save memory (Tomasz Melcer)
115+
* Ignore useless errors when closing the connection pool (Nick Craig-Wood)
116+
* Support listening on passed FDs (Florian Klink)
117+
* Swift
118+
* Add workarounds for bad listings in Ceph RGW (Paul Collins)
119+
* Add total/free space info in `about` command. (fsantagostinobietti)
120+
* Ulozto
121+
* Fix upload of > 2GB files on 32 bit platforms (Tobias Markus)
122+
* WebDAV
123+
* Add `--webdav-unix-socket-path` to connect to a unix socket (Florian Klink)
124+
* Yandex
125+
* Implement custom user agent to help with upload speeds (Sebastian Bünger)
126+
* Zoho
127+
* Fix inefficiencies uploading with new API to avoid throttling (Nick Craig-Wood)
128+
8129
## v1.67.0 - 2024-06-14
9130

10131
[See commits](https://github.com/rclone/rclone/compare/v1.66.0...v1.67.0)

0 commit comments

Comments
 (0)